aboutsummaryrefslogtreecommitdiff
path: root/py
AgeCommit message (Expand)Author
2015-11-19py: Added Cygwin support to py/nlrx86.S.Igor Gatis
2015-11-19py/map: Store key/value in earliest possible slot in hash table.Damien George
2015-11-17py/mpstate: Make mp_pending_exception volatile.Damien George
2015-11-17py/modmath: Make log2, log10 and hyperbolic funcs be SPECIAL_FUNCTIONS.Damien George
2015-11-17py: Implement default and star args for lambdas.Damien George
2015-11-17py/compile: Don't unnecessarily save state when compiling param list.Damien George
2015-11-14py/modmath: Don't create symbol entry for expm1() if not needed.Paul Sokolovsky
2015-11-14py/modmath: Make expm1() be in MICROPY_PY_MATH_SPECIAL_FUNCTIONS.Paul Sokolovsky
2015-11-13unix/mpconfigport: Move log2() definition to modmath.c.Paul Sokolovsky
2015-11-13py: Allow to import compiled bytecode files.Damien George
2015-11-13py: Add MICROPY_PERSISTENT_CODE_LOAD/SAVE to load/save bytecode.Damien George
2015-11-13py: Add MICROPY_PERSISTENT_CODE so code can persist beyond the runtime.Damien George
2015-11-13py: Add constant table to bytecode.Damien George
2015-11-13py: Put all bytecode state (arg count, etc) in bytecode.Damien George
2015-11-13py: Reorganise bytecode layout so it's more structured, easier to edit.Damien George
2015-11-09py/emitinlinethumb: Allow to compile with -Wsign-compare.Damien George
2015-11-09py/asmthumb: Allow to compile with -Wsign-compare and -Wunused-parameter.Damien George
2015-11-09py/objint_longlong: Instead of assert, throw OverflowError.Paul Sokolovsky
2015-11-07py: Clear finalizer flag when calling gc_free.Dave Hylands
2015-11-06py: Adjust object repr C (30-bit stuffed float) to reduce code size.Damien George
2015-10-31all: Add py/mphal.h and use it in all ports.Damien George
2015-10-31py/modstruct: Support repetition counters for all types, not just string.Paul Sokolovsky
2015-10-31py: In inline asm, vldr and vstr offsets now in bytes not words.adminpete
2015-10-30py/makeversionhdr.py: Work with backslashes in paths.omtinez
2015-10-27extmod/modlwip: slip: Use stream protocol and be port-independent.Paul Sokolovsky
2015-10-24Makefiles: Remove duplicate object files when linking.Paul Sokolovsky
2015-10-20py/nlrthumb: Make compatible with Cortex-M0 (ARMv6M instr set).Damien George
2015-10-20py: With obj repr "C", change raw str accessor from macro to function.Damien George
2015-10-20py: Add object repr "C", where 30-bit floats are stuffed in obj word.Damien George
2015-10-20py: Make float representation configurable with object representation.Damien George
2015-10-20py: Move float e/pi consts to objfloat and make mp_obj_float_t private.Damien George
2015-10-20py: Add mp_obj_is_float function (macro) and use it where appropriate.Damien George
2015-10-19all: Make netutils.h available to all ports by default.Paul Sokolovsky
2015-10-19unix/modtime: Implement ticks_ms(), ticks_us() and ticks_diff().Paul Sokolovsky
2015-10-19py: Add lsl/lsr/asr opcode support to inline Thumb2 assembler.Damien George
2015-10-18py/stream: Allow to reuse is_nonblocking_error().Paul Sokolovsky
2015-10-17py: Add support for _ in REPL to hold last computed value.Damien George
2015-10-16py: Add option for inline assembler to support ARMv7-M instructions.Damien George
2015-10-15py: Fix with+for+return bug by popping for-iter when unwinding exc stack.Damien George
2015-10-15py: Remove dependency on printf/fwrite in mp_plat_print.Damien George
2015-10-14py/compile: Remove unnecessary label in compilation of for statement.Damien George
2015-10-14py: Fix build of ARM native emitter due to recent viper changes.Damien George
2015-10-13py/qstr: Fix calc of qstr memory usage, due to new qstr chunk allocation.Damien George
2015-10-13py: Implement ptr32 load and store in viper emitter.Damien George
2015-10-12py: Add support to call __init__ from a builtin module on first import.Damien George
2015-10-12py: Allow to to build MicroPython as a static library.Paul Sokolovsky
2015-10-12py/parse: Make parser error handling cleaner, less spaghetti-like.Damien George
2015-10-12py: Move constant folding from compiler to parser.Damien George
2015-10-12py/objarray: Allow to create array of void pointers, as extension to CPython.Paul Sokolovsky
2015-10-11py: Rename MP_BOOL() to mp_obj_new_bool() for consistency in naming.Paul Sokolovsky