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.)
This commit is contained in:
Guido van Rossum 2001-03-19 13:40:44 +00:00
parent f531ad698c
commit a8423a95b8
1 changed files with 6 additions and 3 deletions

View File

@ -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
# ===============