summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_inspect.py
Commit message (Expand)AuthorAgeFilesLines
* bpo-29418: Implement inspect.ismethodwrapper and fix inspect.isroutine for ca...Hakan Çelik2022-02-161-3/+43
* bpo-40280: Address more test failures on Emscripten (GH-31050)Christian Heimes2022-02-051-0/+1
* bpo-46565: `del` loop vars that are leaking into module namespaces (GH-30993)Nikita Sobolev2022-02-031-1/+1
* bpo-46103: Fix inspect.getmembers to only get __bases__ from class (GH-30147)Weipeng Hong2022-01-231-0/+5
* bpo-43118: Fix bug in inspect.signature around 'base.__text_signature__' (GH-...Weipeng Hong2022-01-211-0/+11
* bpo-46411: Remove unnecessary calls to sys.exc_info() in tests (GH-30638)Irit Katriel2022-01-181-2/+2
* Remove spaces in empty lines (GH-30121)AN Long2021-12-151-1/+1
* bpo-27062: add `__all__` to inspect module (GH-30003)Kumar Aditya2021-12-101-0/+3
* bpo-30533:Add function inspect.getmembers_static that does not call propertie...Weipeng Hong2021-11-301-0/+17
* bpo-45406: make inspect.getmodule() return None when getabsfile() raises File...Irit Katriel2021-11-021-0/+9
* bpo-45438: format of inspect.Signature with generic builtins (#29212)Martin Rueckl2021-10-271-0/+11
* bpo-45320: Remove long-deprecated inspect methods (GH-28618)Hugo van Kemenade2021-10-201-94/+14
* bpo-45229: Remove test_main in many tests (GH-28405)Serhiy Storchaka2021-09-191-16/+2
* bpo-44808: fixes test for interactive inspect getsource of a class (GH-27571)andrei kulakov2021-08-031-12/+8
* bpo-44808: Fix test_inspect in refleak mode (GH-27544)Pablo Galindo Salgado2021-08-021-1/+2
* bpo-44648: Fix error type in inspect.getsource() in interactive session (GH-2...andrei kulakov2021-07-301-1/+16
* bpo-40897:Give priority to using the current class constructor in `inspect.si...Weipeng Hong2021-07-161-0/+41
* bpo-20684: Remove unused inspect._signature_get_bound_param (GH-21100)Anthony Sottile2021-05-221-7/+0
* bpo-43817: Add inspect.get_annotations(). (#25522)larryhastings2021-04-301-5/+238
* bpo-38605: Revert making 'from __future__ import annotations' the default (GH...Pablo Galindo2021-04-211-24/+28
* bpo-43651: PEP 597: Fix EncodingWarning in some tests (GH-25189)Inada Naoki2021-04-061-6/+6
* bpo-31861: Add aiter and anext to builtins (#23847)Joshua Bronson2021-03-231-0/+3
* bpo-41960: Add globalns and localns parameters to inspect.signature and Signa...Batuhan Taskaya2020-12-231-0/+20
* bpo-17735: inspect.findsource now raises OSError when co_lineno is out of ran...Irit Katriel2020-12-041-0/+11
* bpo-42116: Fix inspect.getsource handling of trailing comments (GH-23630)Irit Katriel2020-12-041-4/+19
* bpo-38605: Make 'from __future__ import annotations' the default (GH-20434)Batuhan Taskaya2020-10-061-24/+20
* bpo-40275: Use new test.support helper submodules in tests (GH-21727)Hai Shi2020-08-041-1/+3
* bpo-40257: Revert changes to inspect.getdoc() (GH-20073)Serhiy Storchaka2020-05-181-12/+3
* bpo-35113: Fix inspect.getsource to return correct source for inner classes (...Karthikeyan Singaravelan2020-04-181-0/+40
* bpo-40257: Output object's own docstring in pydoc (GH-19479)Serhiy Storchaka2020-04-151-3/+12
* bpo-39957: Change Signature.parameters to OrderedDict (GH-18988)Jens Reidel2020-03-181-1/+6
* bpo-36350: inspect: Replace OrderedDict with dict. (GH-12412)Rémi Lapeyre2020-01-281-0/+5
* bpo-38478: Correctly handle keyword argument with same name as positional-onl...Pablo Galindo2019-10-151-0/+10
* bpo-37206: Unrepresentable default values no longer represented as None. (GH-...Serhiy Storchaka2019-09-141-2/+2
* bpo-34706: Preserve subclassing in inspect.Signature.from_callable (GH-16108)Gregory P. Smith2019-09-131-2/+9
* bpo-37685: Use singletons ALWAYS_EQ and NEVER_EQ in more tests. (GH-15167)Serhiy Storchaka2019-08-081-11/+7
* bpo-37173: Show passed class in inspect.getfile error (GH-13861)Philipp A2019-06-081-0/+18
* bpo-37099: Silence DeprecationWarning in test_inspect (GH-13679)Xtreak2019-05-301-6/+9
* bpo-36785: PEP 574 implementation (GH-7076)Antoine Pitrou2019-05-261-6/+5
* bpo-36751: Undeprecate getfullargspec (GH-13245)Pablo Galindo2019-05-161-34/+20
* bpo-36542: Allow to overwrite the signature for Python functions. (GH-12705)Serhiy Storchaka2019-05-061-0/+11
* bpo-36751: Deprecate getfullargspec and report positional-only args as regula...Pablo Galindo2019-04-301-34/+42
* bpo-36540: PEP 570 -- Implementation (GH-12701)Pablo Galindo2019-04-291-12/+33
* bpo-33261: guard access to __code__ attribute in inspect (GH-6448)Jeroen Demeyer2019-04-021-0/+1
* bpo-36326: Let inspect.getdoc() find docstrings for __slots__ (GH-12498)Raymond Hettinger2019-03-251-0/+9
* bpo-34890: Make iscoroutinefunction, isgeneratorfunction and isasyncgenfuncti...Pablo Galindo2018-10-261-1/+26
* bpo-34871: Fix two typos in test_inspect.py (GH-9698)Chih-Hsuan Yen2018-10-041-2/+2
* bpo-6700: Fix inspect.getsourcelines for module level frames/tracebacks (GH-8...Vladimir Matveev2018-08-241-2/+12
* bpo-33582: Emit deprecation warning for `formatargspec` (GH-6994)Matthias Bussonnier2018-06-111-4/+6
* bpo-33197: Update a error message of invalid inspect.Parameters. (GH-6636)Dong-hee Na2018-05-291-3/+22