summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2011-06-03 06:40:24 (GMT)
committerRaymond Hettinger <python@rcn.com>2011-06-03 06:40:24 (GMT)
commit3d89057ff80261e8960420305b432cd9783bb4e2 (patch)
tree84778cfe5a4fd0db53d202bae6b9c5b1cdcd648b /Misc
parent9028928156b187eb0d684233960c568b46f11088 (diff)
downloadcpython-3d89057ff80261e8960420305b432cd9783bb4e2.zip
cpython-3d89057ff80261e8960420305b432cd9783bb4e2.tar.gz
cpython-3d89057ff80261e8960420305b432cd9783bb4e2.tar.bz2
Fix named tuples to work with vars().
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index baf235c..16a0f29 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -22,6 +22,8 @@ Core and Builtins
Library
-------
+- Named tuples now work correctly with vars().
+
- Issue #12085: Fix an attribute error in subprocess.Popen destructor if the
constructor has failed, e.g. because of an undeclared keyword argument. Patch
written by Oleg Oshmyan.