Skip to content

Commit 74e0dff

Browse files
committed
Add hidden options to disable bytes promotion (#13952)
It might be useful to run mypy_primer without promotions in typeshed. This would give us more confidence in changes stemming from python/typeshed#9001
1 parent ec6d9d9 commit 74e0dff

File tree

4 files changed

+38
-3
lines changed

4 files changed

+38
-3
lines changed

mypy/main.py

+6
Original file line numberDiff line numberDiff line change
@@ -1121,6 +1121,12 @@ def add_invertible_flag(
11211121
parser.add_argument(
11221122
"--enable-incomplete-features", action="store_true", help=argparse.SUPPRESS
11231123
)
1124+
parser.add_argument(
1125+
"--disable-bytearray-promotion", action="store_true", help=argparse.SUPPRESS
1126+
)
1127+
parser.add_argument(
1128+
"--disable-memoryview-promotion", action="store_true", help=argparse.SUPPRESS
1129+
)
11241130

11251131
# options specifying code to check
11261132
code_group = parser.add_argument_group(

mypy/options.py

+13-3
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,16 @@ class BuildType:
5656
"warn_unused_ignores",
5757
}
5858

59-
OPTIONS_AFFECTING_CACHE: Final = (PER_MODULE_OPTIONS | {"platform", "bazel", "plugins"}) - {
60-
"debug_cache"
61-
}
59+
OPTIONS_AFFECTING_CACHE: Final = (
60+
PER_MODULE_OPTIONS
61+
| {
62+
"platform",
63+
"bazel",
64+
"plugins",
65+
"disable_bytearray_promotion",
66+
"disable_memoryview_promotion",
67+
}
68+
) - {"debug_cache"}
6269

6370
# Features that are currently incomplete/experimental
6471
TYPE_VAR_TUPLE: Final = "TypeVarTuple"
@@ -329,6 +336,9 @@ def __init__(self) -> None:
329336
# Deprecated reverse version of the above, do not use.
330337
self.enable_recursive_aliases = False
331338

339+
self.disable_bytearray_promotion = False
340+
self.disable_memoryview_promotion = False
341+
332342
# To avoid breaking plugin compatibility, keep providing new_semantic_analyzer
333343
@property
334344
def new_semantic_analyzer(self) -> bool:

mypy/semanal_classprop.py

+4
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,10 @@ def add_type_promotion(
165165
if not promote_targets:
166166
if defn.fullname in TYPE_PROMOTIONS:
167167
target_sym = module_names.get(TYPE_PROMOTIONS[defn.fullname])
168+
if defn.fullname == "builtins.bytearray" and options.disable_bytearray_promotion:
169+
target_sym = None
170+
elif defn.fullname == "builtins.memoryview" and options.disable_memoryview_promotion:
171+
target_sym = None
168172
# With test stubs, the target may not exist.
169173
if target_sym:
170174
target_info = target_sym.node

test-data/unit/check-flags.test

+15
Original file line numberDiff line numberDiff line change
@@ -2128,3 +2128,18 @@ Ts = TypeVarTuple("Ts") # E: "TypeVarTuple" support is experimental, use --enab
21282128
from typing_extensions import TypeVarTuple
21292129
Ts = TypeVarTuple("Ts") # OK
21302130
[builtins fixtures/tuple.pyi]
2131+
2132+
2133+
[case testDisableBytearrayPromotion]
2134+
# flags: --disable-bytearray-promotion
2135+
def f(x: bytes) -> None: ...
2136+
f(bytearray(b"asdf")) # E: Argument 1 to "f" has incompatible type "bytearray"; expected "bytes"
2137+
f(memoryview(b"asdf"))
2138+
[builtins fixtures/primitives.pyi]
2139+
2140+
[case testDisableMemoryviewPromotion]
2141+
# flags: --disable-memoryview-promotion
2142+
def f(x: bytes) -> None: ...
2143+
f(bytearray(b"asdf"))
2144+
f(memoryview(b"asdf")) # E: Argument 1 to "f" has incompatible type "memoryview"; expected "bytes"
2145+
[builtins fixtures/primitives.pyi]

0 commit comments

Comments
 (0)