Skip to content

Commit 8ed79bd

Browse files
committed
add a dummy parameter for support.skip_if_sanitizer
1 parent 0600ae6 commit 8ed79bd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/test/support/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,7 @@ def check_sanitizer(*, address=False, memory=False, ub=False):
427427
)
428428

429429

430-
def skip_if_sanitizer(reason=None, *, address=False, memory=False, ub=False):
430+
def skip_if_sanitizer(reason=None, *, address=False, memory=False, ub=False, thread=False):
431431
"""Decorator raising SkipTest if running with a sanitizer active."""
432432
if not reason:
433433
reason = 'not working with sanitizers active'

0 commit comments

Comments
 (0)