aboutsummaryrefslogtreecommitdiff
path: root/py
AgeCommit message (Expand)Author
2017-02-14Make mp_float_t conversions explicit to silence warnings of converting floats...Scott Shawcroft
2017-02-13Change sys.implementation to return circuitpython and the circuitpython versi...Scott Shawcroft
2017-01-12Add persistent VFS shares so that the devices can be used with USBScott Shawcroft
2017-01-12Fixup warnings from merge about undefined macro values, switch toScott Shawcroft
2017-01-10Merge tag 'v1.8.7'Scott Shawcroft
2017-01-08py/builtinimport: Fix bug when importing names from frozen packages.Damien George
2017-01-05Add time.struct_time support.Scott Shawcroft
2017-01-05py/mkrules.mk: Add MPY_CROSS_FLAGS option to pass flags to mpy-cross.Damien George
2017-01-03py/asmarm: Fix assembler's PASS_EMIT constant name.Damien George
2016-12-28py/unicode: Comment-out unused function unichar_isprint.Damien George
2016-12-28py/objint: Simplify mp_int_format_size and remove unreachable code.Damien George
2016-12-28py/mpprint: Add assertion for, and comment about, valid base values.Damien George
2016-12-28py/parsenum: Fix warning for signed/unsigned comparison.Damien George
2016-12-28py/mpz: Fix assertion in mpz_set_from_str which checks value of base.Damien George
2016-12-28py/parsenum: Simplify and generalise decoding of digit values.Damien George
2016-12-27cc3200: Re-add support for UART REPL (MICROPY_STDIO_UART setting).Paul Sokolovsky
2016-12-27py/misc.h: Typo fix in comment.Paul Sokolovsky
2016-12-22py/lexer: Permanently disable the mp_lexer_show_token function.Damien George
2016-12-22py/lexer: Remove unnecessary check for EOF in lexer's next_char func.Damien George
2016-12-22py/lexer: Remove unreachable code in string tokeniser.Damien George
2016-12-22tests/basics/lexer: Add a test for newline-escaping within a string.Damien George
2016-12-22extmod/modutimeq: Refactor into optimized class.Paul Sokolovsky
2016-12-21py/emitglue: Refactor to remove assert(0), to improve coverage.Damien George
2016-12-21py/objint: Rename mp_obj_int_as_float to mp_obj_int_as_float_impl.Damien George
2016-12-20py/modbuiltins: Remove unreachable code.Damien George
2016-12-19atmel-samd: Add help() and remove mem_info functions from smallest builds to ...Scott Shawcroft
2016-12-19atmel-samd: Add preliminary support for UARTSebastian Plamauer
2016-12-19py/compile: Add an extra pass for Xtensa inline assembler.Damien George
2016-12-15py: Add MICROPY_KBD_EXCEPTION config option to provide mp_kbd_exception.Damien George
2016-12-14py/mpconfig.h: Enable MICROPY_PY_SYS_EXIT by default.Paul Sokolovsky
2016-12-14py/runtime: Zero out fs_user_mount array in mp_init.Damien George
2016-12-14py/mpz: Remove unreachable code in mpn_or_neg functions.Damien George
2016-12-13py/builtinimport: Support importing packages from compiled .mpy files.Damien George
2016-12-12py/binary: Do zero extension when storing a value larger than word size.Damien George
2016-12-09py/objint: from_bytes, to_bytes: Require byteorder arg, require "little".Paul Sokolovsky
2016-12-09py/asm: Fix x86 and ARM assemblers due to recent code refactoring.Damien George
2016-12-09py/asm: Remove need for dummy_data when doing initial assembler passes.Damien George
2016-12-09py/emitinline: Move common code for end of final pass to compiler.Damien George
2016-12-09py/emitinline: Move inline-asm align and data methods to compiler.Damien George
2016-12-09py/emitinline: Embed entire asm struct instead of a pointer to it.Damien George
2016-12-09py: Add inline Xtensa assembler.Damien George
2016-12-09py: Allow inline-assembler emitter to be generic.Damien George
2016-12-09py: Integrate Xtensa assembler into native emitter.Damien George
2016-12-09py/asmxtensa: Add low-level Xtensa assembler.Damien George
2016-12-09py/asmbase: Add MP_PLAT_COMMIT_EXEC option for handling exec code.Damien George
2016-12-09py: Move arch-specific assembler macros from emitnative to asmXXX.h.Damien George
2016-12-09py/emit.h: Remove long-obsolete declarations for cpython emitter.Damien George
2016-12-07py/compile: Simplify configuration of native emitter.Damien George
2016-12-02py/stream: Move ad-hoc ioctl constants to stream.h and rename them.Damien George
2016-11-29Revert "py: Add ability to manually mark blocks during collect."Scott Shawcroft