| Commit message (Expand) | Author | Age |
* | py: Added optimised support for 3-argument calls to builtin.pow() | Nicko van Someren | 2017-02-02 |
* | py: Add builtin help function to core, with default help msg. | Damien George | 2017-01-22 |
* | py/modbuiltins: Remove unreachable code. | Damien George | 2016-12-20 |
* | py: Add "delattr" builtin, conditional on MICROPY_CPYTHON_COMPAT. | Damien George | 2016-10-24 |
* | py/modbuiltins: Add builtin "slice", pointing to existing slice type. | Damien George | 2016-10-24 |
* | py/{modbuiltins,obj}: Use MP_PYTHON_PRINTER where possible. | Paul Sokolovsky | 2016-10-22 |
* | py: Use mp_raise_msg helper function where appropriate. | Damien George | 2016-10-17 |
* | all: Remove 'name' member from mp_obj_module_t struct. | Damien George | 2016-09-22 |
* | py: Get rid of assert() in method argument checking functions. | Paul Sokolovsky | 2016-08-12 |
* | py: add async/await/async for/async with syntax | pohmelie | 2016-04-13 |
* | py/modbuiltins: __repl_print__: Add comment about setting "_" special var. | Paul Sokolovsky | 2016-04-13 |
* | py: Fix passing of some wide int types to printf varg format list. | Damien George | 2016-03-14 |
* | py: Change first arg of type.make_new from mp_obj_t to mp_obj_type_t*. | Damien George | 2016-01-11 |
* | py: Change type signature of builtin funs that take variable or kw args. | Damien George | 2016-01-11 |
* | py/modbuiltins: Fix access of mp_obj_t variable, wrap in MP_OBJ_TO_PTR. | Damien George | 2016-01-04 |
* | py: Make dir report instance members | Dave Hylands | 2016-01-03 |
* | py: Change struct and macro for builtin fun so they can be type checked. | Damien George | 2016-01-03 |
* | py: Add MICROPY_ENABLE_COMPILER and MICROPY_PY_BUILTINS_EVAL_EXEC opts. | Damien George | 2015-12-18 |
* | py: Add min/max "default" keyword argument | pohmelie | 2015-12-07 |
* | py: Add MICROPY_PY_BUILTINS_MIN_MAX, disable for minimal ports. | pohmelie | 2015-12-07 |
* | py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR. | Damien George | 2015-11-29 |
* | py: Add MP_ROM_* macros and mp_rom_* types and use them. | Damien George | 2015-11-29 |
* | py: Check that second argument to hasattr is actually a string. | Damien George | 2015-11-23 |
* | py: Add mp_obj_is_float function (macro) and use it where appropriate. | Damien George | 2015-10-20 |
* | py: Add support for _ in REPL to hold last computed value. | Damien George | 2015-10-17 |
* | py: Rename MP_BOOL() to mp_obj_new_bool() for consistency in naming. | Paul Sokolovsky | 2015-10-11 |
* | modbuiltins: Consistently use indentation for #if. | Paul Sokolovsky | 2015-08-31 |
* | py: Add MICROPY_PY_BUILTINS_FILTER, disable for minimal ports. | Paul Sokolovsky | 2015-08-20 |
* | modbuiltins: Implement round() to precision. | Sebastian Plamauer | 2015-07-19 |
* | py: Add MP_BINARY_OP_DIVMOD to simplify and consolidate divmod builtin. | Damien George | 2015-06-13 |
* | py: Expose KeyboardInterrupt in builtins module. | Damien George | 2015-06-05 |
* | py: Convert hash API to use MP_UNARY_OP_HASH instead of ad-hoc function. | Damien George | 2015-05-12 |
* | objsingleton: New home for Ellipsis and NotImplemented. | Paul Sokolovsky | 2015-05-05 |
* | modbuiltins: Add NotImplemented builtin constant. | Paul Sokolovsky | 2015-05-04 |
* | py: Make viper codegen raise proper exception (ViperTypeError) on error. | Damien George | 2015-04-20 |
* | py: Fix builtin ord so that it can handle bytes values >= 0x80. | Damien George | 2015-04-19 |
* | py: Convert occurrences of non-debug printf to mp_printf. | Damien George | 2015-04-16 |
* | py: Make mp_sys_stdout_print object, wrapping sys.stdout for mp_print*. | Damien George | 2015-04-16 |
* | py: Overhaul and simplify printf/pfenv mechanism. | Damien George | 2015-04-16 |
* | py: Use a dummy type for referring to extern structs | stijn | 2015-04-09 |
* | py: Add MICROPY_PY_BUILTINS_REVERSED, disable for minimal ports. | Paul Sokolovsky | 2015-04-07 |
* | py: Add MICROPY_PY_BUILTINS_ENUMERATE, disable for minimal ports. | Paul Sokolovsky | 2015-04-06 |
* | modbuiltins: round(): Accept second arg, and at least support it to be 0. | Paul Sokolovsky | 2015-03-31 |
* | py: Allow to compile with extra warnings (sign-compare, unused-param). | Damien George | 2015-03-19 |
* | py: Fix builtin abs so it works for bools and bignum. | Damien George | 2015-03-14 |
* | py: Use SMALL_INT creation macro in builtin sum. | Damien George | 2015-03-02 |
* | py: Implement UnicodeError. | Paul Sokolovsky | 2015-02-23 |
* | py: Add setattr builtin. | stijn | 2015-02-14 |
* | py: Make REPL printing function print repr of object, not str. | Damien George | 2015-01-28 |
* | py: Be more precise about unicode type and disabled unicode behaviour. | Damien George | 2015-01-28 |