From 582a8701cbef58a6512444b94c6e76e717c2fa25 Mon Sep 17 00:00:00 2001 From: Greg Ward Date: Mon, 10 Apr 2000 00:02:16 +0000 Subject: [PATCH] Added __version__ to store the Distutils version number. --- Lib/distutils/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Lib/distutils/__init__.py b/Lib/distutils/__init__.py index 1f23b972e49..93055549996 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"