Lines Matching refs:str
18 def read_text(inpath: str) -> bytes:
23 def compile_and_marshal(name: str, text: bytes) -> bytes:
30 def get_varname(name: str, prefix: str) -> str:
34 def write_code(outfile, marshalled: bytes, varname: str) -> None:
41 outfile.write(",".join(str(i) for i in marshalled[n : n + 16]))
46 def write_frozen(outpath: str, inpath: str, name: str, marshalled: bytes) -> None: