mirror of
https://github.com/python/cpython.git
synced 2025-08-31 05:58:33 +00:00
bpo-41521: Replace whitelist/blacklist with allowlist/denylist (GH-21822)
Automerge-Triggered-By: @tiran
This commit is contained in:
parent
1d541c25c8
commit
fabd7bb8e0
12 changed files with 36 additions and 36 deletions
|
@ -197,11 +197,11 @@ class NetworkedNNTPTestsMixin:
|
|||
self.assertTrue(resp.startswith("220 "), resp)
|
||||
self.check_article_resp(resp, article, art_num)
|
||||
# Tolerate running the tests from behind a NNTP virus checker
|
||||
blacklist = lambda line: line.startswith(b'X-Antivirus')
|
||||
denylist = lambda line: line.startswith(b'X-Antivirus')
|
||||
filtered_head_lines = [line for line in head.lines
|
||||
if not blacklist(line)]
|
||||
if not denylist(line)]
|
||||
filtered_lines = [line for line in article.lines
|
||||
if not blacklist(line)]
|
||||
if not denylist(line)]
|
||||
self.assertEqual(filtered_lines, filtered_head_lines + [b''] + body.lines)
|
||||
|
||||
def test_capabilities(self):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue