commit | 3d89057ff80261e8960420305b432cd9783bb4e2 | [log] [tgz] |
---|---|---|
author | Raymond Hettinger <python@rcn.com> | Thu Jun 02 23:40:24 2011 -0700 |
committer | Raymond Hettinger <python@rcn.com> | Thu Jun 02 23:40:24 2011 -0700 |
tree | 84778cfe5a4fd0db53d202bae6b9c5b1cdcd648b | |
parent | 9028928156b187eb0d684233960c568b46f11088 [diff] [blame] |
Fix named tuples to work with vars().
diff --git a/Misc/NEWS b/Misc/NEWS index baf235c..16a0f29 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -22,6 +22,8 @@ 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.