From: Greg Ward Date: Mon, 10 Apr 2000 00:02:16 +0000 (+0000) Subject: Added __version__ to store the Distutils version number. X-Git-Tag: v1.6a2~63 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=582a8701cbef58a6512444b94c6e76e717c2fa25;p=thirdparty%2FPython%2Fcpython.git Added __version__ to store the Distutils version number. --- diff --git a/Lib/distutils/__init__.py b/Lib/distutils/__init__.py index 1f23b972e49f..930555499966 100644 --- a/Lib/distutils/__init__.py +++ b/Lib/distutils/__init__.py @@ -9,3 +9,5 @@ used from a setup script as """ __revision__ = "$Id$" + +__version__ = "0.8"