| Commit message (Expand) | Author | Age | Files | Lines |
* | Issue #18830: inspect.getclasstree() no more produces duplicated entries even | Serhiy Storchaka | 2013-09-05 | 1 | -1/+2 |
|
|
* | #18705: fix a number of typos. Patch by FĂ©vry Thibault. | Ezio Melotti | 2013-08-17 | 1 | -1/+1 |
|
|
* | #17526: fix an IndexError raised while passing code without filename to inspe... | Ezio Melotti | 2013-03-30 | 1 | -1/+1 |
|
|
* | Revert part of 13f56cd8dec1 (issue #1785) to avoid breaking getmembers() with... | Antoine Pitrou | 2012-01-18 | 1 | -15/+4 |
|
|
* | Issue #1785: Fix inspect and pydoc with misbehaving descriptors. | Antoine Pitrou | 2011-12-21 | 1 | -27/+36 |
|
|
* | allow "fake" filenames in findsource (closes #9284) | Benjamin Peterson | 2011-06-11 | 1 | -2/+6 |
|
|
* | Correct handling of functions with only kwarg args in getcallargs (closes #11... | Benjamin Peterson | 2011-03-28 | 1 | -2/+8 |
|
|
* | Merged revisions 84106 via svnmerge from | Alexander Belopolsky | 2010-08-16 | 1 | -1/+1 |
|
|
* | #8720: fix inspect regression by teaching getsourcefile about linecache. | R. David Murray | 2010-06-17 | 1 | -1/+6 |
|
|
* | add inspect.getcallargs, which binds function arguments like a normal call #3135 | Benjamin Peterson | 2010-03-30 | 1 | -1/+84 |
|
|
* | make inspect.isabstract() always return a boolean; add a test for it, too #7069 | Benjamin Peterson | 2009-10-15 | 1 | -1/+1 |
|
|
* | Use str.format() to fix beginner's mistake with %-style string formatting. | Georg Brandl | 2009-09-18 | 1 | -7/+7 |
|
|
* | #6905: use better exception messages in inspect when the argument is of the w... | Georg Brandl | 2009-09-18 | 1 | -7/+7 |
|
|
* | Issue #6619: Remove duplicate 'isgenerator' function from inspect module. | Mark Dickinson | 2009-08-02 | 1 | -4/+0 |
|
|
* | Issue 6581. Michael Foord | Michael Foord | 2009-07-26 | 1 | -1/+4 |
|
|
* | Issue #4050: inspect.findsource/getsource now raise an IOError if the 'source' | R. David Murray | 2009-05-13 | 1 | -1/+3 |
|
|
* | fix inspect.isclass() on instances with a custom __getattr__ #1225107 | Benjamin Peterson | 2009-01-17 | 1 | -1/+1 |
|
|
* | use enumerate | Benjamin Peterson | 2009-01-17 | 1 | -2/+2 |
|
|
* | #1162154: inspect.getmembers() now skips attributes that raise AttributeError, | Amaury Forgeot d'Arc | 2009-01-13 | 1 | -1/+4 |
|
|
* | simplfy code | Benjamin Peterson | 2009-01-01 | 1 | -4/+2 |
|
|
* | #4795 inspect.isgeneratorfunction() should return False instead of None | Benjamin Peterson | 2008-12-31 | 1 | -0/+1 |
|
|
* | return ArgInfo from inspect.getargvalues #4092 | Benjamin Peterson | 2008-10-21 | 1 | -1/+1 |
|
|
* | Remove an unneeded import of abc.ABCMeta from 'inspect'. | Brett Cannon | 2008-08-18 | 1 | -1/+0 |
|
|
* | Silence (Syntax|Deprecation)Warning for 'inspect'. Had to remove tuple | Brett Cannon | 2008-08-01 | 1 | -5/+9 |
|
|
* | Factor out docstring dedenting from inspect.getdoc() into inspect.cleandoc() | Georg Brandl | 2008-06-07 | 1 | -0/+7 |
|
|
* | Prevent an error when inspect.isabstract() is called with something else than... | Amaury Forgeot d'Arc | 2008-04-08 | 1 | -1/+1 |
|
|
* | Since abc._Abstract was replaces by a new type flags the regression test suit... | Christian Heimes | 2008-03-03 | 1 | -0/+8 |
|
|
* | Issue #1916. Added isgenerator() and isgeneratorfunction() to | Facundo Batista | 2008-02-18 | 1 | -6/+45 |
|
|
* | Let most inspect functions return named tuples | Raymond Hettinger | 2008-01-11 | 1 | -5/+19 |
|
|
* | Patch #1739696: use code.co_code only if really necessary | Georg Brandl | 2007-07-12 | 1 | -4/+3 |
|
|
* | Bug #1550524: better heuristics to find correct class definition | Georg Brandl | 2006-10-12 | 1 | -2/+17 |
|
|
* | Fix the speed regression in inspect.py by adding another cache to speed up ge... | Nick Coghlan | 2006-09-07 | 1 | -2/+17 |
|
|
* | Whitespace normalization. | Tim Peters | 2006-07-27 | 1 | -1/+1 |
|
|
* | Patch #1520294: Support for getset and member descriptors in types.py, | Barry Warsaw | 2006-07-27 | 1 | -0/+34 |
|
|
* | Fix SF#1516184 (again) and add a test to prevent regression. | Phillip J. Eby | 2006-07-20 | 1 | -2/+3 |
|
|
* | Fix SF#1516184 and add a test to prevent regression. | Phillip J. Eby | 2006-07-10 | 1 | -12/+9 |
|
|
* | Fix another problem in inspect: if the module for an object cannot be found, ... | Georg Brandl | 2006-04-30 | 1 | -1/+5 |
|
|
* | Fix infinite regress when inspecting <string> or <stdin> frames. | Phillip J. Eby | 2006-04-30 | 1 | -1/+7 |
|
|
* | Add whitespace after comma | Neal Norwitz | 2006-04-11 | 1 | -1/+1 |
|
|
* | Updated the warnings, linecache, inspect, traceback, site, and doctest modules | Phillip J. Eby | 2006-04-11 | 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 |
|
|