initial commit

This commit is contained in:
2025-04-15 10:35:34 +08:00
commit 9e3709a30f
13 changed files with 530 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
import marshal
import dis
code = compile(open('plain.py').read(), "<frozen>", "exec")
dis.dis(code)
print(code.co_code, len(code.co_code))
marshal.dump(code, open("plain.marshal", "wb"))