| Commit message (Expand) | Author | Age | Files | Lines |
* | 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 |
|
|
* | - 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 |
|
|
* | This is my patch | Michael W. Hudson | 2002-08-15 | 1 | -13/+3 |
|
|
* | Add encoding declaration. | Martin v. Löwis | 2002-08-04 | 1 | -0/+1 |
|
|
* | Replaced .keys() with dictionary iterators | Raymond Hettinger | 2002-06-02 | 1 | -1/+1 |
|
|
* | SF 563203. Replaced 'has_key()' with 'in'. | Raymond Hettinger | 2002-06-01 | 1 | -4/+4 |
|
|
* | Replaced boolean test with is None | Raymond Hettinger | 2002-06-01 | 1 | -2/+2 |
|
|
* | Use types.StringTypes instead of explicit (str, unicode) list | Michael W. Hudson | 2002-05-20 | 1 | -1/+1 |
|
|
* | Clean up uses of some deprecated features. | Fred Drake | 2002-04-26 | 1 | -2/+2 |
|
|
* | Fix getcomments() so that it doesn't fail with TypeErrors. | Jeremy Hylton | 2002-03-28 | 1 | -3/+8 |
|
|