diff options
author | Benjamin Peterson <benjamin@python.org> | 2015-05-25 21:24:26 -0500 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2015-05-25 21:24:26 -0500 |
commit | 4d7a8e298cb5786fd08b044974c42856b2ddfa2d (patch) | |
tree | 79b7546d657e7feaf6984a00afe5cf1b431e31b1 | |
parent | f26a146b8820733f0354365f1dacbf857564b0d9 (diff) | |
parent | b5e556d36c776a35a75ee1694ff21c265a7a256d (diff) | |
download | cpython-4d7a8e298cb5786fd08b044974c42856b2ddfa2d.tar.gz |
merge 3.2
-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 057e90b86c..d823d040a1 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.3.6" -#--end constants-- +import sys + +__version__ = sys.version[:sys.version.index(' ')] |