summaryrefslogtreecommitdiffstats
path: root/Lib/inspect.py
Commit message (Expand)AuthorAgeFilesLines
* GH-65961: Stop setting `__cached__` on modules (GH-142165)Brett Cannon2025-12-111-6/+6
* Fix pyflakes warnings: variable is assigned to but never used (#142294)Victor Stinner2025-12-081-1/+0
* gh-131116: Fix inspect.getdoc() to work with cached_property objects (GH-131165)Jacob Austin Lincoln2025-11-121-0/+6
* gh-132686: Add parameters inherit_class_doc and fallback_to_class_doc for ins...Serhiy Storchaka2025-11-111-8/+26
* gh-139783: Fix inspect.getsourcelines() for the case when a decorator is foll...Serhiy Storchaka2025-10-101-1/+3
* gh-139292: avoid extra tailing blank line in `python -m inspect -d <target>` ...yihong2025-09-241-1/+1
* gh-137317: Fix inspect.signature() for class with wrapped __init__ or __new__...Ju4tCode2025-08-281-4/+8
* gh-137477: Fix inspect.getblock() for generator expressions (GH-137488)Serhiy Storchaka2025-08-201-7/+10
* gh-135228: Create __dict__ and __weakref__ descriptors for object (GH-136966)Petr Viktorin2025-08-181-1/+2
* gh-132493: Remove __annotations__ usage in inspect._signature_is_functionlike...Jelle Zijlstra2025-05-101-3/+1
* gh-130645: Add color to stdlib argparse CLIs (gh-133380)Hugo van Kemenade2025-05-051-1/+1
* gh-119605: Respect `follow_wrapped` for `__init__` and `__new__` when getting...Xuehai Pan2025-05-011-7/+33
* gh-117174: Add a new route in linecache to fetch interactive source code (#11...Pablo Galindo Salgado2025-03-101-0/+2
* gh-128184: Fix display of signatures with ForwardRefs (#130815)Jelle Zijlstra2025-03-041-1/+3
* gh-127750: Restore inspect and pydoc support of singledispatchmethod (GH-130309)Serhiy Storchaka2025-02-201-1/+2
* gh-130164: Fix inspect.Signature.bind() handling of positional-only args with...Jacob Walls2025-02-181-0/+3
* Revert "GH-128914: Remove conditional stack effects from `bytecodes.c` and th...Sam Gross2025-01-231-1/+1
* GH-128914: Remove conditional stack effects from `bytecodes.c` and the code g...Mark Shannon2025-01-201-1/+1
* gh-121604: Make sure all deprecated items in importlib raise DeprecationWarni...Tomas R.2025-01-151-2/+1
* gh-127274: Defer nested methods (#128012)mpage2024-12-191-0/+1
* gh-127610: Added validation for more than one var-positional and var-keyword ...Apostol Fet2024-12-081-0/+8
* gh-70764: inspect.getclosurevars now identifies global variables with LOAD_GL...blhsing2024-11-051-5/+9
* gh-126072: do not add `None` to `co_consts` if there is no docstring (GH-126101)Xuanteng Huang2024-10-301-0/+2
* gh-125633: Add function `ispackage` to stdlib `inspect` (#125634)Zhikang Yan2024-10-271-3/+8
* gh-101552: Allow pydoc to display signatures in source format (#124669)Jelle Zijlstra2024-10-091-15/+37
* gh-116110: remove extra processing for the __signature__ attribute (GH-116234)Sergey B Kirpichev2024-10-081-9/+1
* gh-123339: Fix cases of inconsistency of __module__ and __firstlineno__ in cl...Serhiy Storchaka2024-09-281-2/+4
* gh-119127: functools.partial placeholders (gh-119827)dgpb2024-09-261-2/+22
* gh-122981: Fix inspect.getsource() for generated classes with Python base cla...Serhiy Storchaka2024-08-201-3/+3
* gh-119180: annotationlib: Fix __all__, formatting (#122365)Jelle Zijlstra2024-08-111-3/+1
* gh-122058: `Lib/inspect`: Update docstrings for `isfunction`, `isgenerator`, ...Kirill Podoprigora2024-08-061-9/+24
* gh-119180: Add `annotationlib` module to support PEP 649 (#119891)Jelle Zijlstra2024-07-231-115/+1
* gh-121027: Add a future warning in functools.partial.__get__ (#121086)Serhiy Storchaka2024-06-271-4/+4
* gh-120381: Fix inspect.ismethoddescriptor() (#120383)Jan Kaliszewski2024-06-181-4/+7
* gh-114053: Fix bad interaction of PEP 695, PEP 563 and `inspect.get_annotatio...Alex Waygood2024-06-131-1/+7
* gh-119180: PEP 649 compiler changes (#119361)Jelle Zijlstra2024-06-111-7/+1
* gh-120200: Fix `inspect.iscoroutinefunction(inspect) is True` corner case (#1...Nikita Sobolev2024-06-071-3/+3
* gh-87106: Fix inspect.signature.bind() handling of positional-only arguments ...Jacob Walls2024-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