diff options
author | Greg Ward <gward@python.net> | 2003-01-04 21:54:26 +0000 |
---|---|---|
committer | Greg Ward <gward@python.net> | 2003-01-04 21:54:26 +0000 |
commit | 5bd844e20f7faf4c9c7c9eda6b92ba48a44af33c (patch) | |
tree | 41df823e6c1ddb1087f1b0605800003c544f400b | |
parent | 8afa3a3092b5f8ca37d9dca0823edd3d3253ffc9 (diff) | |
download | cpython-git-5bd844e20f7faf4c9c7c9eda6b92ba48a44af33c.tar.gz |
Tweak __version__ -- the current code is between Optik 1.4 and 1.4.1.
-rw-r--r-- | Lib/optparse.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/optparse.py b/Lib/optparse.py index e77e421268..517376a7bc 100644 --- a/Lib/optparse.py +++ b/Lib/optparse.py @@ -42,7 +42,7 @@ import sys, os import types import textwrap -__version__ = "1.4" +__version__ = "1.4+" class OptParseError (Exception): def __init__ (self, msg): |