Byte code descriptions somewhere?

Paul Rubin no.email at nospam.invalid
Sat Oct 1 19:53:39 EDT 2016


Cem Karan <cfkaran2 at gmail.com> writes:
> how do I create a stream of byte codes that can be interpreted by
> CPython directly?

Basically, study the already existing code and do something similar.
The CPython bytecode isn't standardized like JVM bytecode.  It's
designed for the interpreter's convenience, not officially documented,
and (somewhat) subject to change between versions.



More information about the Python-list mailing list