Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4421e42 commit 178ab69Copy full SHA for 178ab69
Lib/test/libregrtest/runtests.py
@@ -70,7 +70,9 @@ class HuntRefleak:
70
filename: StrPath
71
72
def bisect_cmd_args(self) -> list[str]:
73
- return ["-R", f"{self.warmups}:{self.runs}:{self.filename}"]
+ # Ignore filename since it can contain colon (":"),
74
+ # and usually it's not used. Use the default filename.
75
+ return ["-R", f"{self.warmups}:{self.runs}:"]
76
77
78
@dataclasses.dataclass(slots=True, frozen=True)
0 commit comments