From: Guido van Rossum Date: Mon, 19 Mar 2001 13:40:44 +0000 (+0000) Subject: Add a whole lot of stuff to __all__. X-Git-Tag: v2.1b2~142 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a8423a95b8746aa6b126a8242e84c1e24460b929;p=thirdparty%2FPython%2Fcpython.git Add a whole lot of stuff to __all__. (Excluding the logging stuff, which doesn't lend itself to use via "from cgi import *" -- it manipulates globals.) --- diff --git a/Lib/cgi.py b/Lib/cgi.py index 61b25cd72da1..4fa696ff1daf 100755 --- a/Lib/cgi.py +++ b/Lib/cgi.py @@ -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 # ===============