summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/__init__.py
diff options
context:
space:
mode:
authorGreg Ward <gward@python.net>2000-04-10 00:02:16 (GMT)
committerGreg Ward <gward@python.net>2000-04-10 00:02:16 (GMT)
commit582a8701cbef58a6512444b94c6e76e717c2fa25 (patch)
tree79c594a55c5eb0af7a953b432301dadac82c8001 /Lib/distutils/__init__.py
parentc248baecb38b36565d4a960411a30824dea3c23a (diff)
downloadcpython-582a8701cbef58a6512444b94c6e76e717c2fa25.zip
cpython-582a8701cbef58a6512444b94c6e76e717c2fa25.tar.gz
cpython-582a8701cbef58a6512444b94c6e76e717c2fa25.tar.bz2
Added __version__ to store the Distutils version number.
Diffstat (limited to 'Lib/distutils/__init__.py')
-rw-r--r--Lib/distutils/__init__.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/distutils/__init__.py b/Lib/distutils/__init__.py
index 1f23b97..9305554 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"