aboutsummaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* bpo-42901: [Enum] move member creation to `__set_name__` (GH-24196)Ethan Furman2021-01-121-1/+1
* bpo-41960: Add globalns and localns parameters to inspect.signature and Signa...Batuhan Taskaya2020-12-241-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-061-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-041-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
* bpo-34890: Make iscoroutinefunction, isgeneratorfunction and isasyncgenfuncti...Pablo Galindo2018-10-261-9/+12
* bpo-33594: Add deprecation info in inspect.py module (GH-7036)Matthias Bussonnier2018-10-201-7/+15
* bpo-34871: inspect: Don't pollute sys.modules (GH-9696)INADA Naoki2018-10-041-1/+1
* bpo-32892: Use ast.Constant instead of specific constant AST types. (GH-9445)Serhiy Storchaka2018-09-271-8/+2
* bpo-6700: Fix inspect.getsourcelines for module level frames/tracebacks (GH-8...Vladimir Matveev2018-08-241-1/+6
* bpo-33582: Remove duplicate space in inspect.formatargspec() deprecation warn...Zackery Spytz2018-06-111-1/+1
* bpo-33582: Emit deprecation warning for `formatargspec` (GH-6994)Matthias Bussonnier2018-06-111-2/+14
* bpo-33197: Add description property for _ParameterKind. (GH-7206)Dong-hee Na2018-06-071-6/+7
* bpo-33197: Update a error message of invalid inspect.Parameters. (GH-6636)Dong-hee Na2018-05-291-16/+31
* bpo-26103: Fix inspect.isdatadescriptor() and a data descriptor definition. (...Aaron Hall, MBA2018-05-211-2/+2
* bpo-33009: Fix inspect.signature() for single-parameter partialmethods. (GH-6...Yury Selivanov2018-03-061-1/+2
* bpo-32991: Restore expectation that inspect.getfile raises TypeError on names...Jason R. Coombs2018-03-051-2/+2
* Cleanup inspectSrinivas Reddy Thatiparthy (శ్రీనివాస్ రెడ్డి తాటిపర్తి)2018-02-091-4/+4
* bpo-32678: inspect: Import ast lazily (GH-5344)INADA Naoki2018-01-271-1/+3
* bpo-32265: Classify class and static methods of builtin types. (#4776)Serhiy Storchaka2017-12-151-2/+2
* bpo-32157: Removed explicit quotes around %r and {!r}. (#4582)Serhiy Storchaka2017-11-281-2/+2
* bpo-32018: Fix inspect.signature repr to follow PEP 8 (#4408)Dong-hee Na2017-11-151-2/+5
* bpo-30639: Lazily compute repr for error (#2132)Thomas Kluyver2017-10-241-2/+3
* bpo-25532: Protect against infinite loops in inspect.unwrap() (#1717)Thomas Kluyver2017-05-231-3/+6
* bpo-30296 Remove unnecessary tuples, lists, sets, and dicts (#1489)Jon Dufresne2017-05-181-1/+1
* bpo-30149: Fix partialmethod without explicit self parameter (#1308)Dong-hee Na2017-05-171-4/+9
* bpo-29822: Make inspect.isabstract() work during __init_subclass__. (#678)Nate2017-04-241-1/+22