| Commit message (Expand) | Author | Age | Files | Lines |
* | bpo-35113: Fix inspect.getsource to return correct source for inner classes (... | Karthikeyan Singaravelan | 2020-04-18 | 1 | -19/+46 |
|
|
* | bpo-40257: Output object's own docstring in pydoc (GH-19479) | Serhiy Storchaka | 2020-04-15 | 1 | -16/+17 |
|
|
* | bpo-39957: Change Signature.parameters to OrderedDict (GH-18988) | Jens Reidel | 2020-03-18 | 1 | -4/+4 |
|
|
* | bpo-13487: Use sys.modules.copy() in inspect.getmodule() for thread safety. (... | Gregory P. Smith | 2020-03-05 | 1 | -1/+1 |
|
|
* | bpo-39775: inspect: Change Signature.parameters back to OrderedDict. (GH-18684) | Inada Naoki | 2020-03-02 | 1 | -10/+12 |
|
|
* | bpo-36350: inspect: Replace OrderedDict with dict. (GH-12412) | Rémi Lapeyre | 2020-01-28 | 1 | -21/+18 |
|
|
* | Remove unnecessary variable definition (GH-17368) | Batuhan Taşkaya | 2019-11-24 | 1 | -1/+0 |
|
|
* | bpo-38478: Correctly handle keyword argument with same name as positional-onl... | Pablo Galindo | 2019-10-15 | 1 | -1/+1 |
|
|
* | bpo-34706: Preserve subclassing in inspect.Signature.from_callable (GH-16108) | Gregory P. Smith | 2019-09-13 | 1 | -1/+1 |
|
|
* | bpo-38059: Using sys.exit() over exit() in inspect.py (GH-15666) | Alan Yee | 2019-09-09 | 1 | -2/+2 |
|
|
* | bpo-38026: fix inspect.getattr_static (GH-15676) | Inada Naoki | 2019-09-05 | 1 | -2/+2 |
|
|
* | bpo-37173: Show passed class in inspect.getfile error (GH-13861) | Philipp A | 2019-06-08 | 1 | -3/+3 |
|
|
* | bpo-37122: Make co->co_argcount represent the total number of positonal argum... | Pablo Galindo | 2019-06-01 | 1 | -18/+10 |
|
|
* | bpo-37116: Use PEP 570 syntax for positional-only parameters. (GH-13700) | Serhiy Storchaka | 2019-06-01 | 1 | -7/+5 |
|
|
* | bpo-36751: Undeprecate getfullargspec (GH-13245) | Pablo Galindo | 2019-05-16 | 1 | -6/+0 |
|
|
* | bpo-36542: Allow to overwrite the signature for Python functions. (GH-12705) | Serhiy Storchaka | 2019-05-06 | 1 | -2/+7 |
|
|
* | MNT: set stacklevel in the getfullargspec deprecation warning to 2 (GH-13029) | Thomas A Caswell | 2019-05-01 | 1 | -1/+1 |
|
|
* | bpo-36751: Deprecate getfullargspec and report positional-only args as regula... | Pablo Galindo | 2019-04-30 | 1 | -25/+18 |
|
|
* | bpo-36540: PEP 570 -- Implementation (GH-12701) | Pablo Galindo | 2019-04-29 | 1 | -37/+59 |
|
|
* | bpo-33261: guard access to __code__ attribute in inspect (GH-6448) | Jeroen Demeyer | 2019-04-02 | 1 | -9/+14 |
|
|
* | bpo-36326: Let inspect.getdoc() find docstrings for __slots__ (GH-12498) | Raymond Hettinger | 2019-03-25 | 1 | -1/+4 |
|
|
* | bpo-34890: Make iscoroutinefunction, isgeneratorfunction and isasyncgenfuncti... | Pablo Galindo | 2018-10-26 | 1 | -9/+12 |
|
|
* | bpo-33594: Add deprecation info in inspect.py module (GH-7036) | Matthias Bussonnier | 2018-10-19 | 1 | -7/+15 |
|
|
* | bpo-34871: inspect: Don't pollute sys.modules (GH-9696) | INADA Naoki | 2018-10-04 | 1 | -1/+1 |
|
|
* | bpo-32892: Use ast.Constant instead of specific constant AST types. (GH-9445) | Serhiy Storchaka | 2018-09-27 | 1 | -8/+2 |
|
|
* | bpo-6700: Fix inspect.getsourcelines for module level frames/tracebacks (GH-8... | Vladimir Matveev | 2018-08-24 | 1 | -1/+6 |
|
|
* | bpo-33582: Remove duplicate space in inspect.formatargspec() deprecation warn... | Zackery Spytz | 2018-06-12 | 1 | -1/+1 |
|
|
* | bpo-33582: Emit deprecation warning for `formatargspec` (GH-6994) | Matthias Bussonnier | 2018-06-11 | 1 | -2/+14 |
|
|
* | bpo-33197: Add description property for _ParameterKind. (GH-7206) | Dong-hee Na | 2018-06-08 | 1 | -6/+7 |
|
|
* | bpo-33197: Update a error message of invalid inspect.Parameters. (GH-6636) | Dong-hee Na | 2018-05-29 | 1 | -16/+31 |
|
|
* | bpo-26103: Fix inspect.isdatadescriptor() and a data descriptor definition. (... | Aaron Hall, MBA | 2018-05-20 | 1 | -2/+2 |
|
|
* | bpo-33009: Fix inspect.signature() for single-parameter partialmethods. (GH-6... | Yury Selivanov | 2018-03-06 | 1 | -1/+2 |
|
|
* | bpo-32991: Restore expectation that inspect.getfile raises TypeError on names... | Jason R. Coombs | 2018-03-05 | 1 | -2/+2 |
|
|
* | Cleanup inspect | Srinivas Reddy Thatiparthy (శ్రీనివాస్ రెడ్డి తాటిపర్తి) | 2018-02-09 | 1 | -4/+4 |
|
|
* | bpo-32678: inspect: Import ast lazily (GH-5344) | INADA Naoki | 2018-01-27 | 1 | -1/+3 |
|
|
* | bpo-32265: Classify class and static methods of builtin types. (#4776) | Serhiy Storchaka | 2017-12-15 | 1 | -2/+2 |
|
|
* | bpo-32157: Removed explicit quotes around %r and {!r}. (#4582) | Serhiy Storchaka | 2017-11-28 | 1 | -2/+2 |
|
|
* | bpo-32018: Fix inspect.signature repr to follow PEP 8 (#4408) | Dong-hee Na | 2017-11-15 | 1 | -2/+5 |
|
|
* | bpo-30639: Lazily compute repr for error (#2132) | Thomas Kluyver | 2017-10-24 | 1 | -2/+3 |
|
|
* | bpo-25532: Protect against infinite loops in inspect.unwrap() (#1717) | Thomas Kluyver | 2017-05-23 | 1 | -3/+6 |
|
|
* | bpo-30296 Remove unnecessary tuples, lists, sets, and dicts (#1489) | Jon Dufresne | 2017-05-18 | 1 | -1/+1 |
|
|
* | bpo-30149: Fix partialmethod without explicit self parameter (#1308) | Dong-hee Na | 2017-05-17 | 1 | -4/+9 |
|
|
* | bpo-29822: Make inspect.isabstract() work during __init_subclass__. (#678) | Nate | 2017-04-24 | 1 | -1/+22 |
|
|
* | bpo-26985: Add missing info of code object in inspect documentation (GH-1090) | Xiang Zhang | 2017-04-13 | 1 | -12/+18 |
|
|
* | Issue #15812: Merge from 3.5 | Berker Peksag | 2017-01-03 | 1 | -1/+0 |
|\ |
|
| * | Issue #15812: Delete redundant max(start, 0) | Berker Peksag | 2017-01-03 | 1 | -1/+0 |
|
|
* | | Issue #15812: Merge from 3.5 | Berker Peksag | 2017-01-02 | 1 | -1/+1 |
|\ \
| |/ |
|
| * | Issue #15812: inspect.getframeinfo() now correctly shows the first line of a ... | Berker Peksag | 2017-01-02 | 1 | -1/+1 |
|
|
* | | Issue #27172: Undeprecate inspect.getfullargspec() | Nick Coghlan | 2016-12-02 | 1 | -17/+25 |
|
|
* | | Merge 3.5 (issue #28639) | Yury Selivanov | 2016-11-09 | 1 | -2/+2 |
|\ \
| |/ |
|