Skip to content

Commit 91b69b0

Browse files
committed
fix: deserialization discrepancy
1 parent 907f379 commit 91b69b0

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

mypyc/ir/class_ir.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -429,6 +429,7 @@ def deserialize(cls, data: JsonDict, ctx: DeserMaps) -> ClassIR:
429429
ir.is_final_class = data["is_final_class"]
430430
ir.inherits_python = data["inherits_python"]
431431
ir.has_dict = data["has_dict"]
432+
ir.supports_weakref = data["supports_weakref"]
432433
ir.allow_interpreted_subclasses = data["allow_interpreted_subclasses"]
433434
ir.needs_getseters = data["needs_getseters"]
434435
ir._serializable = data["_serializable"]

0 commit comments

Comments
 (0)