diff options
author | Martin Panter <vadmium+py@gmail.com> | 2016-06-06 01:53:28 +0000 |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2016-06-06 01:53:28 +0000 |
commit | 1cd277224685654a82489881f90d93a32571b7b2 (patch) | |
tree | 041168ea379f32ef50050a5d1895a5047aa35e97 /Lib/test/test_cgi.py | |
parent | 2e747c4b8f9db654ac3ee1411ab53e8774309595 (diff) | |
download | cpython-git-1cd277224685654a82489881f90d93a32571b7b2.tar.gz |
Issue #27105: Add cgi.test() to __all__, based on Jacek Kołodziej’s patch
Diffstat (limited to 'Lib/test/test_cgi.py')
-rw-r--r-- | Lib/test/test_cgi.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Lib/test/test_cgi.py b/Lib/test/test_cgi.py index ab9f6ab6a5..164784923a 100644 --- a/Lib/test/test_cgi.py +++ b/Lib/test/test_cgi.py @@ -7,6 +7,7 @@ import unittest import warnings from collections import namedtuple from io import StringIO, BytesIO +from test import support class HackedSysModule: # The regression test will have real values in sys.argv, which @@ -473,6 +474,11 @@ this is the content of the fake file cgi.parse_header('form-data; name="files"; filename="fo\\"o;bar"'), ("form-data", {"name": "files", "filename": 'fo"o;bar'})) + def test_all(self): + blacklist = {"logfile", "logfp", "initlog", "dolog", "nolog", + "closelog", "log", "maxlen", "valid_boundary"} + support.check__all__(self, cgi, blacklist=blacklist) + BOUNDARY = "---------------------------721837373350705526688164684" |