[Python-checkins] cpython (merge 3.2 -> 3.3): merge 3.2

benjamin.peterson python-checkins at python.org
Tue May 26 04:28:57 CEST 2015


https://hg.python.org/cpython/rev/c361e38f6576
changeset:   96290:c361e38f6576
branch:      3.3
parent:      96231:c7b3a50a2f01
parent:      96289:0cb037bb0f9a
user:        Benjamin Peterson <benjamin at python.org>
date:        Mon May 25 21:24:26 2015 -0500
summary:
  merge 3.2

files:
  Lib/distutils/__init__.py |  10 +++-------
  1 files changed, 3 insertions(+), 7 deletions(-)


diff --git a/Lib/distutils/__init__.py b/Lib/distutils/__init__.py
--- a/Lib/distutils/__init__.py
+++ b/Lib/distutils/__init__.py
@@ -8,10 +8,6 @@
    setup (...)
 """
 
-# Distutils version
-#
-# Updated automatically by the Python release process.
-#
-#--start constants--
-__version__ = "3.3.6"
-#--end constants--
+import sys
+
+__version__ = sys.version[:sys.version.index(' ')]

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list