Skip to content

Commit e1900db

Browse files
[3.13] Replace strict_concatenate = True with extra_checks = True (pythonGH-126391) (python#129286)
Replace `strict_concatenate = True` with `extra_checks = True` (pythonGH-126391) (cherry picked from commit cc4f0a2) Co-authored-by: sobolevn <[email protected]>
1 parent aa1beed commit e1900db

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Tools/build/mypy.ini

+1-1
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

+1-1
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

+1-1
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)