summaryrefslogtreecommitdiffstats
path: root/Lib/inspect.py
Commit message (Expand)AuthorAgeFilesLines
* [3.13] gh-119605: Respect `follow_wrapped` for `__init__` and `__new__` when ...Miss Islington (bot)2025-05-021-7/+33
* [3.13] gh-130164: Fix inspect.Signature.bind() handling of positional-only ar...Miss Islington (bot)2025-04-081-0/+3
* [3.13] gh-117174: Add a new route in linecache to fetch interactive source co...Miss Islington (bot)2025-03-101-0/+2
* [3.13] gh-70764: inspect.getclosurevars now identifies global variables with ...Miss Islington (bot)2024-11-061-5/+9
* [3.13] gh-123339: Fix cases of inconsistency of __module__ and __firstlineno_...Serhiy Storchaka2024-09-301-2/+4
* [3.13] gh-122981: Fix inspect.getsource() for generated classes with Python b...Miss Islington (bot)2024-09-021-3/+3
* [3.13] gh-122087: Restore ismethoddescriptor() and isroutine() for partial ob...Serhiy Storchaka2024-07-251-0/+5
* [3.13] gh-121027: Add a future warning in functools.partial.__get__ (GH-12108...Miss Islington (bot)2024-06-271-4/+4
* [3.13] gh-120381: Fix inspect.ismethoddescriptor() (GH-120684)Miss Islington (bot)2024-06-191-4/+7
* [3.13] gh-114053: Fix bad interaction of PEP 695, PEP 563 and `inspect.get_an...Miss Islington (bot)2024-06-131-1/+7
* [3.13] gh-120200: Fix `inspect.iscoroutinefunction(inspect) is True` corner c...Miss Islington (bot)2024-06-071-3/+3
* [3.13] gh-87106: Fix inspect.signature.bind() handling of positional-only arg...Miss Islington (bot)2024-05-131-12/+16
* gh-118465: Add __firstlineno__ attribute to class (GH-118475)Serhiy Storchaka2024-05-061-78/+5
* gh-82062: Fix support of parameter defaults on methods in extension modules (...Sergey B Kirpichev2024-05-021-0/+5
* gh-118404: Fix inspect.signature() for non-comparable callables (GH-118405)Serhiy Storchaka2024-04-301-2/+4
* gh-118285: Fix signatures of operator.{attrgetter,itemgetter,methodcaller} in...Serhiy Storchaka2024-04-291-0/+7
* gh-118013: Use weakrefs for the cache key in `inspect._shadowed_dict` (#118202)Alex Waygood2024-04-241-3/+22
* gh-116987: Support class code objects in inspect.findsource() (GH-117025)Tian Gao2024-03-211-9/+2
* gh-114099 - Add iOS framework loading machinery. (GH-116454)Russell Keith-Magee2024-03-191-1/+6
* gh-101293: Fix support of custom callables and types in inspect.Signature.fro...Serhiy Storchaka2024-03-011-87/+74
* gh-112006: Fix inspect.unwrap() for types where __wrapped__ is a data descrip...Serhiy Storchaka2024-02-261-7/+3
* gh-101860: Expose __name__ on property (GH-101876)Eugene Toder2024-02-201-3/+2
* bpo-38364: unwrap partialmethods just like we unwrap partials (#16600)Martijn Pieters2024-02-151-2/+4
* gh-112316: improve docs for `inspect.signature` and `inspect.Signature` (#112...Alex Waygood2023-12-031-1/+1
* gh-112139: Add `inspect.Signature.format` and use it in `pydoc` (#112143)Nikita Sobolev2023-12-021-0/+12
* gh-108751: Add copy.replace() function (GH-108752)Serhiy Storchaka2023-09-061-0/+4
* gh-106727: Add `__module__` check for `inspect.getsource(cls)` (#106968)Tian Gao2023-07-241-1/+2
* gh-106727: Make `inspect.getsource` smarter for class for same name definitio...Tian Gao2023-07-181-11/+46
* gh-81283: compiler: remove indent from docstring (#106411)Inada Naoki2023-07-151-23/+22
* gh-105080: Fixed inconsistent signature on derived classes (#105217)Tian Gao2023-06-021-11/+12
* gh-105069: Add a readline-like callable to the tokenizer to consume input ite...Pablo Galindo Salgado2023-05-301-1/+1
* gh-105013: Fix inspect.getsource with parenthesized multiline lambdas (#105021)Pablo Galindo Salgado2023-05-271-0/+8
* gh-102856: Python tokenizer implementation for PEP 701 (#104323)Marta Gómez Macías2023-05-211-2/+2
* gh-75367: Fix data descriptor detection in inspect.getattr_static (#104517)Furkan Onder2023-05-161-2/+4
* gh-103193: cache calls to `inspect._shadowed_dict` in `inspect.getattr_static...Alex Waygood2023-05-071-2/+6
* gh-102500: Implement PEP 688 (#102521)Jelle Zijlstra2023-05-041-0/+23
* gh-102799: replace sys.exc_info by sys.exception in inspect and traceback mod...Irit Katriel2023-05-011-1/+3
* gh-103556: [inspect.Signature] disallow pos-or-kw params without default afte...Nikita Sobolev2023-04-221-6/+4
* gh-103193: Speedup and inline `inspect._is_type` (#103321)Alex Waygood2023-04-061-9/+4
* gh-103193: Use LBYL idioms rather than EAFP in `inspect.getattr_static` (#103...Alex Waygood2023-04-061-15/+10
* gh-103193: Micro-optimise helper functions for `inspect.getattr_static` (#103...Alex Waygood2023-04-051-4/+3
* gh-79940: add introspection API for asynchronous generators to `inspect` modu...Thomas Krennwallner2023-03-111-0/+50
* gh-102378: don't bother stripping `/` from __text_signature__ (#102379)David Hewitt2023-03-091-40/+17
* gh-102302 Micro-optimize `inspect.Parameter.__hash__` (#102303)Gouvernathor2023-03-041-1/+1
* gh-94912: Adjusted check for non-standard coroutine function marker. (#100935)Carlton Gibson2023-01-111-2/+0
* gh-85267: Improvements to inspect.signature __text_signature__ handling (#98796)Shantanu2022-12-211-5/+20
* gh-94912: Added marker for non-standard coroutine function detection (#99247)Carlton Gibson2022-12-181-2/+24
* gh-100039: enhance __signature__ to work with str and callables (GH-100168)Ethan Furman2022-12-161-1/+9
* gh-83035: handle decorator with nested parens in inspect.getsource (#99654)Carl Meyer2022-12-071-9/+1
* gh-99677: Deduplicate self-type in `mro` in `inspect._getmembers` (#99678)Nikita Sobolev2022-11-271-1/+1