summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2011-06-01 01:52:17 (GMT)
committerBenjamin Peterson <benjamin@python.org>2011-06-01 01:52:17 (GMT)
commit8c6f88efa2371addacc2acf5cc4634974160406c (patch)
treef0bd5af1eb106bab7fdb893fcd9039ac42ed5a74 /Misc
parent9e3e1c6e4e98b7568fcb29708aeac88bc677c62c (diff)
downloadcpython-8c6f88efa2371addacc2acf5cc4634974160406c.zip
cpython-8c6f88efa2371addacc2acf5cc4634974160406c.tar.gz
cpython-8c6f88efa2371addacc2acf5cc4634974160406c.tar.bz2
remove __version__s dependent on subversion keyword expansion (closes #12221)
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 b3d21f8..63a9ded 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -184,6 +184,10 @@ Core and Builtins
Library
-------
+- Issue #12221: Remove __version__ attributes from pyexpat, pickle, tarfile,
+ pydoc, tkinter, and xml.parsers.expat. This were useless version constants
+ left over from the Mercurial transition
+
- 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.