Closed MatrixEditor closed 7 months ago
Another implementation in C that covers:
from caterpillar._C import Struct, atom, unpack
class Foo(atom): ...
class: MyStruct: foo: Foo()
s = Struct(MyStruct, alter_model=True) unpack(b"...", s)
+ Python and C implementation are **NOT** compatible to each other (at least not now)
Another implementation in C that covers:
class Foo(atom): ...
class: MyStruct: foo: Foo()
s = Struct(MyStruct, alter_model=True) unpack(b"...", s)