summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2010-08-08 01:13:42 (GMT)
committerRaymond Hettinger <python@rcn.com>2010-08-08 01:13:42 (GMT)
commitd331ce9e6686f180373853fef5d819f36d331d44 (patch)
tree56c8cc04e49237168a85545285f9cbcacf02ad55 /Misc
parenta6b76ba52e00c47eafba57362184f7779330154a (diff)
downloadcpython-d331ce9e6686f180373853fef5d819f36d331d44.zip
cpython-d331ce9e6686f180373853fef5d819f36d331d44.tar.gz
cpython-d331ce9e6686f180373853fef5d819f36d331d44.tar.bz2
Issue #9507: Named tuple repr will now automatically display the right
name in a tuple subclass.
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 4f99d70..c0e3fc7 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -24,6 +24,9 @@ Core and Builtins
Extensions
----------
+- Issue #9507: Named tuple repr will now automatically display the right
+ name in a tuple subclass.
+
- Issue #9324: Add parameter validation to signal.signal on Windows in order
to prevent crashes.