summaryrefslogtreecommitdiff
path: root/Lib/inspect.py
Commit message (Expand)AuthorAgeFilesLines
* - Issue #719888: Updated tokenize to use a bytes API. generate_tokens has beenTrent Nelson2008-03-181-1/+3
* Merged revisions 61203-61204 via svnmerge fromChristian Heimes2008-03-031-0/+8
* Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,...Christian Heimes2008-02-191-6/+46
* Merged revisions 59883-59920 via svnmerge fromChristian Heimes2008-01-111-6/+24
* Removed PyInt_GetMax and sys.maxintChristian Heimes2007-12-041-2/+2
* #1535: rename __builtin__ module to builtins.Georg Brandl2007-12-021-2/+2
* Removed the API to create unbound methods and simplified the API for bound me...Christian Heimes2007-11-271-7/+6
* Patch from Georg Brandl and me for #1493Christian Heimes2007-11-251-2/+2
* Patch# 1258 by Christian Heimes: kill basestring.Guido van Rossum2007-10-161-1/+1
* Fix docstring for getfullargspec().Brett Cannon2007-09-071-2/+2
* Raise statement normalization in Lib/.Collin Winter2007-08-301-2/+2
* Merged revisions 56301-56442 via svnmerge fromGuido van Rossum2007-07-181-1/+0
* Merged revisions 55795-55816 via svnmerge fromGuido van Rossum2007-06-071-1/+1
* Make test_inspect pass once again.Guido van Rossum2007-05-211-1/+1
* Merged revisions 55328-55341 via svnmerge fromGuido van Rossum2007-05-151-38/+4
* Merged revisions 55270-55324 via svnmerge fromGuido van Rossum2007-05-141-12/+11
* PEP 3114: rename .next() to .__next__() and add next() builtin.Georg Brandl2007-04-211-1/+1
* Remove functions in string module that are also string methods. Also remove:Neal Norwitz2007-04-171-22/+22
* Final part of SF# 1607548 by Tony Lownds: fix pydoc and inspect.Guido van Rossum2007-02-281-16/+94
* Change all the function attributes from func_* -> __*__. This gets ridNeal Norwitz2007-02-251-10/+10
* Four months of trunk changes (including a few releases...)Thomas Wouters2006-12-131-4/+34
* Merged revisions 46753-51188 via svnmerge fromThomas Wouters2006-08-111-13/+45
* Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk.Thomas Wouters2006-05-271-2/+12
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-3/+3
* some more fixes and tests for inspect.getsource(), triggered by crashesArmin Rigo2005-09-251-27/+20
* Patch #1159931/bug #1143895: inspect.getsource failed when functions,Johannes Gijsbers2005-03-121-5/+5
* Apply itemgetter() instead of lambda.Raymond Hettinger2005-03-111-1/+2
* Replace list of constants with tuples of constants.Raymond Hettinger2005-02-061-5/+5
* Patch #1011890: fix inspect.getsource breaking with line-continuation &Johannes Gijsbers2004-12-121-4/+15
* Import no longer needed.Raymond Hettinger2004-09-201-1/+0
* Raymond reminded me to use DSU keySkip Montanaro2004-09-201-2/+1
* Sort classes by fully qualified name. In the common case where you areSkip Montanaro2004-09-201-1/+2
* Use __module__ attribute when available instead of using isclass() predicateJohannes Gijsbers2004-09-111-1/+1
* Patch #1006219: let inspect.getsource show '@' decorators and add tests forJohannes Gijsbers2004-08-181-2/+3
* - Bug #891637, patch #1005466: fix inspect.getargs() crash on def foo((bar)).Matthias Klose2004-08-151-7/+15
* 'inspect' was not listing the functions in a module properly if the module wasBrett Cannon2004-08-131-1/+3
* SF bug #973092: inspect.getframeinfo bug if 'context' is to bigRaymond Hettinger2004-06-151-1/+1
* [Bug #954364] inspect.getframeinfo() sometimes produces incorrect traceback l...Andrew M. Kuchling2004-06-051-1/+3
* Apply extract functions instead of lambda.Raymond Hettinger2003-12-011-1/+2
* Let library modules use the new keyword arguments for list.sort().Raymond Hettinger2003-10-161-1/+1
* Whitespace normalization.Tim Peters2003-06-291-1/+1
* A bit o' reformatting and removal of non-_getframe currentframe().Jeremy Hylton2003-06-271-19/+14
* Fix for SF bug 620190: getargspec() doesn't work with methods.Jeremy Hylton2003-06-271-3/+10
* Return None to signal that the module the object was defined in was not found...Brett Cannon2003-06-151-0/+2
* Patch #711902: Cause pydoc to show data descriptor __doc__ strings.Martin v. Löwis2003-05-031-0/+10
* Make module lookup a little more robust (certain kinds of fiddling toKa-Ping Yee2003-03-281-2/+2
* SF patch #634557: inspect.BlockFinder didn't do a good enough job findingRaymond Hettinger2003-01-191-0/+2
* SF bug #661184: inspect.getsource bugRaymond Hettinger2003-01-141-1/+3
* getdoc():Ka-Ping Yee2002-11-301-6/+14
* This is my patchMichael W. Hudson2002-08-151-13/+3