diff options
author | Guido van Rossum <guido@python.org> | 1996-10-24 14:44:32 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-10-24 14:44:32 +0000 |
commit | 16d5b113f61a283490fa4fcde84c36696ed78883 (patch) | |
tree | 58fb0175fb80da4dda500113a573744347a389b8 /Lib/cgi.py | |
parent | 9ec053c4f954d902e9e8767844a74f9fe4a3884a (diff) | |
download | cpython-git-16d5b113f61a283490fa4fcde84c36696ed78883.tar.gz |
Fix truncated paragraph in doc string.
Bump version to 2.0.
Diffstat (limited to 'Lib/cgi.py')
-rwxr-xr-x | Lib/cgi.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Lib/cgi.py b/Lib/cgi.py index 8bc4177bc2..af5caba00e 100755 --- a/Lib/cgi.py +++ b/Lib/cgi.py @@ -136,7 +136,8 @@ Old classes ----------- These classes, present in earlier versions of the cgi module, are still -supported for backward compatibility. New applications should use the +supported for backward compatibility. New applications should use the +FieldStorage class. SvFormContentDict: single value form content as dictionary; assumes each field name occurs in the form only once. @@ -406,7 +407,7 @@ backwards compatible and debugging classes and functions? # " <== Emacs font-lock de-bogo-kludgificocity -__version__ = "2.0b4" +__version__ = "2.0" # Imports |