summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorLarry Hastings <larry@hastings.org>2012-06-22 22:19:35 (GMT)
committerLarry Hastings <larry@hastings.org>2012-06-22 22:19:35 (GMT)
commit7c7cbfc00fc8d655fc267ff57f8084357858b1db (patch)
treed0b4255a985e54f873e30c55fb5e1cf8e3cf3d86 /Misc
parent8e0d25504c5a7309bdebda33b3aa9b8213896907 (diff)
downloadcpython-7c7cbfc00fc8d655fc267ff57f8084357858b1db.zip
cpython-7c7cbfc00fc8d655fc267ff57f8084357858b1db.tar.gz
cpython-7c7cbfc00fc8d655fc267ff57f8084357858b1db.tar.bz2
Issue #15008: Implement PEP 362 "Signature Objects".
Patch by Yury Selivanov.
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 48baa45..c65c71e 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -40,6 +40,9 @@ Core and Builtins
Library
-------
+- Issue #15008: Implement PEP 362 "Signature Objects".
+ Patch by Yury Selivanov.
+
- Issue: #15138: base64.urlsafe_{en,de}code() are now 3-4x faster.
- Issue #444582: Add shutil.which, for finding programs on the system path.