diff options
author | Nick Coghlan <ncoghlan@gmail.com> | 2014-08-17 04:01:19 (GMT) |
---|---|---|
committer | Nick Coghlan <ncoghlan@gmail.com> | 2014-08-17 04:01:19 (GMT) |
commit | f9e227e5a9d7a74393ef259c861660c3d1f36f83 (patch) | |
tree | e5724bd160bb1669ad627a126a08bb21505153be /Misc | |
parent | eed671910f993571b2be137abbfafea105d4768f (diff) | |
download | cpython-f9e227e5a9d7a74393ef259c861660c3d1f36f83.zip cpython-f9e227e5a9d7a74393ef259c861660c3d1f36f83.tar.gz cpython-f9e227e5a9d7a74393ef259c861660c3d1f36f83.tar.bz2 |
Issue #20184: Add signature introspection for 30 of the builtins
Also adds a test to test_inspect to track progress on builtin
introspection support, to ensure it doesn't regress in the future.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -10,6 +10,9 @@ Release date: TBA Core and Builtins ----------------- +- Issue #20184: Argument Clinic based signature introspection added for + 30 of the builtin functions. + - Issue #22116: C functions and methods (of the 'builtin_function_or_method' type) can now be weakref'ed. Patch by Wei Wu. |