diff options
| author | Greg Ward <gward@python.net> | 2000-04-10 00:02:16 (GMT) |
|---|---|---|
| committer | Greg Ward <gward@python.net> | 2000-04-10 00:02:16 (GMT) |
| commit | 582a8701cbef58a6512444b94c6e76e717c2fa25 (patch) | |
| tree | 79c594a55c5eb0af7a953b432301dadac82c8001 | |
| parent | c248baecb38b36565d4a960411a30824dea3c23a (diff) | |
| download | cpython-582a8701cbef58a6512444b94c6e76e717c2fa25.zip cpython-582a8701cbef58a6512444b94c6e76e717c2fa25.tar.gz cpython-582a8701cbef58a6512444b94c6e76e717c2fa25.tar.bz2 | |
Added __version__ to store the Distutils version number.
| -rw-r--r-- | Lib/distutils/__init__.py | 2 |
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" |
