aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/inspect.py
Commit message (Expand)AuthorAge
* gh-94912: Adjusted check for non-standard coroutine function marker. (#100935)Carlton Gibson2023-01-11
* gh-85267: Improvements to inspect.signature __text_signature__ handling (#98796)Shantanu2022-12-20
* gh-94912: Added marker for non-standard coroutine function detection (#99247)Carlton Gibson2022-12-18
* gh-100039: enhance __signature__ to work with str and callables (GH-100168)Ethan Furman2022-12-16
* gh-83035: handle decorator with nested parens in inspect.getsource (#99654)Carl Meyer2022-12-07
* gh-99677: Deduplicate self-type in `mro` in `inspect._getmembers` (#99678)Nikita Sobolev2022-11-27
* gh-99815: remove unused 'invalid' sentinel value and code that checks for it ...Anthony Sottile2022-11-27
* Remove unused local variables in inspect.py (#24218)Yonatan Goldschmidt2022-11-27
* gh-74044: inspect.signature for wrappers around decorated bound methods (GH-736)Anton Ryzhov2022-11-10
* GH-83901: Improve Signature.bind error message for missing keyword-only param...Frazer McLean2022-10-07
* GH-96073: Fix wild replacement in inspect.formatannotation (#96074)Anh71me2022-10-07
* gh-65961: Do not rely solely on `__cached__` (GH-97990)Brett Cannon2022-10-06
* bpo-33587: inspect.getsource: reorder stat on file in linecache (GH-6805)Pankaj Pandey2022-08-26
* gh-84753: Make inspect.iscoroutinefunction() work with AsyncMock (#94050)Mehdi ABAAKOUK2022-06-30
* gh-92062: `inspect.Parameter` checks whether `name` is a keyword (GH-92065)Zac Hatfield-Dodds2022-05-03
* gh-88116: Enhance the inspect frame APIs to use the extended position informa...Pablo Galindo Salgado2022-04-23
* bpo-29418: Implement inspect.ismethodwrapper and fix inspect.isroutine for ca...Hakan Çelik2022-02-16
* bpo-46565: `del` loop vars that are leaking into module namespaces (GH-30993)Nikita Sobolev2022-02-03
* bpo-46103: Fix inspect.getmembers to only get __bases__ from class (GH-30147)Weipeng Hong2022-01-23
* bpo-43118: Fix bug in inspect.signature around 'base.__text_signature__' (GH-...Weipeng Hong2022-01-21
* bpo-46409: Make generators in bytecode (GH-30633)Mark Shannon2022-01-20
* bpo-40066: [Enum] skip failing doc test (GH-30637)Kumar Aditya2022-01-17
* Revert "bpo-40066: [Enum] update str() and format() output (GH-30582)" (GH-3...Victor Stinner2022-01-17
* bpo-40066: [Enum] update str() and format() output (GH-30582)Ethan Furman2022-01-15
* Remove spaces in empty lines (GH-30121)AN Long2021-12-16
* bpo-27062: add `__all__` to inspect module (GH-30003)Kumar Aditya2021-12-11
* bpo-30533:Add function inspect.getmembers_static that does not call propertie...Weipeng Hong2021-11-30
* bpo-45406: make inspect.getmodule() return None when getabsfile() raises File...Irit Katriel2021-11-02
* bpo-45438: format of inspect.Signature with generic builtins (#29212)Martin Rueckl2021-10-27
* bpo-45320: Remove long-deprecated inspect methods (GH-28618)Hugo van Kemenade2021-10-20
* bpo-30951: Correct co_names docstring in inspect module (GH-2743)Alex Vig2021-09-24
* bpo-44648: Fix error type in inspect.getsource() in interactive session (GH-2...andrei kulakov2021-07-30
* bpo-40897:Give priority to using the current class constructor in `inspect.si...Weipeng Hong2021-07-16
* bpo-35113: clean up duplicate import and comment (#27073)andrei kulakov2021-07-13
* bpo-20684: Remove unused inspect._signature_get_bound_param (GH-21100)Anthony Sottile2021-05-22
* bpo-43817: Add inspect.get_annotations(). (#25522)larryhastings2021-04-29
* bpo-38605: Revert making 'from __future__ import annotations' the default (GH...Pablo Galindo2021-04-21
* bpo-40066: Enum: modify `repr()` and `str()` (GH-22392)Ethan Furman2021-03-30
* bpo-42901: [Enum] move member creation to `__set_name__` (GH-24196)Ethan Furman2021-01-12
* bpo-41960: Add globalns and localns parameters to inspect.signature and Signa...Batuhan Taskaya2020-12-24
* bpo-17735: inspect.findsource now raises OSError when co_lineno is out of ran...Irit Katriel2020-12-04
* bpo-42116: Fix inspect.getsource handling of trailing comments (GH-23630)Irit Katriel2020-12-04
* bpo-42133: update parts of the stdlib to fall back to `__spec__.loader` when ...Brett Cannon2020-11-06
* bpo-38605: Make 'from __future__ import annotations' the default (GH-20434)Batuhan Taskaya2020-10-06
* bpo-40257: Revert changes to inspect.getdoc() (GH-20073)Serhiy Storchaka2020-05-18
* bpo-35113: Fix inspect.getsource to return correct source for inner classes (...Karthikeyan Singaravelan2020-04-18
* bpo-40257: Output object's own docstring in pydoc (GH-19479)Serhiy Storchaka2020-04-15
* bpo-39957: Change Signature.parameters to OrderedDict (GH-18988)Jens Reidel2020-03-18
* bpo-13487: Use sys.modules.copy() in inspect.getmodule() for thread safety. (...Gregory P. Smith2020-03-04
* bpo-39775: inspect: Change Signature.parameters back to OrderedDict. (GH-18684)Inada Naoki2020-03-02