| Commit message (Expand) | Author | Age | Files | Lines |
* | Fix typos in docs and docstrings (GH-13745) | Xtreak | 2019-06-02 | 1 | -1/+1 |
|
|
* | bpo-36298: Raise ModuleNotFoundError in pyclbr when a module can't be found (... | Brett Cannon | 2019-03-22 | 1 | -2/+5 |
|
|
* | bpo-6691: Pyclbr now reports nested classes and functions. (#2503) | csabella | 2017-07-04 | 1 | -131/+180 |
|
|
* | Removed unused imports. | Serhiy Storchaka | 2016-04-24 | 1 | -2/+1 |
|
|
* | Fix pyclbr to support importing packages | Victor Stinner | 2016-03-17 | 1 | -3/+5 |
|
|
* | Issue 19944: Fix importlib.find_spec() so it imports parents as needed. | Eric Snow | 2014-01-25 | 1 | -2/+2 |
|
|
* | Remove more usage of APIs deprecated by PEP 451. | Eric Snow | 2014-01-07 | 1 | -4/+5 |
|
|
* | #14798: pyclbr now raises ImportError instead of KeyError for missing packages | Petri Lehtinen | 2012-05-18 | 1 | -0/+2 |
|\ |
|
| * | #14798: pyclbr now raises ImportError instead of KeyError for missing packages | Petri Lehtinen | 2012-05-18 | 1 | -0/+2 |
|
|
* | | Issue #13959: Introduce importlib.find_loader(). | Brett Cannon | 2012-05-12 | 1 | -9/+16 |
|/ |
|
* | Issue #11020: Command-line pyclbr was broken because of missing 2-to-3 | Raymond Hettinger | 2011-01-27 | 1 | -1/+1 |
|
|
* | Merged revisions 62425-62429,62434-62436,62441,62444,62446-62448,62450-62455,... | Christian Heimes | 2008-05-04 | 1 | -35/+37 |
|
|
* | Convert some custom sort comparison functions to equivalent key functions. | Raymond Hettinger | 2008-01-30 | 1 | -2/+1 |
|
|
* | PEP 3114: rename .next() to .__next__() and add next() builtin. | Georg Brandl | 2007-04-21 | 1 | -8/+8 |
|
|
* | - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone; | Guido van Rossum | 2007-02-11 | 1 | -1/+1 |
|
|
* | Fix most trivially-findable print statements. | Guido van Rossum | 2007-02-09 | 1 | -3/+3 |
|
|
* | Four months of trunk changes (including a few releases...) | Thomas Wouters | 2006-12-13 | 1 | -1/+1 |
|
|
* | Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svn | Thomas Wouters | 2006-06-08 | 1 | -2/+4 |
|
|
* | PEP-0318, @decorator-style. In Guido's words: | Anthony Baxter | 2004-08-02 | 1 | -1/+1 |
|
|
* | Guido grants a Christmas wish: | Raymond Hettinger | 2003-12-17 | 1 | -1/+1 |
|
|
* | Apply extract functions instead of lambda. | Raymond Hettinger | 2003-12-01 | 1 | -2/+2 |
|
|
* | Another big update, fixing all known bugs related to nesting functions | Guido van Rossum | 2002-12-03 | 1 | -50/+80 |
|
|
* | Moderately heavy reorganization of pyclbr to fix package-related bugs. | Guido van Rossum | 2002-12-02 | 1 | -53/+65 |
|
|
* | When recursively attempting to find the modules imported by an | Guido van Rossum | 2002-09-16 | 1 | -2/+10 |
|
|
* | Rewritten using the tokenize module, which gives us a real tokenizer | Guido van Rossum | 2002-08-23 | 1 | -188/+144 |
|
|
* | Remove uses of the string and types modules: | Walter Dörwald | 2002-06-03 | 1 | -9/+4 |
|
|
* | Replaced .keys() with dictionary iterators | Raymond Hettinger | 2002-06-02 | 1 | -1/+1 |
|
|
* | SF 563203. Replaced 'has_key()' with 'in'. | Raymond Hettinger | 2002-06-01 | 1 | -6/+6 |
|
|
* | SF bug #473525 pyclbr broken | Tim Peters | 2001-10-24 | 1 | -5/+6 |
|
|
* | Nick Mathewson: Make sure the recursion is handled properly. | Fred Drake | 2001-08-13 | 1 | -4/+4 |
|
|
* | Remove unused variable 'imports' from readmodule_ex(). | Guido van Rossum | 2001-08-13 | 1 | -1/+0 |
|
|
* | Patch #444359: Remove unused imports. | Martin v. Löwis | 2001-08-02 | 1 | -1/+0 |
|
|
* | __all__ for several more modules | Skip Montanaro | 2001-02-12 | 1 | -0/+2 |
|
|
* | Whitespace normalization. | Tim Peters | 2001-02-09 | 1 | -1/+0 |
|
|
* | String method conversion. | Eric S. Raymond | 2001-02-09 | 1 | -11/+12 |
|
|
* | Whitespace normalization. | Tim Peters | 2001-01-15 | 1 | -244/+244 |
|
|
* | Actually, the previous batch's comment should have been different; | Guido van Rossum | 2000-02-04 | 1 | -2/+2 |
|
|
* | Suppress warning print statements about modules not found, they are | Guido van Rossum | 1999-06-16 | 1 | -2/+3 |
|
|
* | Added a few more bugs to the doc string; reformatted existing bugs. | Guido van Rossum | 1999-06-10 | 1 | -8/+23 |
|
|
* | Co-production with Tim Peters, implementing a suggestion by Mark | Guido van Rossum | 1999-06-10 | 1 | -6/+31 |
|
|
* | Fix by Sjoerd for a package related bug: If you have a non-empy | Guido van Rossum | 1999-06-09 | 1 | -6/+6 |
|
|
* | Tim Peters: Taught it more "real Python" rules without slowing it | Guido van Rossum | 1999-06-08 | 1 | -47/+53 |
|
|
* | Experimental speedup patch by Tim Peters (please test!): | Guido van Rossum | 1999-06-07 | 1 | -82/+149 |
|
|
* | Bow to font-lock at the end of the docstring, since it throws stuff | Fred Drake | 1999-02-18 | 1 | -2/+2 |
|
|
* | Ever-so-slight improvementL the patterns to recognize import | Guido van Rossum | 1998-10-13 | 1 | -2/+2 |
|
|
* | Enhancements by Sjoerd Mullender: support for | Guido van Rossum | 1998-10-12 | 1 | -7/+7 |
|
|
* | Add support for dotted module names to readmodule(). | Guido van Rossum | 1998-10-12 | 1 | -18/+26 |
|
|
* | re -> regex conversions by Sjoerd. | Guido van Rossum | 1997-10-24 | 1 | -23/+29 |
|
|
* | Don't add names that start with _ | Guido van Rossum | 1996-10-10 | 1 | -1/+4 |
|
|
* | Also remember the module a class is defined in. | Sjoerd Mullender | 1995-11-02 | 1 | -2/+3 |
|
|