We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a25eab6 commit e50b118Copy full SHA for e50b118
mypyc/ir/rtypes.py
@@ -494,7 +494,9 @@ def __hash__(self) -> int:
494
range_rprimitive: Final = RPrimitive("builtins.range", is_unboxed=False, is_refcounted=True)
495
496
# Python weak reference object
497
-weakref_rprimitive: Final = RPrimitive("weakref.ReferenceType", is_unboxed=False, is_refcounted=True)
+weakref_rprimitive: Final = RPrimitive(
498
+ "weakref.ReferenceType", is_unboxed=False, is_refcounted=True
499
+)
500
501
502
def is_tagged(rtype: RType) -> bool:
0 commit comments