diff options
| author | Benjamin Peterson <benjamin@python.org> | 2015-05-25 21:24:00 -0500 |
|---|---|---|
| committer | Benjamin Peterson <benjamin@python.org> | 2015-05-25 21:24:00 -0500 |
| commit | b03856ab661ca8901cf068aa387e559f4358e3f6 (patch) | |
| tree | 6aab4f4e017711a72c2f561848fbf2398bda1547 /Lib | |
| parent | 9bd476ea57e1f77c5d117577d721bff806137a09 (diff) | |
| download | cpython-git-b03856ab661ca8901cf068aa387e559f4358e3f6.tar.gz | |
keep distutils version in sync with python version automatically
Diffstat (limited to 'Lib')
| -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 6eb79cb639..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.2.6" -#--end constants-- +import sys + +__version__ = sys.version[:sys.version.index(' ')] |
