Request for opinions: A cross language development tool

Chris Angelico rosuav at gmail.com
Tue Jun 21 14:26:38 EDT 2016


On Wed, Jun 22, 2016 at 4:01 AM, Tal Zion <tal at bridge-dev.com> wrote:
> Bridge compiles Python modules into native code, which requires us to
> support Python *language* features (for, while, class, generators, etc) but
> it reuses CPython's libraries (list, dict, str, etc) so we don't implement
> those, and it also uses CPython's ast module in order to parse Python code.
> So once we are done supporting all of the language features, any Python code
> should work. Currently we have quite a few language features to implement,
> but we're working on it =) We're targeting Python 3.5.

Okay, so how do you handle exec and eval?

ChrisA



More information about the Python-list mailing list