summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_inspect.py
Commit message (Expand)AuthorAgeFilesLines
* inspect: Fix getsource() to load updated source of reloaded moduleYury Selivanov2014-12-081-1/+32
* #12780: update inspect test skipIf for PEP 3147.R David Murray2014-10-031-4/+5
* inspect: Validate that __signature__ is None or an instance of Signature.Yury Selivanov2014-06-231-0/+7
* inspect.signautre: Fix functools.partial support. Issue #21117Yury Selivanov2014-04-081-20/+79
* inspect: Fix getcallargs() to fail correctly if more than 3 args are missing.Yury Selivanov2014-03-271-0/+6
* inspect: Fix getcallargs() to raise correct TypeErrorYury Selivanov2014-03-271-0/+8
* Issue #20786: Fix signatures for dict.__delitem__ and property.__delete__Yury Selivanov2014-03-021-0/+5
* inspect.signature: Check for function-like objects before builtins. Issue #17159Yury Selivanov2014-02-211-0/+16
* inspect: Fix getfullargspec to support builtin module-level functions. Issue ...Yury Selivanov2014-02-211-0/+7
* inspect: Fix getfullargspec() to not to follow __wrapped__ chainsYury Selivanov2014-02-191-0/+40
* Mangle __parameters in __annotations__ dict properly. Issue #20625.Yury Selivanov2014-02-181-0/+16
* Issue #20530: Argument Clinic's signature format has been revised again.Larry Hastings2014-02-091-8/+65
* Issue #20532: Tests which use _testcapi now are marked as CPython only.Serhiy Storchaka2014-02-071-2/+11
|\
* | inspect.signature: Add (restore) support for builtin classes #20473Yury Selivanov2014-02-031-0/+26
* | inspect.tests: Fix tests to work on python built with '--without-doc-strings'...Yury Selivanov2014-02-011-0/+3
* | inspect.signature: Support duck-types of Python functions (Cython, for instan...Yury Selivanov2014-01-311-0/+60
* | inspect.classify_class_attrs: Classify object.__new__ and __init__ correctly ...Yury Selivanov2014-01-311-0/+4
* | inspect.signature: Make sure that if a callable object has '_patialmethod'Yury Selivanov2014-01-291-0/+5
* | inspect.test.getfullargspec: Add a unittest to ensure correct annotationsYury Selivanov2014-01-291-0/+9
* | inspect.getfullargspec: Use inspect.signature API behind the scenes #17481Yury Selivanov2014-01-291-1/+41
* | inspect.Signature: ensure that non-default params don't follow default ones #...Yury Selivanov2014-01-291-1/+12
* | inspect.signature: Add support for decorated (wrapped) builtins #20425Yury Selivanov2014-01-291-0/+15
* | inspect.Signature: Make from_builtin to raise an exception if no signature canYury Selivanov2014-01-291-0/+4
* | inspect.Signature.bind: Fix pos-only params with defaults; fix *args in named...Yury Selivanov2014-01-281-0/+25
* | inspect.signature: Handle bound methods with '(*args)' signature correctly #2...Yury Selivanov2014-01-281-4/+19
* | inspect.tests: Remove redundant unittestYury Selivanov2014-01-281-5/+0
* | inspect.signature: Support classes without user-defined __init__/__new__ #20308Yury Selivanov2014-01-281-0/+14
* | inspect.signature: Add support for 'functools.partialmethod' #20223Yury Selivanov2014-01-271-0/+27
* | inspect.signature: Use '/' to separate positional-only parameters fromYury Selivanov2014-01-271-16/+24
* | inspect.getfile: Don't crash on classes without '__module__' attribute #20372Yury Selivanov2014-01-271-0/+10
* | Issue #20189: Four additional builtin types (PyTypeObject,Larry Hastings2014-01-241-30/+68
* | Issue #20226: Major improvements to Argument Clinic.Larry Hastings2014-01-161-1/+4
* | Issue #20144: Argument Clinic now supports simple constants as parameterLarry Hastings2014-01-071-1/+12
* | Issue #19535: Fixed test_docxmlrpc, test_functools, test_inspect, andSerhiy Storchaka2013-12-081-1/+2
|\ \ | |/
* | Fix inspect.signature tests for builtins when docstrings are compiled out.Larry Hastings2013-11-241-1/+6
* | Issue #19674: inspect.signature() now produces a correct signatureLarry Hastings2013-11-231-4/+3
* | Issue #19030: final pieces for proper location of various class attributes lo...Ethan Furman2013-10-211-5/+15
* | Close #19030: inspect.getmembers and inspect.classify_class_attrsEthan Furman2013-10-181-11/+89
* | Tweak skipIf messageBrett Cannon2013-10-021-1/+1
* | Try to fix issue #19134 againBrett Cannon2013-10-021-5/+6
* | Issue #19134: Make a test in inspect conditional on multiprocessingBrett Cannon2013-09-301-0/+3
* | Close #19030: improvements to inspect and Enum.Ethan Furman2013-09-251-0/+24
* | Close #18626: add a basic CLI for the inspect moduleNick Coghlan2013-09-221-2/+44
* | Issue #18830: inspect.getclasstree() no more produces duplicated entries evenSerhiy Storchaka2013-09-051-2/+19
|\ \ | |/
| * Issue #18830: inspect.getclasstree() no more produces duplicated entries evenSerhiy Storchaka2013-09-051-2/+19
* | Close #13266: Add inspect.unwrapNick Coghlan2013-07-281-1/+73
* | #17526: merge with 3.3.Ezio Melotti2013-03-301-0/+6
|\ \ | |/
| * #17526: fix an IndexError raised while passing code without filename to inspe...Ezio Melotti2013-03-301-0/+6
* | Issue #17071: Signature.bind() now works when one of the keyword arguments is...Antoine Pitrou2013-01-291-0/+10
|\ \ | |/
| * Issue #17071: Signature.bind() now works when one of the keyword arguments is...Antoine Pitrou2013-01-291-0/+10