summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2009-05-27 02:17:26 (GMT)
committerRaymond Hettinger <python@rcn.com>2009-05-27 02:17:26 (GMT)
commit4f1e16338d8b467880589277da447d7a6c725d99 (patch)
tree1516f911b2b9a605f4c5878f9ef569f478fbe7c1 /Misc
parent9c270c0362ac0803a9efacc3e01eafc16a590f77 (diff)
downloadcpython-4f1e16338d8b467880589277da447d7a6c725d99.zip
cpython-4f1e16338d8b467880589277da447d7a6c725d99.tar.gz
cpython-4f1e16338d8b467880589277da447d7a6c725d99.tar.bz2
Fix field name conflicts for named tuples.
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 6efa49d..148d130 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -53,6 +53,9 @@ Library
- Issue #6050: Don't fail extracting a directory from a zipfile if
the directory already exists.
+- collections.namedtuple() was not working with the following field
+ names: cls, self, tuple, itemgetter, and property.
+
- Issue #1309352: fcntl now converts its third arguments to a C `long` rather
than an int, which makes some operations possible under 64-bit Linux (e.g.
DN_MULTISHOT with F_NOTIFY).