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: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ff443a51ebdb290fb329213e887eda54a2eaad62;p=thirdparty%2FPython%2Fcpython.git added missing element to __all__ --- diff --git a/Lib/cgi.py b/Lib/cgi.py index 9c38359d4bfc..61b25cd72da1 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 # ===============