Skip to content

Commit cc4f0a2

Browse files
authored
Replace strict_concatenate = True with extra_checks = True (python#126391)
1 parent a580838 commit cc4f0a2

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Tools/build/mypy.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ python_version = 3.10
88

99
# ...And be strict:
1010
strict = True
11-
strict_concatenate = True
11+
extra_checks = True
1212
enable_error_code = ignore-without-code,redundant-expr,truthy-bool,possibly-undefined
1313
warn_unreachable = True

Tools/cases_generator/mypy.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ python_version = 3.10
88

99
# ...And be strict:
1010
strict = True
11-
strict_concatenate = True
11+
extra_checks = True
1212
enable_error_code = ignore-without-code,redundant-expr,truthy-bool,possibly-undefined
1313
warn_unreachable = True
1414
allow_redefinition = True

Tools/clinic/mypy.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ python_version = 3.10
77

88
# and be strict!
99
strict = True
10-
strict_concatenate = True
10+
extra_checks = True
1111
enable_error_code = ignore-without-code,redundant-expr,truthy-bool
1212
warn_unreachable = True

0 commit comments

Comments
 (0)