Skip to content

Commit 54608d8

Browse files
authored
[mypyc] Remove experimental flag from bytes get item ops (#20580)
The flag wasn't intentional.
1 parent c3c7eb1 commit 54608d8

1 file changed

Lines changed: 0 additions & 3 deletions

File tree

mypyc/primitives/bytes_ops.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,6 @@
160160
return_type=int64_rprimitive,
161161
c_function_name="CPyBytes_AdjustIndex",
162162
error_kind=ERR_NEVER,
163-
experimental=True,
164163
dependencies=[BYTES_EXTRA_OPS],
165164
)
166165

@@ -171,7 +170,6 @@
171170
return_type=bool_rprimitive,
172171
c_function_name="CPyBytes_RangeCheck",
173172
error_kind=ERR_NEVER,
174-
experimental=True,
175173
dependencies=[BYTES_EXTRA_OPS],
176174
)
177175

@@ -182,6 +180,5 @@
182180
return_type=int_rprimitive,
183181
c_function_name="CPyBytes_GetItemUnsafe",
184182
error_kind=ERR_NEVER,
185-
experimental=True,
186183
dependencies=[BYTES_EXTRA_OPS],
187184
)

0 commit comments

Comments
 (0)