Hi, On Tue, Dec 13, 2011 at 16:29, Timothy Baldridge <[email protected]> wrote: > One last question then. What bytecodes in Python are strictly > unsupported in rPython. I assume YIELD is the major one...are there > any others?
You'll have to derive from http://doc.pypy.org/en/latest/coding-guide.html#id1 which bytecodes are always, sometimes, or never supported. We are not thinking at this level usually. A function can even contain EXEC_STMT, DELETE_GLOBAL or BUILD_CLASS, as long as the corresponding parts are not reachable from RPython. A bientôt, Armin. _______________________________________________ pypy-dev mailing list [email protected] http://mail.python.org/mailman/listinfo/pypy-dev
