aboutsummaryrefslogtreecommitdiff
path: root/py
AgeCommit message (Expand)Author
2017-06-09py: Prevent mp_arg_check_num from being optimized away by the compiler.Scott Shawcroft
2017-06-04Fix broken mp_stack_check: force mp_stack_ctrl_init() and mp_stack_usage() no...Dan Halbert
2017-05-25Change the approach for input so that its not included in every single build....Scott Shawcroft
2017-05-25atmel-samd: Add input support. Fixes #143Scott Shawcroft
2017-05-05atmel-samd: Fix sporadic "syntax errors"Scott Shawcroft
2017-05-01py: Fix version header generation when no tags are available.Scott Shawcroft
2017-02-27atmel-samd: Add USB HID mouse and keyboard support.Scott Shawcroft
2017-02-26atmel-samd: Use link time optimization to reduce code size of builds whichScott Shawcroft
2017-02-24py: Fix recursion exception.Scott Shawcroft
2017-02-24py: Fix varg helpers by adding vlist variant of mp_obj_new_exception_msgScott Shawcroft
2017-02-24Make slice make_new match mp_make_new_fun_t exactly, check the input type and...Scott Shawcroft
2017-02-24Correct name of mp_raise_NotImplementedError to make error name.Scott Shawcroft
2017-02-24Make the build quieter by default.Scott Shawcroft
2017-02-24Add indices() support to slice.Scott Shawcroft
2017-02-24Switch exception throwing to mp_raise helpers. It saves a little code space e...Scott Shawcroft
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