summaryrefslogtreecommitdiff
path: root/Lib/pyclbr.py
Commit message (Expand)AuthorAgeFilesLines
* Removed unused imports.Serhiy Storchaka2016-04-251-2/+1
* Fix pyclbr to support importing packagesVictor Stinner2016-03-171-3/+5
* Issue 19944: Fix importlib.find_spec() so it imports parents as needed.Eric Snow2014-01-251-2/+2
* Remove more usage of APIs deprecated by PEP 451.Eric Snow2014-01-061-4/+5
* #14798: pyclbr now raises ImportError instead of KeyError for missing packagesPetri Lehtinen2012-05-181-9/+16
|\
| * Issue #13959: Introduce importlib.find_loader().Brett Cannon2012-05-121-9/+16
* | #14798: pyclbr now raises ImportError instead of KeyError for missing packagesPetri Lehtinen2012-05-181-0/+2
|/
* Issue 11020: command-line pyclbr broken due to missing 2-to-3 conversion.Raymond Hettinger2011-01-271-1/+1
* Merged revisions 62425-62429,62434-62436,62441,62444,62446-62448,62450-62455,...Christian Heimes2008-05-041-35/+37
* Convert some custom sort comparison functions to equivalent key functions.Raymond Hettinger2008-01-301-2/+1
* PEP 3114: rename .next() to .__next__() and add next() builtin.Georg Brandl2007-04-211-8/+8
* - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone;Guido van Rossum2007-02-111-1/+1
* Fix most trivially-findable print statements.Guido van Rossum2007-02-091-3/+3
* Four months of trunk changes (including a few releases...)Thomas Wouters2006-12-131-1/+1
* Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svnThomas Wouters2006-06-081-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