summaryrefslogtreecommitdiff
path: root/py/runtime0.h
AgeCommit message (Expand)Author
2015-02-08py: Parse big-int/float/imag constants directly in parser.Damien George
2014-12-27py: Move to guarded includes for compile.h and related headers.Paul Sokolovsky
2014-09-23py: Make native emitter handle multi-compare and not/is not/not in ops.Damien George
2014-09-06py: Native emitter now supports delete name & global, and end finally.Damien George
2014-08-16py: Code clean-up in native emitter; improve thumb native calls.Damien George
2014-08-16py: Viper can call functions with native types, and raise exceptions.Damien George
2014-08-15py: Viper can now store to global.Damien George
2014-08-15py: Allow viper to have type annotations.Damien George
2014-06-01py: Fix configurability of builtin slice.Damien George
2014-06-01py: Add option to disable set() object (enabled by default).Damien George
2014-05-28py: Implement long int parsing in int(...).Damien George
2014-05-10runtime0.h: Group binary ops by fives.Paul Sokolovsky
2014-05-07py: Improve native emitter; now supports more opcodes.Damien George
2014-05-03Add license header to (almost) all files.Damien George
2014-04-17py: Merge BINARY_OP_SUBSCR and store_subscr (w/ delete) into subscr.Damien George
2014-04-13py: Remove unique_codes from emitglue.c. Replace with pointers.Damien George
2014-04-09py, compiler: Clean up and compress scope/compile structures.Damien George
2014-04-06py: Implement more features in native emitter.Damien George
2014-03-30Rename rt_* to mp_*.Damien George
2014-03-27py: Factor out code from runtime.c to emitglue.c.Damien George
2014-02-16Support passing positional args as keywords to bytecode functions.Paul Sokolovsky
2014-02-15py: Pass all scope flags through to runtime.Damien George
2014-02-02py: Partially fix native emitter to work with latest runtime.Damien George
2014-02-01py: Tidy up BINARY_OPs; negation done by special NOT bytecode.Damien George
2014-01-30Implement __bool__ and __len__ via unary_op virtual method for all types.Paul Sokolovsky
2014-01-29py: Simplify fastn in VM; reduce size of unique code struct.Damien George
2014-01-28py: Implement 'not' in compiler, and improve rt_is_true.Damien George
2014-01-11py: Fix emitcpy and emitnative's binary_op.Damien George
2014-01-11unified the bopsJohn R. Lenton
2014-01-04Split qstr into pools, and put initial pool in ROM.Damien George
2013-12-30py: make closures work.Damien George
2013-12-21Change object representation from 1 big union to individual structs.Damien