diff options
author | Guido van Rossum <guido@python.org> | 2001-03-19 13:40:44 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2001-03-19 13:40:44 (GMT) |
commit | a8423a95b8746aa6b126a8242e84c1e24460b929 (patch) | |
tree | 9505f4c2700a2acac1edb6e0b3e63a2072caf29e | |
parent | f531ad698cc3ab00ed6d432c98dda59a2081a9f0 (diff) | |
download | cpython-a8423a95b8746aa6b126a8242e84c1e24460b929.zip cpython-a8423a95b8746aa6b126a8242e84c1e24460b929.tar.gz cpython-a8423a95b8746aa6b126a8242e84c1e24460b929.tar.bz2 |
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.)
-rwxr-xr-x | Lib/cgi.py | 9 |
1 files changed, 6 insertions, 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 # =============== |