summaryrefslogtreecommitdiff
path: root/Lib/test/test_inspect.py
Commit message (Expand)AuthorAgeFilesLines
* [2.7] bpo-6700: Fix inspect.getsourcelines for module level frames/tracebacks...Tal Einat2018-08-261-2/+13
* Fix SyntaxWarning on importing test_inspect (#1512)Victor Stinner2017-05-091-5/+11
* Issue #29354: Fixed inspect.getargs() for parameters which are cellSerhiy Storchaka2017-02-011-2/+34
* Issue #21853: Fixed the inspect module in unicode disabled build.Serhiy Storchaka2015-05-311-3/+7
* Issue #18830: inspect.getclasstree() no more produces duplicated entries evenSerhiy Storchaka2013-09-051-2/+17
* #17526: fix an IndexError raised while passing code without filename to inspe...Ezio Melotti2013-03-301-0/+6
* Revert part of 13f56cd8dec1 (issue #1785) to avoid breaking getmembers() with...Antoine Pitrou2012-01-181-44/+18
* Issue #1785: Fix inspect and pydoc with misbehaving descriptors.Antoine Pitrou2011-12-211-0/+96
* allow "fake" filenames in findsource (closes #9284)Benjamin Peterson2011-06-111-0/+17
* Correct handling of functions with only kwarg args in getcallargs (closes #11...Benjamin Peterson2011-03-281-0/+14
* Merged revisions 86596 via svnmerge fromEzio Melotti2010-11-211-2/+2
* #8720: fix inspect regression by teaching getsourcefile about linecache.R. David Murray2010-06-171-0/+15
* Refactor a couple inspect module tests to remove duplicate codeJean-Paul Calderone2010-04-101-62/+26
* Silence a py3k warning.Ezio Melotti2010-03-311-3/+6
* add inspect.getcallargs, which binds function arguments like a normal call #3135Benjamin Peterson2010-03-301-3/+193
* #7092 - Silence more py3k deprecation warnings, using test_support.check_py3k...Florent Xicluna2010-03-211-9/+15
* Issue 6292: for the moment at least, the test suite passes if runR. David Murray2010-02-231-0/+2
* Remove unused imports in test modules.Georg Brandl2010-02-071-1/+1
* Fix test_inspect.py data to match recent change to inspect_fodder.py (r77942).Mark Dickinson2010-02-031-1/+1
* use assert[Not]In where appropriateEzio Melotti2010-01-231-50/+50
* Reverting the Revision: 77368. I committed Flox's big patch for tests bySenthil Kumaran2010-01-081-12/+9
* Fixing - Issue7026 - RuntimeError: dictionary changed size during iteration. ...Senthil Kumaran2010-01-081-9/+12
* make inspect.isabstract() always return a boolean; add a test for it, too #7069Benjamin Peterson2009-10-151-0/+23
* convert usage of fail* to assert*Benjamin Peterson2009-06-301-57/+57
* explicitly close filesPhilip Jenvey2009-05-281-1/+2
* Fix test failure on Windows, and add skip check if even unicodedataR. David Murray2009-05-141-3/+7
* Issue #4050: inspect.findsource/getsource now raise an IOError if the 'source'R. David Murray2009-05-131-0/+7
* fix inspect.isclass() on instances with a custom __getattr__ #1225107Benjamin Peterson2009-01-171-1/+12
* #1162154: inspect.getmembers() now skips attributes that raise AttributeError,Amaury Forgeot d'Arc2009-01-131-0/+11
* Fix several issues relating to access to source code inside zipfiles. Initial...Nick Coghlan2008-12-141-0/+3
* Factor out docstring dedenting from inspect.getdoc() into inspect.cleandoc()Georg Brandl2008-06-071-0/+4
* 15 -> 16, the 2ndGeorg Brandl2008-03-031-1/+1
* 15 -> 16Christian Heimes2008-03-031-2/+2
* Issue #1916. Added isgenerator() and isgeneratorfunction() toFacundo Batista2008-02-181-8/+20
* Replaced import of the 'new' module with 'types' module and added a deprecati...Christian Heimes2007-11-271-2/+2
* Fix the speed regression in inspect.py by adding another cache to speed up ge...Nick Coghlan2006-09-071-0/+11
* Make tabnanny recognize IndentationErrors raised by tokenize.Georg Brandl2006-08-141-0/+3
* Ensure the actual number matches the expected countNeal Norwitz2006-07-281-3/+4
* Patch #1520294: Support for getset and member descriptors in types.py,Barry Warsaw2006-07-271-3/+15
* Fix SF#1516184 (again) and add a test to prevent regression.Phillip J. Eby2006-07-201-0/+1
* Whitespace normalization.Tim Peters2006-07-101-1/+1
* Fix SF#1516184 and add a test to prevent regression.Phillip J. Eby2006-07-101-0/+10
* Make use of new str.startswith/endswith semantics.Georg Brandl2006-06-091-1/+1
* Fix SF bug #1458903 with AST compiler.Neal Norwitz2006-03-271-2/+4
* some more fixes and tests for inspect.getsource(), triggered by crashesArmin Rigo2005-09-251-0/+12
* Patch #1159931/bug #1143895: inspect.getsource failed when functions,Johannes Gijsbers2005-03-121-0/+10
* Whitespace normalization.Tim Peters2005-01-071-22/+21
* Patch #1011890: fix inspect.getsource breaking with line-continuation &Johannes Gijsbers2004-12-121-1/+43
* Patch #736962: port test_inspect to unittest. As part of this, move outJohannes Gijsbers2004-12-121-395/+349
* Patch #1006219: let inspect.getsource show '@' decorators and add tests forJohannes Gijsbers2004-08-181-0/+41