summaryrefslogtreecommitdiff
path: root/Lib/inspect.py
Commit message (Expand)AuthorAgeFilesLines
* [2.7] bpo-6700: Fix inspect.getsourcelines for module level frames/tracebacks...Tal Einat2018-08-261-2/+9
* Issue #29354: Fixed inspect.getargs() for parameters which are cellSerhiy Storchaka2017-02-011-2/+5
* Issue #27993: Fix problems with the plural “objects” in docs and commentsMartin Panter2016-09-081-3/+2
* Issue #21853: Fixed the inspect module in unicode disabled build.Serhiy Storchaka2015-05-311-2/+7
* Issue #18830: inspect.getclasstree() no more produces duplicated entries evenSerhiy Storchaka2013-09-051-1/+2
* #18705: fix a number of typos. Patch by Févry Thibault.Ezio Melotti2013-08-171-1/+1
* #17526: fix an IndexError raised while passing code without filename to inspe...Ezio Melotti2013-03-301-1/+1
* Revert part of 13f56cd8dec1 (issue #1785) to avoid breaking getmembers() with...Antoine Pitrou2012-01-181-15/+4
* Issue #1785: Fix inspect and pydoc with misbehaving descriptors.Antoine Pitrou2011-12-211-27/+36
* allow "fake" filenames in findsource (closes #9284)Benjamin Peterson2011-06-111-2/+6
* Correct handling of functions with only kwarg args in getcallargs (closes #11...Benjamin Peterson2011-03-281-2/+8
* Merged revisions 84106 via svnmerge fromAlexander Belopolsky2010-08-161-1/+1
* #8720: fix inspect regression by teaching getsourcefile about linecache.R. David Murray2010-06-171-1/+6
* add inspect.getcallargs, which binds function arguments like a normal call #3135Benjamin Peterson2010-03-301-1/+84
* make inspect.isabstract() always return a boolean; add a test for it, too #7069Benjamin Peterson2009-10-151-1/+1
* Use str.format() to fix beginner's mistake with %-style string formatting.Georg Brandl2009-09-181-7/+7
* #6905: use better exception messages in inspect when the argument is of the w...Georg Brandl2009-09-181-7/+7
* Issue #6619: Remove duplicate 'isgenerator' function from inspect module.Mark Dickinson2009-08-021-4/+0
* Issue 6581. Michael FoordMichael Foord2009-07-261-1/+4
* Issue #4050: inspect.findsource/getsource now raise an IOError if the 'source'R. David Murray2009-05-131-1/+3
* fix inspect.isclass() on instances with a custom __getattr__ #1225107Benjamin Peterson2009-01-171-1/+1
* use enumerateBenjamin Peterson2009-01-171-2/+2
* #1162154: inspect.getmembers() now skips attributes that raise AttributeError,Amaury Forgeot d'Arc2009-01-131-1/+4
* simplfy codeBenjamin Peterson2009-01-011-4/+2
* #4795 inspect.isgeneratorfunction() should return False instead of NoneBenjamin Peterson2008-12-311-0/+1
* return ArgInfo from inspect.getargvalues #4092Benjamin Peterson2008-10-211-1/+1
* Remove an unneeded import of abc.ABCMeta from 'inspect'.Brett Cannon2008-08-181-1/+0
* 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