Module tkconsole
source code
A Tkinter - based console for conversing with the Python interpreter,
featuring more tolerant pasting of code from other interactive sessions,
better handling of continuations than the standard Python interpreter,
highlighting of the most recently - executed code block, the ability to
edit and reexecute previously entered code, a history of recently -
entered lines, automatic multi - level completion with pop - up menus,
and pop - up help.
Ka - Ping Yee < ping@lfw.org>, 18 April 1999. This software is
in the public domain and is provided without express or implied warranty.
Permission to use, modify, or distribute the software for any purpose is
hereby granted.
|
REVISION = ' $Revision: 163 $ '
|
|
VERSION = ' 163 '
|
|
callabletypes = [ <type 'function'>, <type 'instancemethod'>, <...
|
|
sequencetypes = [ <type 'tuple'>, <type 'list'>]
|
|
mappingtypes = [ <type 'dict'>]
|
|
c = curve.Curve()
|
callabletypes
- Value:
[ <type 'function'>,
<type 'instancemethod'>,
<type 'classobj'>,
<type 'builtin_function_or_method'>,
<type 'builtin_function_or_method'>]
|
|