summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorLarry Hastings <larry@hastings.org>2014-01-07 20:21:08 (GMT)
committerLarry Hastings <larry@hastings.org>2014-01-07 20:21:08 (GMT)
commit9026113fd4acbb2fb77a900ae7bd921eebcc29c4 (patch)
treecc529474ed8aeed9d1e89f23b131be7e8ea94d16 /Misc
parent77561cccb277f5347fc1c41a2fb06b7cc3194b8a (diff)
downloadcpython-9026113fd4acbb2fb77a900ae7bd921eebcc29c4.zip
cpython-9026113fd4acbb2fb77a900ae7bd921eebcc29c4.tar.gz
cpython-9026113fd4acbb2fb77a900ae7bd921eebcc29c4.tar.bz2
Issue #20157: When Argument Clinic renames a parameter because its name
collides with a C keyword, it no longer exposes that rename to PyArg_Parse.
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 c46fb10..4be6cde 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -21,6 +21,9 @@ Library
Tools/Demos
-----------
+- Issue #20157: When Argument Clinic renames a parameter because its name
+ collides with a C keyword, it no longer exposes that rename to PyArg_Parse.
+
- Issue #20141: Improved Argument Clinic's support for the PyArg_Parse "O!"
format unit.