bpo-40462: fix variable and function names (GH-19832)

Automerge-Triggered-By: @vstinner
This commit is contained in:
Furkan Önder 2020-05-01 15:49:35 +03:00 committed by GitHub
parent 8727664557
commit 719e14d283
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 2 additions and 4 deletions

View file

@ -188,8 +188,6 @@ class TestCommandLineArgs(unittest.TestCase):
program = self.program
for arg, attr in (('buffer', 'buffer'), ('failfast', 'failfast'),
('catch', 'catchbreak')):
if attr == 'catch' and not hasInstallHandler:
continue
setattr(program, attr, None)
program.parseArgs([None])