]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Replace `strict_concatenate = True` with `extra_checks = True` (#126391)
authorsobolevn <mail@sobolevn.me>
Sat, 25 Jan 2025 09:44:23 +0000 (12:44 +0300)
committerGitHub <noreply@github.com>
Sat, 25 Jan 2025 09:44:23 +0000 (12:44 +0300)
Tools/build/mypy.ini
Tools/cases_generator/mypy.ini
Tools/clinic/mypy.ini

index cf1dac7fde5ac5a0bf1e425e40f57d700200e85f..0e5d6e874a72e576c63dbb76e6fecbd9aacccd9a 100644 (file)
@@ -8,6 +8,6 @@ python_version = 3.10
 
 # ...And be strict:
 strict = True
-strict_concatenate = True
+extra_checks = True
 enable_error_code = ignore-without-code,redundant-expr,truthy-bool,possibly-undefined
 warn_unreachable = True
index 8e5a31851c596e7c41884b6a631c2b0763dcfe04..e54349bf54a954cb1a5f20c408669cb33cfd9602 100644 (file)
@@ -8,7 +8,7 @@ python_version = 3.10
 
 # ...And be strict:
 strict = True
-strict_concatenate = True
+extra_checks = True
 enable_error_code = ignore-without-code,redundant-expr,truthy-bool,possibly-undefined
 warn_unreachable = True
 allow_redefinition = True
index b1fdad673c61a10a77f2615b2f67e000dae911a0..6520e05db0bc31c2c7148d084247124ee7ab4677 100644 (file)
@@ -7,6 +7,6 @@ python_version = 3.10
 
 # and be strict!
 strict = True
-strict_concatenate = True
+extra_checks = True
 enable_error_code = ignore-without-code,redundant-expr,truthy-bool
 warn_unreachable = True