diff options
| author | Victor Stinner <vstinner@python.org> | 2020-08-11 13:26:59 (GMT) |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-08-11 13:26:59 (GMT) |
| commit | fabd7bb8e0450f16ed5c5c0ad575aa413d65712d (patch) | |
| tree | 697881ab8dd38a990ebd68a018a20f08c2ab3c67 /Lib/test/test_httpservers.py | |
| parent | 1d541c25c8019f7a0b80b3e1b437abe171e40b65 (diff) | |
| download | cpython-fabd7bb8e0450f16ed5c5c0ad575aa413d65712d.zip cpython-fabd7bb8e0450f16ed5c5c0ad575aa413d65712d.tar.gz cpython-fabd7bb8e0450f16ed5c5c0ad575aa413d65712d.tar.bz2 | |
bpo-41521: Replace whitelist/blacklist with allowlist/denylist (GH-21822)
Automerge-Triggered-By: @tiran
Diffstat (limited to 'Lib/test/test_httpservers.py')
| -rw-r--r-- | Lib/test/test_httpservers.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_httpservers.py b/Lib/test/test_httpservers.py index a7e1719..2859abb 100644 --- a/Lib/test/test_httpservers.py +++ b/Lib/test/test_httpservers.py @@ -1189,9 +1189,9 @@ class SimpleHTTPRequestHandlerTestCase(unittest.TestCase): class MiscTestCase(unittest.TestCase): def test_all(self): expected = [] - blacklist = {'executable', 'nobody_uid', 'test'} + denylist = {'executable', 'nobody_uid', 'test'} for name in dir(server): - if name.startswith('_') or name in blacklist: + if name.startswith('_') or name in denylist: continue module_object = getattr(server, name) if getattr(module_object, '__module__', None) == 'http.server': |
