diff options
author | Raymond Hettinger <python@rcn.com> | 2009-05-27 02:17:26 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2009-05-27 02:17:26 (GMT) |
commit | 4f1e16338d8b467880589277da447d7a6c725d99 (patch) | |
tree | 1516f911b2b9a605f4c5878f9ef569f478fbe7c1 /Misc | |
parent | 9c270c0362ac0803a9efacc3e01eafc16a590f77 (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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). |