From ff443a51ebdb290fb329213e887eda54a2eaad62 Mon Sep 17 00:00:00 2001 From: Skip Montanaro Date: Wed, 28 Feb 2001 01:03:48 +0000 Subject: [PATCH] added missing element to __all__ --- Lib/cgi.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Lib/cgi.py b/Lib/cgi.py index 9c38359d4bf..61b25cd72da 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 # ===============