mirror of
https://github.com/python/cpython.git
synced 2025-08-28 04:35:02 +00:00
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
1 changed files with 6 additions and 3 deletions
|
@ -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
|
||||
# ===============
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue