aboutsummaryrefslogtreecommitdiff
path: root/py
AgeCommit message (Expand)Author
2017-08-11py/modsys: Initial implementation of sys.getsizeof().Paul Sokolovsky
2017-08-11all: Make use of $(TOP) variable in Makefiles, instead of "..".Damien George
2017-08-09py/objstr: Raise an exception for wrong type on RHS of str binary op.Damien George
2017-08-09py/objtuple: Allow to use inplace-multiplication operator on tuples.Damien George
2017-08-06py/mkrules.mk: Show frozen modules sizes together with executable size.Paul Sokolovsky
2017-08-02py,extmod,stmhal: Use "static inline" for funcs that should be inline.Damien George
2017-07-31all: Use the name MicroPython consistently in commentsAlexander Steffen
2017-07-31py/modsys: Use MP_ROM_INT for int values in an mp_rom_map_elem_t.Damien George
2017-07-28py/modio: BufferedWriter: Convert to mp_rom_map_elem_t.Paul Sokolovsky
2017-07-25py: Implement raising a big-int to a negative power.Damien George
2017-07-25py/mpz: Make mpz_is_zero() an inline function.Damien George
2017-07-24all: Don't include system errno.h when it's not needed.Damien George
2017-07-24py/mperrno: Allow mperrno.h to be correctly included before other hdrs.Damien George
2017-07-24py/py.mk: Make berkeley-db C-defs apply only to relevant source files.Damien George
2017-07-21py/builtinevex: Add typechecking of globals/locals args to eval/exec.Tom Collins
2017-07-19all: Remove trailing spaces, per coding conventions.Damien George
2017-07-18py/modmicropython: Cast stack_limit value so it prints correctly.Damien George
2017-07-18py/asmx64: Support moving a 64-bit immediate to one of top 8 registers.Damien George
2017-07-18py/vm: Make n_state variable local to just set-up part of VM.Damien George
2017-07-18all: Unify header guard usage.Alexander Steffen
2017-07-12py/gc: Refactor assertions in gc_free function.Damien George
2017-07-09py/compile: Fix enum variable declaration.Damien George
2017-07-07py/objgenerator: Allow to hash generators and generator instances.Damien George
2017-07-07py,extmod: Some casts and minor refactors to quiet compiler warnings.Tom Collins
2017-07-05py/compile: Use switch-case to match token and operator.Krzysztof Blazewicz
2017-07-05py/compile: Combine arith and bit-shift ops into 1 compile routine.Krzysztof Blazewicz
2017-07-04py/repl: Change mp_uint_t to size_t in repl helpers.Damien George
2017-07-04py: Change mp_uint_t to size_t in builtins code.Damien George
2017-07-04py/objdict: Factorise dict accessor helper to reduce code size.Damien George
2017-07-04py/makeversionhdr.py: Update to parse new release line in docs/conf.py.Damien George
2017-07-04py/modmath: Check for zero division in log with 2 args.Damien George
2017-07-04py/vm: Make "if" control flow more obvious in YIELD_FROM opcode.Damien George
2017-07-04py/objstr: Remove unnecessary "sign" variable in formatting code.Damien George
2017-07-04py/runtime: Mark m_malloc_fail() as NORETURN.Damien George
2017-07-04py/binary: Add missing "break" statements.Damien George
2017-07-02py/objstr: Move uPy function wrappers to just after the C function.Damien George
2017-06-30py/mpprint: Remove unreachable check for neg return of mp_format_float.Damien George
2017-06-29py/objnamedtuple: Simplify and remove use of alloca building namedtuple.Damien George
2017-06-28py/builtinimport: Remove unreachable code for relative imports.Damien George
2017-06-28py/frozenmod.h: Add missing header guardsAlexander Steffen
2017-06-26py/mpconfig.h: Remove spaces in "Micro Python" and remove blank line.Damien George
2017-06-22py/compile: Optimise emitter label indices to save a word of heap.Damien George
2017-06-22py/compile: Fix bug with break/continue in else of optimised for-range.Damien George
2017-06-15py/objint: In to_bytes(), allow length arg to be any int and check sign.Damien George
2017-06-15py/objint: Support "big" byte-order in int.to_bytes().Damien George
2017-06-15all: Make more use of mp_raise_{msg,TypeError,ValueError} helpers.Damien George
2017-06-14py/compile: Raise SyntaxError if positional args are given after */**.Damien George
2017-06-14py/modthread: Raise RuntimeError in release() if lock is not acquired.Damien George
2017-06-13py/formatfloat: Fix number of digits and exponent sign when rounding.Damien George
2017-06-09py/objstringio: If created from immutable object, follow copy on write policy.Paul Sokolovsky