mirror of
https://github.com/python/cpython.git
synced 2025-08-19 08:11:46 +00:00
Minor tweak to unittest command line usage message
This commit is contained in:
parent
d43b63fed3
commit
3dd9f40d6d
1 changed files with 2 additions and 1 deletions
|
@ -98,7 +98,8 @@ class TestProgram(object):
|
||||||
def usageExit(self, msg=None):
|
def usageExit(self, msg=None):
|
||||||
if msg:
|
if msg:
|
||||||
print msg
|
print msg
|
||||||
usage = {'progName': self.progName, 'catchbreak': '', 'failfast': ''}
|
usage = {'progName': self.progName, 'catchbreak': '', 'failfast': '',
|
||||||
|
'buffer': ''}
|
||||||
if self.failfast != False:
|
if self.failfast != False:
|
||||||
usage['failfast'] = FAILFAST
|
usage['failfast'] = FAILFAST
|
||||||
if self.catchbreak != False:
|
if self.catchbreak != False:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue