diff options
author | Raymond Hettinger <python@rcn.com> | 2009-05-27 00:38:24 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2009-05-27 00:38:24 (GMT) |
commit | 089ba7f69012a51c3c809a4d7bde62d67ebbb537 (patch) | |
tree | 182fec8a6a1ad8e89bd9605c8c3c11b302bbc7b5 /Misc | |
parent | e261ae0d46d610899fd0822ae9277dd6df54fefe (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |