File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed
Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 2222 return_type = bytes_rprimitive ,
2323 c_function_name = "LibRTStrings_BytesWriter_getvalue_internal" ,
2424 error_kind = ERR_MAGIC ,
25+ experimental = True ,
26+ capsule = "librt.strings" ,
2527)
2628
2729method_op (
3032 return_type = none_rprimitive ,
3133 c_function_name = "LibRTStrings_BytesWriter_write_internal" ,
3234 error_kind = ERR_MAGIC ,
35+ experimental = True ,
36+ capsule = "librt.strings" ,
3337)
3438
3539method_op (
3842 return_type = none_rprimitive ,
3943 c_function_name = "LibRTStrings_BytesWriter_append_internal" ,
4044 error_kind = ERR_MAGIC ,
45+ experimental = True ,
46+ capsule = "librt.strings" ,
4147)
Original file line number Diff line number Diff line change @@ -101,6 +101,7 @@ def method_op(
101101 is_borrowed : bool = False ,
102102 priority : int = 1 ,
103103 is_pure : bool = False ,
104+ experimental : bool = False ,
104105 capsule : str | None = None ,
105106) -> PrimitiveDescription :
106107 """Define a c function call op that replaces a method call.
@@ -146,7 +147,7 @@ def method_op(
146147 extra_int_constants ,
147148 priority ,
148149 is_pure = is_pure ,
149- experimental = False ,
150+ experimental = experimental ,
150151 capsule = capsule ,
151152 )
152153 ops .append (desc )
You can’t perform that action at this time.
0 commit comments