diff options
author | Greg Ward <gward@python.net> | 2003-01-04 21:54:26 (GMT) |
---|---|---|
committer | Greg Ward <gward@python.net> | 2003-01-04 21:54:26 (GMT) |
commit | 5bd844e20f7faf4c9c7c9eda6b92ba48a44af33c (patch) | |
tree | 41df823e6c1ddb1087f1b0605800003c544f400b /Lib/optparse.py | |
parent | 8afa3a3092b5f8ca37d9dca0823edd3d3253ffc9 (diff) | |
download | cpython-5bd844e20f7faf4c9c7c9eda6b92ba48a44af33c.zip cpython-5bd844e20f7faf4c9c7c9eda6b92ba48a44af33c.tar.gz cpython-5bd844e20f7faf4c9c7c9eda6b92ba48a44af33c.tar.bz2 |
Tweak __version__ -- the current code is between Optik 1.4 and 1.4.1.
Diffstat (limited to 'Lib/optparse.py')
-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 e77e421..517376a 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): |