summaryrefslogtreecommitdiffstats
path: root/Lib/inspect.py
Commit message (Expand)AuthorAgeFilesLines
* Issue #19674: inspect.signature() now produces a correct signatureLarry Hastings2013-11-231-0/+62
* Issue #19030: final pieces for proper location of various class attributes lo...Ethan Furman2013-10-211-23/+32
* Issue #19030: special-cased __dict__ as the actual dict is not returned, a p...Ethan Furman2013-10-181-0/+2
* Close #19030: inspect.getmembers and inspect.classify_class_attrsEthan Furman2013-10-181-24/+33
* Close #19030: improvements to inspect and Enum.Ethan Furman2013-09-251-29/+69
* Close #18626: add a basic CLI for the inspect moduleNick Coghlan2013-09-221-0/+61
* Close #18929: inspect.classify_class_attrs will now search the metaclasses (l...Ethan Furman2013-09-151-1/+6
* Issue #18830: inspect.getclasstree() no more produces duplicated entries evenSerhiy Storchaka2013-09-051-1/+2
|\
| * Issue #18830: inspect.getclasstree() no more produces duplicated entries evenSerhiy Storchaka2013-09-051-1/+2
* | #18705: merge with 3.3.Ezio Melotti2013-08-171-2/+2
|\ \ | |/
| * #18705: fix a number of typos. Patch by Févry Thibault.Ezio Melotti2013-08-171-2/+2
* | Close #13266: Add inspect.unwrapNick Coghlan2013-07-281-7/+37
* | Issue #18200: Back out usage of ModuleNotFoundError (8d28d44f3a9a)Brett Cannon2013-07-041-1/+1
* | Issue #17177: The imp module is pending deprecation.Brett Cannon2013-06-161-1/+3
* | Issue #18200: Update the stdlib (except tests) to useBrett Cannon2013-06-141-1/+1
* | #17115,17116: Have modules initialize the __package__ and __loader__Brett Cannon2013-05-041-1/+1
* | #17526: merge with 3.3.Ezio Melotti2013-03-301-1/+1
|\ \ | |/
| * #17526: fix an IndexError raised while passing code without filename to inspe...Ezio Melotti2013-03-301-1/+1
* | Issue #17071: Signature.bind() now works when one of the keyword arguments is...Antoine Pitrou2013-01-291-4/+4
|\ \ | |/
| * Issue #17071: Signature.bind() now works when one of the keyword arguments is...Antoine Pitrou2013-01-291-4/+4
* | Replace IOError with OSError (#16715)Andrew Svetlov2012-12-251-10/+10
|/
* Issue #15401: Fix typo in inspect.getclosurevars docstring.Meador Inge2012-07-201-1/+1
* Close #15387: inspect.getmodulename() now uses a new importlib.machinery.all_...Nick Coghlan2012-07-181-2/+9
* Close #15153: Added inspect.getgeneratorlocals to simplify whitebox testing o...Nick Coghlan2012-06-231-0/+18
* Close #13062: Add inspect.getclosurevars to simplify testing stateful closuresNick Coghlan2012-06-231-0/+54
* Issue #15008: Implement PEP 362 "Signature Objects".Larry Hastings2012-06-221-3/+772
* Issue #14987: Add a missing import statementBrett Cannon2012-06-031-0/+1
* Issue #13959: Deprecate imp.get_suffixes() for new attributes onBrett Cannon2012-05-111-11/+16
* MergeMichael Foord2011-12-221-4/+5
|\
| * Metaclasses with metaclasses with a __dict__ descriptor can no longer trigger...Michael Foord2011-12-221-4/+5
* | Issue #1785: Fix inspect and pydoc with misbehaving descriptors.Antoine Pitrou2011-12-211-33/+46
|\ \ | |/
| * Issue #1785: Fix inspect and pydoc with misbehaving descriptors.Antoine Pitrou2011-12-211-33/+46
* | Merge 3.2Michael Foord2011-12-181-4/+6
|\ \ | |/
| * Fix inspect.getattr_static to work on modules (again).Michael Foord2011-12-181-4/+6
* | Merge 3.2Éric Araujo2011-11-291-1/+1
|\ \ | |/
| * Fix inspect.getmodule to use a copy of sys.modules for iteration (#13487).Éric Araujo2011-11-291-1/+1
* | remove unused imports (closes #12432)Benjamin Peterson2011-06-281-1/+0
* | give the names of missing positional or keyword-only arguments (closes #12356)Benjamin Peterson2011-06-241-12/+29
* | merge 3.2 (#9284)Benjamin Peterson2011-06-111-2/+6
|\ \ | |/
| * allow "fake" filenames in findsource (closes #9284)Benjamin Peterson2011-06-111-2/+6
* | greatly improve argument parsing error messages (closes #12265)Benjamin Peterson2011-06-061-50/+59
|/
* Correct handling of functions with only kwarg args in getcallargs (closes #11...Benjamin Peterson2011-03-281-2/+8
* Closes issue 11133. Fixes two cases where inspect.getattr_static could trigge...Michael Foord2011-03-151-6/+21
* Issue 10220: switch to using string constants rather than integers for inspec...Nick Coghlan2010-11-301-1/+4
* Issue #10220: Add inspect.getgeneratorstate(). Initial patch by Rodolpho Eckh...Nick Coghlan2010-11-211-0/+20
* Issue 9732: __class__ no longer checked on objects by getattr_staticMichael Foord2010-11-201-1/+8
* Issue 9732: fetch the method resolution order from the type metaclass directl...Michael Foord2010-11-201-2/+5
* Issue 9732: remove use of __class__ in inspect.getattr_static and note the mr...Michael Foord2010-11-201-1/+1
* Issue 9732: addition of getattr_static to the inspect moduleMichael Foord2010-11-201-0/+64
* classic classes are gone; whoppie!Benjamin Peterson2010-11-041-13/+1