From: Skip Montanaro Date: Wed, 28 Feb 2001 01:03:48 +0000 (+0000) Subject: added missing element to __all__ X-Git-Tag: v2.1b1~147 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ff443a51ebdb290fb329213e887eda54a2eaad62;p=python added missing element to __all__ --- 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 # ===============