Age | Commit message (Expand) | Author |
2018-05-10 | py/modbuiltins: Make built-in dir support the __dir__ special method. | Damien George |
2018-05-10 | py/modbuiltins: In built-in dir make use of mp_load_method_protected. | Damien George |
2018-05-10 | py/modbuiltins: Make built-in hasattr work properly for user types. | Damien George |
2018-05-09 | py/{modbuiltins,repl}: Start qstr probing from after empty qstr. | Damien George |
2018-02-19 | py/modbuiltins: Simplify and generalise dir() by probing qstrs. | Damien George |
2018-02-14 | py/modbuiltins: Simplify casts from char to byte ptr in builtin ord. | Damien George |
2018-02-14 | py/unicode: Clean up utf8 funcs and provide non-utf8 inline versions. | Damien George |
2018-02-07 | py/modbuiltins: For builtin_chr, use uint8_t instead of char for array. | Damien George |
2017-12-05 | py/modbuiltins: Use standard arg-parsing helper func for builtin print. | Damien George |
2017-11-22 | py/modbuiltins: Slightly simplify code in builtin round(). | Damien George |
2017-11-16 | py/objstr: Remove "make_qstr_if_not_already" arg from mp_obj_new_str. | Damien George |
2017-10-11 | py/modbuiltins: Use existing utf8_get_char helper in builtin ord func. | Damien George |
2017-10-04 | all: Remove inclusion of internal py header files. | Damien George |
2017-09-18 | py/modbuiltins: Implement abs() by dispatching to MP_UNARY_OP_ABS. | Paul Sokolovsky |
2017-08-02 | py,extmod,stmhal: Use "static inline" for funcs that should be inline. | Damien George |
2017-07-31 | all: Use the name MicroPython consistently in comments | Alexander Steffen |
2017-07-07 | py,extmod: Some casts and minor refactors to quiet compiler warnings. | Tom Collins |
2017-07-04 | py: Change mp_uint_t to size_t in builtins code. | Damien George |
2017-06-15 | all: Make more use of mp_raise_{msg,TypeError,ValueError} helpers. | Damien George |
2017-06-01 | py/modbuiltins: Add core-provided version of input() function. | Damien George |
2017-05-14 | py/modsys: update conditionals for code referencing sys.stdout | Tom Collins |
2017-03-29 | py: Change mp_uint_t to size_t for mp_obj_str_get_data len arg. | Damien George |
2017-03-28 | py: Use mp_raise_TypeError/mp_raise_ValueError helpers where possible. | Damien George |
2017-03-24 | py/modbuiltins: Allow round() to return a big int if necessary. | Damien George |
2017-03-24 | py/modbuiltins: For round() builtin use nearbyint instead of round. | Damien George |
2017-02-16 | py: Add iter_buf to getiter type method. | Damien George |
2017-02-02 | py: Added optimised support for 3-argument calls to builtin.pow() | Nicko van Someren |
2017-01-22 | py: Add builtin help function to core, with default help msg. | Damien George |
2016-12-20 | py/modbuiltins: Remove unreachable code. | Damien George |
2016-10-24 | 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-22 | py/{modbuiltins,obj}: Use MP_PYTHON_PRINTER where possible. | Paul Sokolovsky |
2016-10-17 | py: Use mp_raise_msg helper function where appropriate. | Damien George |
2016-09-22 | all: Remove 'name' member from mp_obj_module_t struct. | Damien George |
2016-08-12 | py: Get rid of assert() in method argument checking functions. | Paul Sokolovsky |
2016-04-13 | 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-03-14 | py: Fix passing of some wide int types to printf varg format list. | Damien George |
2016-01-11 | 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-04 | py/modbuiltins: Fix access of mp_obj_t variable, wrap in MP_OBJ_TO_PTR. | Damien George |
2016-01-03 | 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 |
2015-12-18 | py: Add MICROPY_ENABLE_COMPILER and MICROPY_PY_BUILTINS_EVAL_EXEC opts. | Damien George |
2015-12-07 | py: Add min/max "default" keyword argument | pohmelie |
2015-12-07 | py: Add MICROPY_PY_BUILTINS_MIN_MAX, disable for minimal ports. | pohmelie |
2015-11-29 | 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-23 | py: Check that second argument to hasattr is actually a string. | Damien George |
2015-10-20 | py: Add mp_obj_is_float function (macro) and use it where appropriate. | Damien George |