summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2016-08-16 17:55:43 (GMT)
committerRaymond Hettinger <python@rcn.com>2016-08-16 17:55:43 (GMT)
commit6538b430cfa3b076da2f9320bb86aaa3c3c7bcf5 (patch)
treeab705c5a5f2fd6c4b275b038570ccb85e3d54396 /Misc
parent3ee933f1c34755bb210e23942d22649a0c38bd23 (diff)
downloadcpython-6538b430cfa3b076da2f9320bb86aaa3c3c7bcf5.zip
cpython-6538b430cfa3b076da2f9320bb86aaa3c3c7bcf5.tar.gz
cpython-6538b430cfa3b076da2f9320bb86aaa3c3c7bcf5.tar.bz2
Issue #25628: Make namedtuple "rename" and "verbose" parameters keyword-only.
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 1e2a7b7..1d1bbd8 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -73,6 +73,9 @@ Library
to ref count problem introduced in code for Issue #27038 in 3.6.0a3.
Patch by Xiang Zhang.
+- Issue #25628: The *verbose* and *rename* parameters for collections.namedtuple
+ are now keyword-only.
+
- Issue #12345: Add mathemathical constant tau to math and cmath. See also
PEP 628.