summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2009-02-10 01:24:05 (GMT)
committerRaymond Hettinger <python@rcn.com>2009-02-10 01:24:05 (GMT)
commit322daea7c3ba7fa73b09ebd50a78078d23d318a5 (patch)
tree6b760626e3024d3f5af361c25eb72d0adac8e3c0 /Misc
parentc5eba1e4f72e36368c52f56ebf7a5dde00ca3ee0 (diff)
downloadcpython-322daea7c3ba7fa73b09ebd50a78078d23d318a5.zip
cpython-322daea7c3ba7fa73b09ebd50a78078d23d318a5.tar.gz
cpython-322daea7c3ba7fa73b09ebd50a78078d23d318a5.tar.bz2
Issue 1818: collections.namedtuple() to support automatic renaming of invalid fieldnames.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index c51315a..9003037 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -155,6 +155,10 @@ Library
- Issue #5122: Synchronize tk load failure check to prevent a potential
deadlock.
+- Issue #1818: collections.namedtuple() now supports a keyword argument
+ 'rename' which lets invalid fieldnames be automatically converted to
+ positional names in the form, _1, _2, ...
+
- Issue #4890: Handle empty text search pattern in Tkinter.Text.search.
- Issue #5170: Fixed Unicode output bug in logging and added test case.