diff options
author | Skip Montanaro <skip@pobox.com> | 2001-02-28 01:03:48 (GMT) |
---|---|---|
committer | Skip Montanaro <skip@pobox.com> | 2001-02-28 01:03:48 (GMT) |
commit | ff443a51ebdb290fb329213e887eda54a2eaad62 (patch) | |
tree | fc8996ad5e9b375d0da839d6889a51780732cddc /Lib/cgi.py | |
parent | 6c0a0e153821b3fc056eb579b09ff8945ef6fe71 (diff) | |
download | cpython-ff443a51ebdb290fb329213e887eda54a2eaad62.zip cpython-ff443a51ebdb290fb329213e887eda54a2eaad62.tar.gz cpython-ff443a51ebdb290fb329213e887eda54a2eaad62.tar.bz2 |
added missing element to __all__
Diffstat (limited to 'Lib/cgi.py')
-rwxr-xr-x | Lib/cgi.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -43,7 +43,8 @@ import UserDict from StringIO import StringIO __all__ = ["MiniFieldStorage","FieldStorage","FormContentDict", - "SvFormContentDict","InterpFormContentDict","FormContent"] + "SvFormContentDict","InterpFormContentDict","FormContent", + "escape"] # Logging support # =============== |