summaryrefslogtreecommitdiffstats
path: root/Lib/inspect.py
Commit message (Expand)AuthorAgeFilesLines
* Silence (Syntax|Deprecation)Warning for 'inspect'. Had to remove tupleBrett Cannon2008-08-011-5/+9
* Factor out docstring dedenting from inspect.getdoc() into inspect.cleandoc()Georg Brandl2008-06-071-0/+7
* Prevent an error when inspect.isabstract() is called with something else than...Amaury Forgeot d'Arc2008-04-081-1/+1
* Since abc._Abstract was replaces by a new type flags the regression test suit...Christian Heimes2008-03-031-0/+8
* Issue #1916. Added isgenerator() and isgeneratorfunction() toFacundo Batista2008-02-181-6/+45
* Let most inspect functions return named tuplesRaymond Hettinger2008-01-111-5/+19
* Patch #1739696: use code.co_code only if really necessaryGeorg Brandl2007-07-121-4/+3
* Bug #1550524: better heuristics to find correct class definitionGeorg Brandl2006-10-121-2/+17
* Fix the speed regression in inspect.py by adding another cache to speed up ge...Nick Coghlan2006-09-071-2/+17
* Whitespace normalization.Tim Peters2006-07-271-1/+1
* Patch #1520294: Support for getset and member descriptors in types.py,Barry Warsaw2006-07-271-0/+34
* Fix SF#1516184 (again) and add a test to prevent regression.Phillip J. Eby2006-07-201-2/+3
* Fix SF#1516184 and add a test to prevent regression.Phillip J. Eby2006-07-101-12/+9
* Fix another problem in inspect: if the module for an object cannot be found, ...Georg Brandl2006-04-301-1/+5
* Fix infinite regress when inspecting <string> or <stdin> frames.Phillip J. Eby2006-04-301-1/+7
* Add whitespace after commaNeal Norwitz2006-04-111-1/+1
* Updated the warnings, linecache, inspect, traceback, site, and doctest modulesPhillip J. Eby2006-04-111-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
* Add encoding declaration.Martin v. Löwis2002-08-041-0/+1
* Replaced .keys() with dictionary iteratorsRaymond Hettinger2002-06-021-1/+1
* SF 563203. Replaced 'has_key()' with 'in'.Raymond Hettinger2002-06-011-4/+4
* Replaced boolean test with is NoneRaymond Hettinger2002-06-011-2/+2
* Use types.StringTypes instead of explicit (str, unicode) listMichael W. Hudson2002-05-201-1/+1
* Clean up uses of some deprecated features.Fred Drake2002-04-261-2/+2
* Fix getcomments() so that it doesn't fail with TypeErrors.Jeremy Hylton2002-03-281-3/+8