summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorEric Smith <eric@trueblade.com>2009-02-06 00:48:26 (GMT)
committerEric Smith <eric@trueblade.com>2009-02-06 00:48:26 (GMT)
commit81fe09344cfa290efd6041269e70a2d0b629a7c8 (patch)
tree7306857a97621c647da9f1f0af6ec1b71beae55b /Misc
parent5dde357c9eabf04cd183f5cda485ec4af9bbc2ef (diff)
downloadcpython-81fe09344cfa290efd6041269e70a2d0b629a7c8.zip
cpython-81fe09344cfa290efd6041269e70a2d0b629a7c8.tar.gz
cpython-81fe09344cfa290efd6041269e70a2d0b629a7c8.tar.bz2
Implement issue #4285, convert sys.version_info to a named
tuple. Patch by Ross Light.
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 81115ed..6ec1269 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -149,6 +149,9 @@ Core and Builtins
Library
-------
+- Issue #4285: Change sys.version_info to be a named tuple. Patch by
+ Ross Light.
+
- Issue #1276768: The verbose option was not used in the code of
distutils.file_util and distutils.dir_util.