summaryrefslogtreecommitdiff
path: root/Lib/pyclbr.py
Commit message (Expand)AuthorAgeFilesLines
* #14798: pyclbr now raises ImportError instead of KeyError for missing packagesPetri Lehtinen2012-05-181-0/+2
* Minor cleanups:Skip Montanaro2008-04-281-35/+37
* Bug #1560617: in pyclbr, return full module name not only for classes,Georg Brandl2006-09-301-1/+1
* Fix #1494787 (pyclbr counts whitespace as superclass name)Georg Brandl2006-05-291-2/+4
* PEP-0318, @decorator-style. In Guido's words:Anthony Baxter2004-08-021-1/+1
* Guido grants a Christmas wish:Raymond Hettinger2003-12-171-1/+1
* Apply extract functions instead of lambda.Raymond Hettinger2003-12-011-2/+2
* Another big update, fixing all known bugs related to nesting functionsGuido van Rossum2002-12-031-50/+80
* Moderately heavy reorganization of pyclbr to fix package-related bugs.Guido van Rossum2002-12-021-53/+65
* When recursively attempting to find the modules imported by anGuido van Rossum2002-09-161-2/+10
* Rewritten using the tokenize module, which gives us a real tokenizerGuido van Rossum2002-08-231-188/+144
* Remove uses of the string and types modules:Walter Dörwald2002-06-031-9/+4
* Replaced .keys() with dictionary iteratorsRaymond Hettinger2002-06-021-1/+1
* SF 563203. Replaced 'has_key()' with 'in'.Raymond Hettinger2002-06-011-6/+6
* SF bug #473525 pyclbr brokenTim Peters2001-10-241-5/+6
* Nick Mathewson: Make sure the recursion is handled properly.Fred Drake2001-08-131-4/+4
* Remove unused variable 'imports' from readmodule_ex().Guido van Rossum2001-08-131-1/+0
* Patch #444359: Remove unused imports.Martin v. Löwis2001-08-021-1/+0
* __all__ for several more modulesSkip Montanaro2001-02-121-0/+2
* Whitespace normalization.Tim Peters2001-02-091-1/+0
* String method conversion.Eric S. Raymond2001-02-091-11/+12
* Whitespace normalization.Tim Peters2001-01-151-244/+244
* Actually, the previous batch's comment should have been different;Guido van Rossum2000-02-041-2/+2
* Suppress warning print statements about modules not found, they areGuido van Rossum1999-06-161-2/+3
* Added a few more bugs to the doc string; reformatted existing bugs.Guido van Rossum1999-06-101-8/+23
* Co-production with Tim Peters, implementing a suggestion by MarkGuido van Rossum1999-06-101-6/+31
* Fix by Sjoerd for a package related bug: If you have a non-empyGuido van Rossum1999-06-091-6/+6
* Tim Peters: Taught it more "real Python" rules without slowing itGuido van Rossum1999-06-081-47/+53
* Experimental speedup patch by Tim Peters (please test!):Guido van Rossum1999-06-071-82/+149
* Bow to font-lock at the end of the docstring, since it throws stuffFred Drake1999-02-181-2/+2
* Ever-so-slight improvementL the patterns to recognize importGuido van Rossum1998-10-131-2/+2
* Enhancements by Sjoerd Mullender: support forGuido van Rossum1998-10-121-7/+7
* 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