Age | Commit message (Expand) | Author |
2014-12-09 | py: Allow builtins to be overridden. | Damien George |
2014-11-27 | builtin: Reimplement __repl_print__() in terms of print(). | Paul Sokolovsky |
2014-11-06 | py: Use shorter, static error msgs when ERROR_REPORTING_TERSE enabled. | Damien George |
2014-10-31 | py: Add builtin round function. | Damien George |
2014-10-22 | py: Fix smallint modulo with negative arguments. | Damien George |
2014-10-03 | py: Convert [u]int to mp_[u]int_t where appropriate. | Damien George |
2014-09-13 | py: Fix build error when float disabled; add test for divmod. | Damien George |
2014-09-13 | py: Implement divmod, % and proper // for floating point. | Damien George |
2014-09-07 | py: Rename mp_builtin_id to mp_obj_id and make it public. | Damien George |
2014-08-30 | py: Change uint to mp_uint_t in runtime.h, stackctrl.h, binary.h. | Damien George |
2014-08-30 | py: Change all uint to mp_uint_t in obj.h. | Damien George |
2014-08-24 | py: Consolidate min/max functions into one, and add key= argument. | Damien George |
2014-08-12 | py: Implement builtin reversed() function. | Damien George |
2014-08-12 | py: Make a function static; replace NULL with MP_OBJ_NULL. | Damien George |
2014-07-31 | py: Improve handling of long-int overflow. | Damien George |
2014-07-28 | py: Make id() return small int for the most common address space mapping. | Paul Sokolovsky |
2014-07-19 | py: Make print() accept "file" argument, and actually print to stream. | Paul Sokolovsky |
2014-07-03 | Rename machine_(u)int_t to mp_(u)int_t. | Damien George |
2014-06-28 | py: Make unichar_charlen() accept/return machine_uint_t. | Paul Sokolovsky |
2014-06-28 | py: Small comments, name changes, use of machine_int_t. | Damien George |
2014-06-27 | builtin: Restore bytestr compatibility. | Paul Sokolovsky |
2014-06-27 | builtin: ord, chr: Unicode support. | Chris Angelico |
2014-06-20 | py: Separate MICROPY_PY_BUILTINS_COMPLEX from MICROPY_PY_BUILTINS_FLOAT. | Paul Sokolovsky |
2014-06-19 | Prefix ARRAY_SIZE with micropython prefix MP_ | Emmanuel Blot |
2014-06-08 | py: Make sure getattr() works with non-interned strings (by interning them). | Paul Sokolovsky |
2014-06-06 | Change comments (mainly URLs) to no longer specifically say Python 3.3 | Chris Angelico |
2014-06-01 | Rename bultins config variables to MICROPY_PY_BUILTINS_*. | Damien George |
2014-05-25 | Change const byte* to const char* where sensible. | Damien George |
2014-05-11 | py: Add basic implementation of hasattr() function. | Paul Sokolovsky |
2014-05-03 | Add license header to (almost) all files. | Damien George |
2014-05-02 | py, unix: Make "mpconfig.h" be first included, as other headers depend on it. | Paul Sokolovsky |
2014-05-01 | Fix the builtin min() and max() functions (and add tests). | Andrew Scheller |
2014-04-26 | Add ARRAY_SIZE macro, and use it where possible. | Damien George |
2014-04-17 | py: Add MP_OBJ_STOP_ITERATION and make good use of it. | Damien George |
2014-04-17 | py: Make built-in 'range' a class. | Damien George |
2014-04-15 | py: Add builtin functions bin and oct, and some tests for them. | Damien George |
2014-04-15 | py: Fix builtin hex to print prefix. | Damien George |
2014-04-15 | py: Add hex builtin function. | Damien George |
2014-04-06 | py: Revert mp_load_attr() to its previous state (not supporting default val). | Paul Sokolovsky |
2014-04-06 | py: Optimize locals()/globals() implementation. | Paul Sokolovsky |
2014-04-06 | py: Implement globals() and locals() builtins. | Paul Sokolovsky |
2014-04-05 | py: Make globals and locals proper dictionary objects. | Damien George |
2014-04-05 | py: Change module globals from mp_map_t* to mp_obj_dict_t*. | Damien George |
2014-04-05 | py: Change nlr_jump to nlr_raise, to aid in debugging. | Damien George |
2014-04-05 | py: Support 3-arg getattr() builtin (with default value). | Paul Sokolovsky |
2014-04-04 | py: Remove mp_obj_less (use mp_binary_op(MP_BINARY_OP_LESS..) instead). | Damien George |
2014-04-02 | py: Move to Python 3.4.0 compatibility. | Damien George |
2014-04-02 | py: Add support for sep and end keywords in print. | Damien George |
2014-03-31 | py: Remove old "run time" functions that were 1 liners. | Damien George |
2014-03-30 | Merge map.h into obj.h. | Damien George |