summaryrefslogtreecommitdiffstats
path: root/Lib/pyclbr.py
Commit message (Collapse)AuthorAgeFilesLines
* Ever-so-slight improvementL the patterns to recognize importGuido van Rossum1998-10-131-2/+2
| | | | statements now also stop at ';' (formerly they only stopped at '#').
* Enhancements by Sjoerd Mullender: support forGuido van Rossum1998-10-121-7/+7
| | | | | from a.b import c import a . b
* Add support for dotted module names to readmodule().Guido van Rossum1998-10-121-18/+26
|
* re -> regex conversions by Sjoerd.Guido van Rossum1997-10-241-23/+29
|
* Don't add names that start with _Guido van Rossum1996-10-101-1/+4
|
* Also remember the module a class is defined in.Sjoerd Mullender1995-11-021-2/+3
|
* Module with one function to read Python modules and extract class andSjoerd Mullender1995-07-281-0/+204
method definitions. See __doc__ string for more information.