summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2009-05-27 00:38:24 (GMT)
committerRaymond Hettinger <python@rcn.com>2009-05-27 00:38:24 (GMT)
commit089ba7f69012a51c3c809a4d7bde62d67ebbb537 (patch)
tree182fec8a6a1ad8e89bd9605c8c3c11b302bbc7b5 /Misc
parente261ae0d46d610899fd0822ae9277dd6df54fefe (diff)
downloadcpython-089ba7f69012a51c3c809a4d7bde62d67ebbb537.zip
cpython-089ba7f69012a51c3c809a4d7bde62d67ebbb537.tar.gz
cpython-089ba7f69012a51c3c809a4d7bde62d67ebbb537.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 98fa1b4..626b512 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -37,6 +37,9 @@ Library
- Issue #6118: urllib.parse.quote_plus ignored the encoding and errors
arguments for strings with a space in them.
+- collections.namedtuple() was not working with the following field
+ names: cls, self, tuple, itemgetter, and property.
+
- In unittest, using a skipping decorator on a class is now equivalent to
skipping every test on the class. The ClassTestSuite class has been removed.