summaryrefslogtreecommitdiffstats
path: root/Tools/idle/ClassBrowser.py
Commit message (Collapse)AuthorAgeFilesLines
* Get rid of old IDLE. Lib/idlelib rules!Guido van Rossum2003-06-141-217/+0
|
* Kurt pointed out another method affected by the changes to pyclbr.py.Raymond Hettinger2003-01-221-2/+4
|
* SF bug #668906: class browser raises AttributeErrorRaymond Hettinger2003-01-181-1/+1
| | | | | | | | The Py2.3 updates to the pyclbr module return both Class and Function objects. The IDLE ClassBrowser module only knew about Class and could not handle objects which did not define "super". Fixed by adding a guard.
* Get rid of 1.5.2 compatibility hack. :-)Guido van Rossum2002-12-031-8/+0
|
* Apply diff2.txt from SF patch http://www.python.org/sf/572113Walter Dörwald2002-09-111-2/+1
| | | | | | | | (with one small bugfix in bgen/bgen/scantools.py) This replaces string module functions with string methods for the stuff in the Tools directory. Several uses of string.letters etc. are still remaining.
* Whitespace normalization.Tim Peters2001-01-171-1/+1
|
* Add an XXX comment about the ClassBrowser AIP.Guido van Rossum2000-02-151-0/+2
|
* Destroy the tree when closing.Guido van Rossum1999-06-251-1/+2
|
* Adapt to the new pyclbr's support of listing top-level functions. IfGuido van Rossum1999-06-101-33/+34
| | | | | | | | this functionality is not present (e.g. when used with a vintage Python 1.5.2 installation) top-level functions are not listed. (Hmm... Any distribution of IDLE 0.5 should probably include a copy of the new pyclbr.py!)
* Rewritten based on TreeWidget.pyGuido van Rossum1999-06-011-133/+185
|
* # TODO entries changedGuido van Rossum1999-04-081-1/+1
|
* Use a HSeparator between the classes and the items.Guido van Rossum1999-01-111-13/+18
| | | | | Make the list of classes wider by default (40 chars). Bind ESC to close-window.
* Checking in IDLE 0.2.Guido van Rossum1999-01-021-18/+20
| | | | | | | | | | | | Much has changed -- too much, in fact, to write down. The big news is that there's a standard way to write IDLE extensions; see extend.txt. Some sample extensions have been provided, and some existing code has been converted to extensions. Probably the biggest new user feature is a new search dialog with more options, search and replace, and even search in files (grep). This is exactly as downloaded from my laptop after returning from the holidays -- it hasn't even been tested on Unix yet.
* Fix the class browser to work even when the file is not on sys.path.Guido van Rossum1998-12-181-2/+2
|
* Generalized the scrolled list which is the base for the class andGuido van Rossum1998-10-151-128/+77
| | | | method browser into a separate class in its own module.
* Much improved, much left to do.Guido van Rossum1998-10-131-11/+153
|
* Adding the beginnings of a Class browser. Incomplete, yet.Guido van Rossum1998-10-131-0/+70