| Commit message (Expand) | Author | Age |
* | 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: Change type of .make_new and .call args: mp_uint_t becomes size_t. | Damien George | 2016-01-11 |
* | py/objint: Fix classification of float so it works for OBJ_REPR_D. | Damien George | 2016-01-08 |
* | py: Change mp_obj_int_is_positive to more general mp_obj_int_sign. | Damien George | 2016-01-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: Add mp_obj_is_float function (macro) and use it where appropriate. | Damien George | 2015-10-20 |
* | py: Convert hash API to use MP_UNARY_OP_HASH instead of ad-hoc function. | Damien George | 2015-05-12 |
* | py: Support conversion of bignum to bytes. | Damien George | 2015-04-25 |
* | py: Overhaul and simplify printf/pfenv mechanism. | Damien George | 2015-04-16 |
* | py: Fix builtin abs so it works for bools and bignum. | Damien George | 2015-03-14 |
* | py: Use m_{new,renew,del} consistently. | Damien George | 2015-02-27 |
* | py: Parse big-int/float/imag constants directly in parser. | Damien George | 2015-02-08 |
* | py: Use float-to-int classifications for mp_obj_new_int_from_float() functions | David Steinberg | 2015-01-24 |
* | py: Add float-to-int classification function | David Steinberg | 2015-01-24 |
* | py: Remove mp_obj_str_builder and use vstr instead. | Damien George | 2015-01-21 |
* | py, unix: Allow to compile with -Wunused-parameter. | Damien George | 2015-01-20 |
* | py, unix: Allow to compile with -Wsign-compare. | Damien George | 2015-01-16 |
* | py: Move to guarded includes, everywhere in py/ core. | Damien George | 2015-01-01 |
* | py: Implement mp_obj_new_int_from_float() for MICROPY_LONGINT_IMPL_NONE. | Paul Sokolovsky | 2014-12-30 |
* | py: Partially fix float to int conversion. | Paul Sokolovsky | 2014-12-30 |
* | py: Rename mp_obj_int_get to mp_obj_int_get_truncated; fix struct.pack. | Damien George | 2014-12-05 |
* | py: Make int.to_bytes work on big endian machine. | Damien George | 2014-10-06 |
* | py: Convert [u]int to mp_[u]int_t where appropriate. | Damien George | 2014-10-03 |
* | py: Enable struct/binary-helper to parse q and Q sized ints. | Damien George | 2014-09-10 |
* | 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-30 |
* | py: Save about 200 bytes of ROM by using smaller type for static table. | Damien George | 2014-08-30 |
* | Change some parts of the core API to use mp_uint_t instead of uint/int. | Damien George | 2014-08-30 |
* | py: Improve efficiency of MP_OBJ_IS_STR_OR_BYTES. | Damien George | 2014-08-27 |
* | Make int(b'123') work properly. | Dave Hylands | 2014-08-26 |
* | py: Fix mult by negative number of tuple, list, str, bytes. | Damien George | 2014-08-13 |
* | py: Make MP_OBJ_NEW_SMALL_INT cast arg to mp_int_t itself. | Damien George | 2014-07-31 |
* | py: Make long ints hashable. | Damien George | 2014-07-24 |
* | Rename machine_(u)int_t to mp_(u)int_t. | Damien George | 2014-07-03 |
* | objint: Fix corner case in buffer access. | Paul Sokolovsky | 2014-06-06 |
* | Rename bultins config variables to MICROPY_PY_BUILTINS_*. | Damien George | 2014-06-01 |
* | py: Fix check of small-int overflow when parsing ints. | Damien George | 2014-05-28 |
* | py: Make int(<longint>) work by just returning the longint. | Damien George | 2014-05-28 |
* | py: Implement long int parsing in int(...). | Damien George | 2014-05-28 |
* | py: Rename MP_OBJ_NOT_SUPPORTED to MP_OBJ_NULL. | Damien George | 2014-05-21 |
* | py: Fix mp_obj_t -> mp_const_obj_t for mp_obj_int_get_checked() | Sven Wegener | 2014-05-17 |
* | py: More const usage. | Paul Sokolovsky | 2014-05-17 |
* | py: Use mp_arg_check_num in more places. | Damien George | 2014-05-11 |
* | Windows MSVC port | stijn | 2014-05-08 |
* | py: Improve native emitter; now supports more opcodes. | Damien George | 2014-05-07 |
* | Add license header to (almost) all files. | Damien George | 2014-05-03 |
* | py, unix: Make "mpconfig.h" be first included, as other headers depend on it. | Paul Sokolovsky | 2014-05-02 |
* | py: Allow to pass buffer protocol flags to get_buffer helper funcs. | Damien George | 2014-04-18 |