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:
parent
f531ad698c
commit
a8423a95b8
|
@ -42,9 +42,12 @@ import rfc822
|
||||||
import UserDict
|
import UserDict
|
||||||
from StringIO import StringIO
|
from StringIO import StringIO
|
||||||
|
|
||||||
__all__ = ["MiniFieldStorage","FieldStorage","FormContentDict",
|
__all__ = ["MiniFieldStorage", "FieldStorage", "FormContentDict",
|
||||||
"SvFormContentDict","InterpFormContentDict","FormContent",
|
"SvFormContentDict", "InterpFormContentDict", "FormContent",
|
||||||
"escape"]
|
"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
|
# Logging support
|
||||||
# ===============
|
# ===============
|
||||||
|
|
Loading…
Reference in New Issue