summaryrefslogtreecommitdiffstatshomepage
path: root/py/modbuiltins.c
Commit message (Expand)AuthorAge
* py,extmod,stmhal: Use "static inline" for funcs that should be inline.Damien George2017-08-02
* all: Use the name MicroPython consistently in commentsAlexander Steffen2017-07-31
* py,extmod: Some casts and minor refactors to quiet compiler warnings.Tom Collins2017-07-07
* py: Change mp_uint_t to size_t in builtins code.Damien George2017-07-04
* all: Make more use of mp_raise_{msg,TypeError,ValueError} helpers.Damien George2017-06-15
* py/modbuiltins: Add core-provided version of input() function.Damien George2017-06-01
* py/modsys: update conditionals for code referencing sys.stdoutTom Collins2017-05-14
* py: Change mp_uint_t to size_t for mp_obj_str_get_data len arg.Damien George2017-03-29
* py: Use mp_raise_TypeError/mp_raise_ValueError helpers where possible.Damien George2017-03-28
* py/modbuiltins: Allow round() to return a big int if necessary.Damien George2017-03-24
* py/modbuiltins: For round() builtin use nearbyint instead of round.Damien George2017-03-24
* py: Add iter_buf to getiter type method.Damien George2017-02-16
* py: Added optimised support for 3-argument calls to builtin.pow()Nicko van Someren2017-02-02
* py: Add builtin help function to core, with default help msg.Damien George2017-01-22
* py/modbuiltins: Remove unreachable code.Damien George2016-12-20
* py: Add "delattr" builtin, conditional on MICROPY_CPYTHON_COMPAT.Damien George2016-10-24
* py/modbuiltins: Add builtin "slice", pointing to existing slice type.Damien George2016-10-24
* py/{modbuiltins,obj}: Use MP_PYTHON_PRINTER where possible.Paul Sokolovsky2016-10-22
* py: Use mp_raise_msg helper function where appropriate.Damien George2016-10-17
* all: Remove 'name' member from mp_obj_module_t struct.Damien George2016-09-22
* py: Get rid of assert() in method argument checking functions.Paul Sokolovsky2016-08-12
* py: add async/await/async for/async with syntaxpohmelie2016-04-13
* py/modbuiltins: __repl_print__: Add comment about setting "_" special var.Paul Sokolovsky2016-04-13
* py: Fix passing of some wide int types to printf varg format list.Damien George2016-03-14
* py: Change first arg of type.make_new from mp_obj_t to mp_obj_type_t*.Damien George2016-01-11
* py: Change type signature of builtin funs that take variable or kw args.Damien George2016-01-11
* py/modbuiltins: Fix access of mp_obj_t variable, wrap in MP_OBJ_TO_PTR.Damien George2016-01-04
* py: Make dir report instance membersDave Hylands2016-01-03
* py: Change struct and macro for builtin fun so they can be type checked.Damien George2016-01-03
* py: Add MICROPY_ENABLE_COMPILER and MICROPY_PY_BUILTINS_EVAL_EXEC opts.Damien George2015-12-18
* py: Add min/max "default" keyword argumentpohmelie2015-12-07
* py: Add MICROPY_PY_BUILTINS_MIN_MAX, disable for minimal ports.pohmelie2015-12-07
* py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR.Damien George2015-11-29
* py: Add MP_ROM_* macros and mp_rom_* types and use them.Damien George2015-11-29
* py: Check that second argument to hasattr is actually a string.Damien George2015-11-23
* py: Add mp_obj_is_float function (macro) and use it where appropriate.Damien George2015-10-20
* py: Add support for _ in REPL to hold last computed value.Damien George2015-10-17
* py: Rename MP_BOOL() to mp_obj_new_bool() for consistency in naming.Paul Sokolovsky2015-10-11
* modbuiltins: Consistently use indentation for #if.Paul Sokolovsky2015-08-31
* py: Add MICROPY_PY_BUILTINS_FILTER, disable for minimal ports.Paul Sokolovsky2015-08-20
* modbuiltins: Implement round() to precision.Sebastian Plamauer2015-07-19
* py: Add MP_BINARY_OP_DIVMOD to simplify and consolidate divmod builtin.Damien George2015-06-13
* py: Expose KeyboardInterrupt in builtins module.Damien George2015-06-05
* py: Convert hash API to use MP_UNARY_OP_HASH instead of ad-hoc function.Damien George2015-05-12
* objsingleton: New home for Ellipsis and NotImplemented.Paul Sokolovsky2015-05-05
* modbuiltins: Add NotImplemented builtin constant.Paul Sokolovsky2015-05-04
* py: Make viper codegen raise proper exception (ViperTypeError) on error.Damien George2015-04-20
* py: Fix builtin ord so that it can handle bytes values >= 0x80.Damien George2015-04-19
* py: Convert occurrences of non-debug printf to mp_printf.Damien George2015-04-16
* py: Make mp_sys_stdout_print object, wrapping sys.stdout for mp_print*.Damien George2015-04-16