diff options
author | Benjamin Peterson <benjamin@python.org> | 2015-05-26 02:25:27 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2015-05-26 02:25:27 (GMT) |
commit | 39bdb9e60042253cf0a2c83768acaa8b0ab6e781 (patch) | |
tree | 70f0c52d08a73950dbfa822c809a1ea85c9e4550 | |
parent | d0c2a20b24a1317343620c0f4e318733745b97df (diff) | |
parent | 09479d0b946bd711c45fc221edacc53dcd506637 (diff) | |
download | cpython-39bdb9e60042253cf0a2c83768acaa8b0ab6e781.zip cpython-39bdb9e60042253cf0a2c83768acaa8b0ab6e781.tar.gz cpython-39bdb9e60042253cf0a2c83768acaa8b0ab6e781.tar.bz2 |
Merge 3.5
-rw-r--r-- | Lib/distutils/__init__.py | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/Lib/distutils/__init__.py b/Lib/distutils/__init__.py index 686ca1d..d823d04 100644 --- a/Lib/distutils/__init__.py +++ b/Lib/distutils/__init__.py @@ -8,10 +8,6 @@ used from a setup script as setup (...) """ -# Distutils version -# -# Updated automatically by the Python release process. -# -#--start constants-- -__version__ = "3.5.0b1" -#--end constants-- +import sys + +__version__ = sys.version[:sys.version.index(' ')] |