summaryrefslogtreecommitdiffstats
path: root/Lib/inspect.py
Commit message (Expand)AuthorAgeFilesLines
* bpo-29418: Implement inspect.ismethodwrapper and fix inspect.isroutine for ca...Hakan Çelik2022-02-161-9/+11
* bpo-46565: `del` loop vars that are leaking into module namespaces (GH-30993)Nikita Sobolev2022-02-031-0/+1
* bpo-46103: Fix inspect.getmembers to only get __bases__ from class (GH-30147)Weipeng Hong2022-01-231-13/+13
* bpo-43118: Fix bug in inspect.signature around 'base.__text_signature__' (GH-...Weipeng Hong2022-01-211-2/+2
* bpo-46409: Make generators in bytecode (GH-30633)Mark Shannon2022-01-201-6/+6
* bpo-40066: [Enum] skip failing doc test (GH-30637)Kumar Aditya2022-01-171-16/+14
* Revert "bpo-40066: [Enum] update str() and format() output (GH-30582)" (GH-3...Victor Stinner2022-01-171-14/+16
* bpo-40066: [Enum] update str() and format() output (GH-30582)Ethan Furman2022-01-161-16/+14
* Remove spaces in empty lines (GH-30121)AN Long2021-12-151-3/+3
* bpo-27062: add `__all__` to inspect module (GH-30003)Kumar Aditya2021-12-101-1/+100
* bpo-30533:Add function inspect.getmembers_static that does not call propertie...Weipeng Hong2021-11-301-4/+21
* bpo-45406: make inspect.getmodule() return None when getabsfile() raises File...Irit Katriel2021-11-021-1/+1
* bpo-45438: format of inspect.Signature with generic builtins (#29212)Martin Rueckl2021-10-271-0/+2
* bpo-45320: Remove long-deprecated inspect methods (GH-28618)Hugo van Kemenade2021-10-201-113/+0
* bpo-30951: Correct co_names docstring in inspect module (GH-2743)Alex Vig2021-09-241-1/+1
* bpo-44648: Fix error type in inspect.getsource() in interactive session (GH-2...andrei kulakov2021-07-301-0/+2
* bpo-40897:Give priority to using the current class constructor in `inspect.si...Weipeng Hong2021-07-161-8/+16
* bpo-35113: clean up duplicate import and comment (#27073)andrei kulakov2021-07-131-4/+0
* bpo-20684: Remove unused inspect._signature_get_bound_param (GH-21100)Anthony Sottile2021-05-221-23/+0
* bpo-43817: Add inspect.get_annotations(). (#25522)larryhastings2021-04-301-14/+135
* bpo-38605: Revert making 'from __future__ import annotations' the default (GH...Pablo Galindo2021-04-211-17/+2
* bpo-40066: Enum: modify `repr()` and `str()` (GH-22392)Ethan Furman2021-03-311-3/+0
* bpo-42901: [Enum] move member creation to `__set_name__` (GH-24196)Ethan Furman2021-01-131-1/+1
* bpo-41960: Add globalns and localns parameters to inspect.signature and Signa...Batuhan Taskaya2020-12-231-49/+31
* bpo-17735: inspect.findsource now raises OSError when co_lineno is out of ran...Irit Katriel2020-12-041-1/+6
* bpo-42116: Fix inspect.getsource handling of trailing comments (GH-23630)Irit Katriel2020-12-041-0/+7
* bpo-42133: update parts of the stdlib to fall back to `__spec__.loader` when ...Brett Cannon2020-11-071-2/+5
* bpo-38605: Make 'from __future__ import annotations' the default (GH-20434)Batuhan Taskaya2020-10-061-2/+17
* bpo-40257: Revert changes to inspect.getdoc() (GH-20073)Serhiy Storchaka2020-05-181-17/+16
* bpo-35113: Fix inspect.getsource to return correct source for inner classes (...Karthikeyan Singaravelan2020-04-181-19/+46
* bpo-40257: Output object's own docstring in pydoc (GH-19479)Serhiy Storchaka2020-04-151-16/+17
* bpo-39957: Change Signature.parameters to OrderedDict (GH-18988)Jens Reidel2020-03-181-4/+4
* bpo-13487: Use sys.modules.copy() in inspect.getmodule() for thread safety. (...Gregory P. Smith2020-03-051-1/+1
* bpo-39775: inspect: Change Signature.parameters back to OrderedDict. (GH-18684)Inada Naoki2020-03-021-10/+12
* bpo-36350: inspect: Replace OrderedDict with dict. (GH-12412)Rémi Lapeyre2020-01-281-21/+18
* Remove unnecessary variable definition (GH-17368)Batuhan Taşkaya2019-11-241-1/+0
* bpo-38478: Correctly handle keyword argument with same name as positional-onl...Pablo Galindo2019-10-151-1/+1
* bpo-34706: Preserve subclassing in inspect.Signature.from_callable (GH-16108)Gregory P. Smith2019-09-131-1/+1
* bpo-38059: Using sys.exit() over exit() in inspect.py (GH-15666)Alan Yee2019-09-091-2/+2
* bpo-38026: fix inspect.getattr_static (GH-15676)Inada Naoki2019-09-051-2/+2
* bpo-37173: Show passed class in inspect.getfile error (GH-13861)Philipp A2019-06-081-3/+3
* bpo-37122: Make co->co_argcount represent the total number of positonal argum...Pablo Galindo2019-06-011-18/+10
* bpo-37116: Use PEP 570 syntax for positional-only parameters. (GH-13700)Serhiy Storchaka2019-06-011-7/+5
* bpo-36751: Undeprecate getfullargspec (GH-13245)Pablo Galindo2019-05-161-6/+0
* bpo-36542: Allow to overwrite the signature for Python functions. (GH-12705)Serhiy Storchaka2019-05-061-2/+7
* MNT: set stacklevel in the getfullargspec deprecation warning to 2 (GH-13029)Thomas A Caswell2019-05-011-1/+1
* bpo-36751: Deprecate getfullargspec and report positional-only args as regula...Pablo Galindo2019-04-301-25/+18
* bpo-36540: PEP 570 -- Implementation (GH-12701)Pablo Galindo2019-04-291-37/+59
* bpo-33261: guard access to __code__ attribute in inspect (GH-6448)Jeroen Demeyer2019-04-021-9/+14
* bpo-36326: Let inspect.getdoc() find docstrings for __slots__ (GH-12498)Raymond Hettinger2019-03-251-1/+4