Add a whole lot of stuff to __all__.
authorGuido van Rossum <guido@python.org>
Mon, 19 Mar 2001 13:40:44 +0000 (13:40 +0000)
committerGuido van Rossum <guido@python.org>
Mon, 19 Mar 2001 13:40:44 +0000 (13:40 +0000)
(Excluding the logging stuff, which doesn't lend itself to use via
"from cgi import *" -- it manipulates globals.)

Lib/cgi.py

index 61b25cd72da1ba12a6a931bf128771493b68868d..4fa696ff1dafe4dd3ea402285af3ce011fa8aa19 100755 (executable)
@@ -42,9 +42,12 @@ import rfc822
 import UserDict
 from StringIO import StringIO
 
-__all__ = ["MiniFieldStorage","FieldStorage","FormContentDict",
-           "SvFormContentDict","InterpFormContentDict","FormContent",
-           "escape"]
+__all__ = ["MiniFieldStorage", "FieldStorage", "FormContentDict",
+           "SvFormContentDict", "InterpFormContentDict", "FormContent",
+           "parse", "parse_qs", "parse_qsl", "parse_multipart",
+           "parse_header", "print_exception", "print_environ",
+           "print_form", "print_directory", "print_arguments",
+           "print_environ_usage", "escape"]
 
 # Logging support
 # ===============