From fdd70ae4531226101548e7989a0f54e3f2fa48e1 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Mon, 25 May 2015 21:24:00 -0500 Subject: [PATCH] keep distutils version in sync with python version automatically --- Lib/distutils/__init__.py | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/Lib/distutils/__init__.py b/Lib/distutils/__init__.py index 037089633f..d823d040a1 100644 --- a/Lib/distutils/__init__.py +++ b/Lib/distutils/__init__.py @@ -8,12 +8,6 @@ used from a setup script as setup (...) """ -__revision__ = "$Id$" +import sys -# Distutils version -# -# Updated automatically by the Python release process. -# -#--start constants-- -__version__ = "2.7.10" -#--end constants-- +__version__ = sys.version[:sys.version.index(' ')] -- 2.50.1