Use keyword-only argument
This commit is contained in:
parent
d1c5da0b21
commit
991db268b2
@ -427,7 +427,7 @@ class TestCase:
|
|||||||
with open(tgt_file, "w", encoding=tgt_encoding) as f:
|
with open(tgt_file, "w", encoding=tgt_encoding) as f:
|
||||||
f.write(data)
|
f.write(data)
|
||||||
|
|
||||||
def cmd(self, cmdline, timeout=None):
|
def cmd(self, cmdline, *, timeout=None):
|
||||||
tmpdir = self.__tmpdir
|
tmpdir = self.__tmpdir
|
||||||
before = tmpdir.snapshot(self.__always_ignored_files)
|
before = tmpdir.snapshot(self.__always_ignored_files)
|
||||||
stdout_log = tmpdir.stdout_log()
|
stdout_log = tmpdir.stdout_log()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user