summaryrefslogtreecommitdiff
path: root/Lib/cgi.py
diff options
context:
space:
mode:
authorSkip Montanaro <skip@pobox.com>2001-02-28 01:03:48 +0000
committerSkip Montanaro <skip@pobox.com>2001-02-28 01:03:48 +0000
commitff443a51ebdb290fb329213e887eda54a2eaad62 (patch)
treefc8996ad5e9b375d0da839d6889a51780732cddc /Lib/cgi.py
parent6c0a0e153821b3fc056eb579b09ff8945ef6fe71 (diff)
downloadcpython-git-ff443a51ebdb290fb329213e887eda54a2eaad62.tar.gz
added missing element to __all__
Diffstat (limited to 'Lib/cgi.py')
-rwxr-xr-xLib/cgi.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/cgi.py b/Lib/cgi.py
index 9c38359d4b..61b25cd72d 100755
--- a/Lib/cgi.py
+++ b/Lib/cgi.py
@@ -43,7 +43,8 @@ import UserDict
from StringIO import StringIO
__all__ = ["MiniFieldStorage","FieldStorage","FormContentDict",
- "SvFormContentDict","InterpFormContentDict","FormContent"]
+ "SvFormContentDict","InterpFormContentDict","FormContent",
+ "escape"]
# Logging support
# ===============