summaryrefslogtreecommitdiff
path: root/Lib/inspect.py
Commit message (Expand)AuthorAgeFilesLines
* Issue #15812: Merge from 3.5Berker Peksag2017-01-031-1/+0
|\
| * Issue #15812: Delete redundant max(start, 0)Berker Peksag2017-01-031-1/+0
* | Issue #15812: Merge from 3.5Berker Peksag2017-01-021-1/+1
|\ \ | |/
| * Issue #15812: inspect.getframeinfo() now correctly shows the first line of a ...Berker Peksag2017-01-021-1/+1
* | Issue #27172: Undeprecate inspect.getfullargspec()Nick Coghlan2016-12-021-17/+25
* | Merge 3.5 (issue #28639)Yury Selivanov2016-11-081-24/+30
|\ \ | |/ |/|
| * docs/inspect: clarify iscoroutinefunction; add docs for isasyncgen*Yury Selivanov2016-11-081-2/+7
| * Issue #27989: Tweak inspect.formatannotation() to improve pydoc rendering of ...Guido van Rossum2016-10-221-22/+23
| |\
| | * Issue #28003: Implement PEP 525 -- Asynchronous Generators.Yury Selivanov2016-09-081-0/+7
| | * Issue #27993: Merge plural fixes from 3.5Martin Panter2016-09-071-22/+16
| | |\
| | | * Issue #19611: handle implicit parameters in inspect.signatureNick Coghlan2016-06-041-0/+14
| | | * Merge 3.5 (issue #26347)Yury Selivanov2016-03-021-22/+2
| | | |\
| | | | * Issue #25486: Resurrect inspect.getargspec in 3.6. Backout a565aad5d6e1.Yury Selivanov2016-01-111-0/+25
| | | | * Issue #25503: Fixed inspect.getdoc() for inherited docstrings of properties.Serhiy Storchaka2015-10-291-47/+2
| | | | |\
| | | | | * Issue #13248: Delete remaining references of inspect.getargspec().Berker Peksag2015-07-311-5/+2
| | | | | * Issue #24485: Function source inspection fails on closures.Meador Inge2015-07-231-42/+0
| | | | | |\
| | | | | | * Issue #13248: Remove inspect.getmoduleinfo() from 3.6 (deprecated in 3.3)Yury Selivanov2015-07-231-17/+0
| | | | | | * Issue #13248: Remove inspect.getargspec from 3.6 (deprecated from 3.0)Yury Selivanov2015-07-231-25/+0
* | | | | | | Issue #28639: Fix inspect.isawaitable to always return boolYury Selivanov2016-11-081-2/+2
|/ / / / / /
* | | | | | Issue #27989: Tweak inspect.formatannotation() to improve pydoc rendering of ...Guido van Rossum2016-10-221-0/+2
|/ / / / /
* | | | | Issue #27993: Fix problems with plural objects in docs and commentsMartin Panter2016-09-071-3/+2
|/ / / /
* | | | inspect: Fix BoundArguments.apply_defaults to handle empty argumentsYury Selivanov2016-03-021-2/+0
|/ / /
* | | Issue #25503: Fixed inspect.getdoc() for inherited docstrings of properties.Serhiy Storchaka2015-10-291-6/+7
|/ /
* | Issue #24485: Function source inspection fails on closures.Meador Inge2015-07-231-4/+22
|/
* Issue #24485: Revert backwards compatibility breaking changes of #21217.Yury Selivanov2015-07-231-18/+2
* Issue #24669: Fix inspect.getsource() for 'async def' functions.Yury Selivanov2015-07-211-1/+1
* Issue #24206: Fixed __eq__ and __ne__ methods of inspect classes.Serhiy Storchaka2015-07-181-22/+19
|\
| * Issue #24206: Fixed __eq__ and __ne__ methods of inspect classes.Serhiy Storchaka2015-07-181-16/+10
* | Issue #24400: Resurrect inspect.isawaitable()Yury Selivanov2015-07-031-0/+7
* | Issue #24400: Remove inspect.isawaitable().Yury Selivanov2015-06-301-4/+0
* | Issue #24400: Introduce a distinct type for 'async def' coroutines.Yury Selivanov2015-06-221-7/+43
* | Issue #23934: Fix inspect.signature to fail correctly for builtin types.Yury Selivanov2015-05-301-1/+5
* | Issue 24298: Fix signature() to properly unwrap wrappers around bound methodsYury Selivanov2015-05-271-233/+468
|\ \ | |/ |/|
| * Issue 20438: Adjust stacklevel of inspect.getargspec() warning.Yury Selivanov2015-05-221-1/+2
| * Issue 20438: Deprecate inspect.getargspec() and friends.Yury Selivanov2015-05-221-1/+4
| * Set stacklevel to 2 to get more accurate warning messages from deprecated fun...Berker Peksag2015-05-211-2/+4
| * Issue 23898: Fix inspect.classify_class_attrs() to work with __eq__Yury Selivanov2015-05-211-230/+458
| |\
| | * Issue 24017: Use abc.Coroutine in inspect.iscoroutine() functionYury Selivanov2015-05-211-2/+1
| | * Issue 24248: Deprecate inspect.Signature.from_function and .from_builtinYury Selivanov2015-05-201-0/+6
| | * inspect.Signature: Factor out Signature.from_function to a private helperYury Selivanov2015-05-201-78/+83
| | * Issue 20691: Add follow_wrapped arg to inspect.signature/from_callable.Yury Selivanov2015-05-201-4/+5
| | * Issue 24205: Improve inspect.Signature.bind() error messages.Yury Selivanov2015-05-191-6/+10
| | * Issue 24190: Add inspect.BoundArguments.apply_defaults() method.Yury Selivanov2015-05-161-0/+30
| | * inspect: Remove "0x..." IDs from Signature objects' __repr__Yury Selivanov2015-05-151-6/+3
| | * Issue 22547: Implement informative __repr__ for inspect.BoundArgumentsYury Selivanov2015-05-141-0/+7
| | * inspect: Micro-optimize __eq__ for Signature, Parameter and BoundArgumentsYury Selivanov2015-05-141-10/+22
| | * inspect: Add __slots__ to BoundArguments.Yury Selivanov2015-05-131-0/+9
| | * PEP 0492 -- Coroutines with async and await syntax. Issue #24017.Yury Selivanov2015-05-111-2/+24
| | * Issue #21217: inspect.getsourcelines() now tries to compute the start andAntoine Pitrou2015-04-151-14/+23
| | * Issue #15582: inspect.getdoc() now follows inheritance chains.Serhiy Storchaka2015-04-031-0/+73