summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_inspect
Commit message (Expand)AuthorAgeFilesLines
* GH-65961: Stop setting `__cached__` on modules (GH-142165)Brett Cannon2025-12-111-2/+1
* gh-131116: Fix inspect.getdoc() to work with cached_property objects (GH-131165)Jacob Austin Lincoln2025-11-122-0/+59
* gh-132686: Add parameters inherit_class_doc and fallback_to_class_doc for ins...Serhiy Storchaka2025-11-111-0/+27
* gh-139783: Fix inspect.getsourcelines() for the case when a decorator is foll...Serhiy Storchaka2025-10-102-0/+16
* gh-133210: Fix `test_inspect` without docstrings (#139651)sobolevn2025-10-061-2/+8
* gh-138729: Cover `inspect.formatannotationrelativeto` with tests (#138730)sobolevn2025-09-101-1/+42
* gh-137317: Fix inspect.signature() for class with wrapped __init__ or __new__...Ju4tCode2025-08-281-31/+276
* gh-137477: Fix inspect.getblock() for generator expressions (GH-137488)Serhiy Storchaka2025-08-202-0/+26
* gh-136571: Convert more code in datetime to Argument Clinic (GH-136573)Serhiy Storchaka2025-08-091-0/+15
* gh-136492: Add `FrameLocalsProxyType` to `types` (GH-136546)Peter Bierma2025-07-201-0/+1
* gh-136549: Fix signature of threading.excepthook() (GH-136559)Serhiy Storchaka2025-07-121-0/+1
* gh-134657: Remove newly added private names from asyncio.__all__ (#134665)Jelle Zijlstra2025-07-091-1/+1
* gh-127146: Emscripten: Fix test failure due to missing os.link (#135626)Hood Chatham2025-06-181-2/+2
* gh-71339: Use new assertion methods in tests (GH-129046)Serhiy Storchaka2025-05-221-5/+5
* gh-132493: Remove __annotations__ usage in inspect._signature_is_functionlike...Jelle Zijlstra2025-05-101-0/+31
* gh-133644: Remove deprecated Python initialization getter functions (#133661)Bénédikt Tran2025-05-091-2/+4
* gh-81793: Always call linkat() from os.link(), if available (GH-132517)Serhiy Storchaka2025-05-041-1/+1
* gh-119605: Respect `follow_wrapped` for `__init__` and `__new__` when getting...Xuehai Pan2025-05-011-1/+39
* gh-133210: Fix `test_inspect` in `--without-doc-strings` mode (#133250)sobolevn2025-05-011-13/+20
* gh-127604: Add C stack dumps to `faulthandler` (#128159)Peter Bierma2025-04-211-1/+1
* gh-129463, gh-128593: Simplify ForwardRef (#129465)Jelle Zijlstra2025-04-051-2/+5
* gh-105499: Merge typing.Union and types.UnionType (#105511)Jelle Zijlstra2025-03-041-2/+2
* gh-128184: Fix display of signatures with ForwardRefs (#130815)Jelle Zijlstra2025-03-041-0/+9
* gh-127750: Restore inspect and pydoc support of singledispatchmethod (GH-130309)Serhiy Storchaka2025-02-201-0/+21
* gh-130164: Fix inspect.Signature.bind() handling of positional-only args with...Jacob Walls2025-02-181-2/+6
* gh-127873: Only check `sys.flags.ignore_environment` for `PYTHON*` env vars (...Hugo van Kemenade2025-01-211-0/+1
* gh-128694: Fix `(env changed)` error in `test_inspect` (#128702)sobolevn2025-01-101-0/+5
* gh-128265: Support WASI/Emscripten on PDB tests, by removing asyncio from pdb...Thomas Grainger2024-12-281-11/+4
* gh-127949: fix `DeprecationWarning` in test_inspect.py (#128215)Thomas Grainger2024-12-241-15/+13
* gh-127949: deprecate `asyncio.set_event_loop_policy` (#128024)Kumar Aditya2024-12-181-1/+1
* gh-127610: Added validation for more than one var-positional and var-keyword ...Apostol Fet2024-12-081-0/+11
* gh-70764: inspect.getclosurevars now identifies global variables with LOAD_GL...blhsing2024-11-051-0/+13
* gh-125916: Adapt functools.reduce() to Argument Clinic (#125999)Sergey B Kirpichev2024-11-011-2/+2
* gh-126072: do not add `None` to `co_consts` if there is no docstring (GH-126101)Xuanteng Huang2024-10-301-1/+1
* gh-125633: Add function `ispackage` to stdlib `inspect` (#125634)Zhikang Yan2024-10-271-3/+16
* gh-125900: Clean-up logic around immortalization in free-threading (#125901)Sam Gross2024-10-241-3/+1
* gh-101552: Allow pydoc to display signatures in source format (#124669)Jelle Zijlstra2024-10-092-1/+36
* gh-116110: remove extra processing for the __signature__ attribute (GH-116234)Sergey B Kirpichev2024-10-081-32/+0
* gh-123339: Fix cases of inconsistency of __module__ and __firstlineno__ in cl...Serhiy Storchaka2024-09-282-2/+71
* gh-119127: functools.partial placeholders (gh-119827)dgpb2024-09-261-2/+72
* gh-122981: Fix inspect.getsource() for generated classes with Python base cla...Serhiy Storchaka2024-08-202-1/+61
* gh-116789: Add more tests for `inspect.getmembers` (#116802)sobolevn2024-08-181-0/+50
* gh-122087: Add tests for ismethoddescriptor() and isroutine() with partial ob...Serhiy Storchaka2024-07-251-0/+3
* gh-119180: Add `annotationlib` module to support PEP 649 (#119891)Jelle Zijlstra2024-07-231-214/+1
* gh-121027: Make the functools.partial object a method descriptor (GH-121089)Serhiy Storchaka2024-07-031-22/+16
* gh-121027: Add a future warning in functools.partial.__get__ (#121086)Serhiy Storchaka2024-06-271-12/+19
* gh-120417: Add #noqa: F401 to tests (#120627)Victor Stinner2024-06-181-2/+2
* gh-120381: Fix inspect.ismethoddescriptor() (#120383)Jan Kaliszewski2024-06-181-3/+118
* gh-120417: Remove unused imports in tests (part 3) (#120631)Victor Stinner2024-06-171-1/+1
* Add some more edge-case tests for `inspect.get_annotations` with `eval_str=Tr...Alex Waygood2024-06-152-11/+36