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: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=582a8701cbef58a6512444b94c6e76e717c2fa25;p=python Added __version__ to store the Distutils version number. --- diff --git a/Lib/distutils/__init__.py b/Lib/distutils/__init__.py index 1f23b972e4..9305554999 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"