| Commit message (Expand) | Author | Age | Files | Lines |
* | Merged revisions 62194,62197-62198,62204-62205,62214,62219-62221,62227,62229-... | Christian Heimes | 2008-04-09 | 1 | -1/+1 |
|
|
* | - Issue #719888: Updated tokenize to use a bytes API. generate_tokens has been | Trent Nelson | 2008-03-18 | 1 | -1/+3 |
|
|
* | Merged revisions 61203-61204 via svnmerge from | Christian Heimes | 2008-03-03 | 1 | -0/+8 |
|
|
* | Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,... | Christian Heimes | 2008-02-19 | 1 | -6/+46 |
|
|
* | Merged revisions 59883-59920 via svnmerge from | Christian Heimes | 2008-01-11 | 1 | -6/+24 |
|
|
* | Removed PyInt_GetMax and sys.maxint | Christian Heimes | 2007-12-04 | 1 | -2/+2 |
|
|
* | #1535: rename __builtin__ module to builtins. | Georg Brandl | 2007-12-02 | 1 | -2/+2 |
|
|
* | Removed the API to create unbound methods and simplified the API for bound me... | Christian Heimes | 2007-11-27 | 1 | -7/+6 |
|
|
* | Patch from Georg Brandl and me for #1493 | Christian Heimes | 2007-11-25 | 1 | -2/+2 |
|
|
* | Patch# 1258 by Christian Heimes: kill basestring. | Guido van Rossum | 2007-10-16 | 1 | -1/+1 |
|
|
* | Fix docstring for getfullargspec(). | Brett Cannon | 2007-09-07 | 1 | -2/+2 |
|
|
* | Raise statement normalization in Lib/. | Collin Winter | 2007-08-30 | 1 | -2/+2 |
|
|
* | Merged revisions 56301-56442 via svnmerge from | Guido van Rossum | 2007-07-18 | 1 | -1/+0 |
|
|
* | Merged revisions 55795-55816 via svnmerge from | Guido van Rossum | 2007-06-07 | 1 | -1/+1 |
|
|
* | Make test_inspect pass once again. | Guido van Rossum | 2007-05-21 | 1 | -1/+1 |
|
|
* | Merged revisions 55328-55341 via svnmerge from | Guido van Rossum | 2007-05-15 | 1 | -38/+4 |
|
|
* | Merged revisions 55270-55324 via svnmerge from | Guido van Rossum | 2007-05-14 | 1 | -12/+11 |
|
|
* | PEP 3114: rename .next() to .__next__() and add next() builtin. | Georg Brandl | 2007-04-21 | 1 | -1/+1 |
|
|
* | Remove functions in string module that are also string methods. Also remove: | Neal Norwitz | 2007-04-17 | 1 | -22/+22 |
|
|
* | Final part of SF# 1607548 by Tony Lownds: fix pydoc and inspect. | Guido van Rossum | 2007-02-28 | 1 | -16/+94 |
|
|
* | Change all the function attributes from func_* -> __*__. This gets rid | Neal Norwitz | 2007-02-25 | 1 | -10/+10 |
|
|
* | Four months of trunk changes (including a few releases...) | Thomas Wouters | 2006-12-13 | 1 | -4/+34 |
|
|
* | Merged revisions 46753-51188 via svnmerge from | Thomas Wouters | 2006-08-11 | 1 | -13/+45 |
|
|
* | Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. | Thomas Wouters | 2006-05-27 | 1 | -2/+12 |
|
|
* | Merge p3yk branch with the trunk up to revision 45595. This breaks a fair | Thomas Wouters | 2006-04-21 | 1 | -3/+3 |
|
|
* | some more fixes and tests for inspect.getsource(), triggered by crashes | Armin Rigo | 2005-09-25 | 1 | -27/+20 |
|
|
* | Patch #1159931/bug #1143895: inspect.getsource failed when functions, | Johannes Gijsbers | 2005-03-12 | 1 | -5/+5 |
|
|
* | Apply itemgetter() instead of lambda. | Raymond Hettinger | 2005-03-11 | 1 | -1/+2 |
|
|
* | Replace list of constants with tuples of constants. | Raymond Hettinger | 2005-02-06 | 1 | -5/+5 |
|
|
* | Patch #1011890: fix inspect.getsource breaking with line-continuation & | Johannes Gijsbers | 2004-12-12 | 1 | -4/+15 |
|
|
* | Import no longer needed. | Raymond Hettinger | 2004-09-20 | 1 | -1/+0 |
|
|
* | Raymond reminded me to use DSU key | Skip Montanaro | 2004-09-20 | 1 | -2/+1 |
|
|
* | Sort classes by fully qualified name. In the common case where you are | Skip Montanaro | 2004-09-20 | 1 | -1/+2 |
|
|
* | Use __module__ attribute when available instead of using isclass() predicate | Johannes Gijsbers | 2004-09-11 | 1 | -1/+1 |
|
|
* | Patch #1006219: let inspect.getsource show '@' decorators and add tests for | Johannes Gijsbers | 2004-08-18 | 1 | -2/+3 |
|
|
* | - Bug #891637, patch #1005466: fix inspect.getargs() crash on def foo((bar)). | Matthias Klose | 2004-08-15 | 1 | -7/+15 |
|
|
* | 'inspect' was not listing the functions in a module properly if the module was | Brett Cannon | 2004-08-13 | 1 | -1/+3 |
|
|
* | SF bug #973092: inspect.getframeinfo bug if 'context' is to big | Raymond Hettinger | 2004-06-15 | 1 | -1/+1 |
|
|
* | [Bug #954364] inspect.getframeinfo() sometimes produces incorrect traceback l... | Andrew M. Kuchling | 2004-06-05 | 1 | -1/+3 |
|
|
* | Apply extract functions instead of lambda. | Raymond Hettinger | 2003-12-01 | 1 | -1/+2 |
|
|
* | Let library modules use the new keyword arguments for list.sort(). | Raymond Hettinger | 2003-10-16 | 1 | -1/+1 |
|
|
* | Whitespace normalization. | Tim Peters | 2003-06-29 | 1 | -1/+1 |
|
|
* | A bit o' reformatting and removal of non-_getframe currentframe(). | Jeremy Hylton | 2003-06-27 | 1 | -19/+14 |
|
|
* | Fix for SF bug 620190: getargspec() doesn't work with methods. | Jeremy Hylton | 2003-06-27 | 1 | -3/+10 |
|
|
* | Return None to signal that the module the object was defined in was not found... | Brett Cannon | 2003-06-15 | 1 | -0/+2 |
|
|
* | Patch #711902: Cause pydoc to show data descriptor __doc__ strings. | Martin v. Löwis | 2003-05-03 | 1 | -0/+10 |
|
|
* | Make module lookup a little more robust (certain kinds of fiddling to | Ka-Ping Yee | 2003-03-28 | 1 | -2/+2 |
|
|
* | SF patch #634557: inspect.BlockFinder didn't do a good enough job finding | Raymond Hettinger | 2003-01-19 | 1 | -0/+2 |
|
|
* | SF bug #661184: inspect.getsource bug | Raymond Hettinger | 2003-01-14 | 1 | -1/+3 |
|
|
* | getdoc(): | Ka-Ping Yee | 2002-11-30 | 1 | -6/+14 |
|
|