summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorNick Coghlan <ncoghlan@gmail.com>2014-08-17 04:01:19 (GMT)
committerNick Coghlan <ncoghlan@gmail.com>2014-08-17 04:01:19 (GMT)
commitf9e227e5a9d7a74393ef259c861660c3d1f36f83 (patch)
treee5724bd160bb1669ad627a126a08bb21505153be /Misc
parenteed671910f993571b2be137abbfafea105d4768f (diff)
downloadcpython-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/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 66fc45e..ffc3984 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.