This commit is contained in:
Tim Riddermann 2023-07-24 10:56:37 +02:00
parent 86fddbe2ac
commit c6bded59f4

View file

@ -105,10 +105,10 @@ class Construct(t.Generic[ParsedType, BuildTypes]):
def build(self, obj: BuildTypes, **contextkw: ContextKWType) -> bytes: ...
def build_stream(
self, obj: BuildTypes, stream: StreamType, **contextkw: ContextKWType
) -> bytes: ...
) -> None: ...
def build_file(
self, obj: BuildTypes, filename: FilenameType, **contextkw: ContextKWType
) -> bytes: ...
) -> None: ...
def sizeof(self, **contextkw: ContextKWType) -> int: ...
def compile(
self, filename: FilenameType = ...