summaryrefslogtreecommitdiffstats
path: root/Lib/optparse.py
diff options
context:
space:
mode:
authorGreg Ward <gward@python.net>2003-01-04 21:54:26 (GMT)
committerGreg Ward <gward@python.net>2003-01-04 21:54:26 (GMT)
commit5bd844e20f7faf4c9c7c9eda6b92ba48a44af33c (patch)
tree41df823e6c1ddb1087f1b0605800003c544f400b /Lib/optparse.py
parent8afa3a3092b5f8ca37d9dca0823edd3d3253ffc9 (diff)
downloadcpython-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.py2
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):