aboutsummaryrefslogtreecommitdiff
path: root/py/compile.c
AgeCommit message (Expand)Author
2014-04-04py: Enable optimisation of multiplying 2 small ints in compiler.Damien George
2014-04-04py: This time, real proper overflow checking of small int power.Damien George
2014-04-02py: Wrap compile_scope_inline_asm in #if; remove comment from misc.h.Damien George
2014-04-02py: Enable a jump optimisation in the compiler.Damien George
2014-04-02py: Move to Python 3.4.0 compatibility.Damien George
2014-03-31py: Fix bug in optimised for .. range.Damien George
2014-03-31py: Towards default keyword arguments.Damien George
2014-03-31Merge branch 'master' of github.com:micropython/micropythonDamien George
2014-03-31py: Rename and reorder parameters in emit_make_function/closure.Damien George
2014-03-31compile: Don't try to constant-fold division by zero.Paul Sokolovsky
2014-03-30py: Fix bug in compiler for empty class bases.Damien George
2014-03-30Rename rt_* to mp_*.Damien George
2014-03-30compile: Print error messages on unimplemented relative imports.Paul Sokolovsky
2014-03-29Merge pull request #389 from pfalcon/with-statementDamien George
2014-03-29py: Free unique_code slot for outer module.Damien George
2014-03-29vm: Implement "with" statement (SETUP_WITH and WITH_CLEANUP bytecodes).Paul Sokolovsky
2014-03-27py: Factor out code from runtime.c to emitglue.c.Damien George
2014-03-27py: Calculate maximum exception stack size in compiler.Damien George
2014-03-26py: Restore CPython compatibility in compiler for closures with def args.Damien George
2014-03-26py: Support closures with default args.Paul Sokolovsky
2014-03-22Fixed floor division on mp ints and small ints. Added a floordivide test case.Rachel Dowdall
2014-03-22Fixed modulo operator on ints and mp ints to agree with python. Added intdivm...Rachel Dowdall
2014-03-17py: Clean up includes.xbe
2014-03-03py: Unify syntax error handling in compiler; check defualt arg syntax.Damien George
2014-02-26py: Remove name of var arg from macros with var args.Damien George
2014-02-22parse: Refactor parse node encoding to support full range of small ints.Paul Sokolovsky
2014-02-21parse: Note that fact that parser's small ints are different than VM small int.Paul Sokolovsky
2014-02-20compile: Add comments ergarding non-implemented relative imports.Paul Sokolovsky
2014-02-15py: Pass all scope flags through to runtime.Damien George
2014-02-12Replace global "static" -> "STATIC", to allow "analysis builds". Part 2.Paul Sokolovsky
2014-02-10Clean up handling of function return type annotation.Paul Sokolovsky
2014-02-06py: Fix compile of class with keyword arguments in bases.Damien George
2014-02-05py: Add built-in super.Damien George
2014-02-01py: Tidy up BINARY_OPs; negation done by special NOT bytecode.Damien George
2014-02-01py: Reduce code size of compiler by a bit.Damien George
2014-02-01py: Implement break/continue from an exception with finally.Damien George
2014-02-01Implement default function arguments (for Python functions).Paul Sokolovsky
2014-01-29py: Fix bug with LOAD_METHOD; fix int->machine_int_t for small int.Damien George
2014-01-28py: Implement 'not' in compiler, and improve rt_is_true.Damien George
2014-01-24py: Improve freeing of emitters in mp_compile.Damien George
2014-01-24Add support for freeing code emitter objects at the end of compilation.Paul Sokolovsky
2014-01-23mp_compile(): Properly free module_scope and all nested scopes.Paul Sokolovsky
2014-01-23py: Use C99 way of variable macro arguments.Damien George
2014-01-23py: Change macro var args in parser to be C99 compliant.Damien George
2014-01-21py: Implement break and continue byte codes, and add tests.Damien George
2014-01-21Revamp qstrs: they now include length and hash.Damien George
2014-01-19py: Add module/function/class name to exceptions.Damien George
2014-01-18Add source file name and line number to error messages.Damien George
2014-01-15Implement eval.Damien George
2014-01-12py: AssertionError is loaded from global, to match CPython.Damien George