summaryrefslogtreecommitdiff
path: root/py/obj.h
AgeCommit message (Expand)Author
2020-03-17objslice: take mp_obj_slice_indices from micropythonJeff Epler
2019-08-28bleio: API change to create and connect related objects simulatenously: no or...Dan Halbert
2019-08-02WIP: rework of Characteristic properties; enhance Descriptor; not testedDan Halbert
2019-06-18Don't operate directly on bleio objects in shared-bindings: use common_halDan Halbert
2019-05-14Make Group iterable via a generic native iterator.Scott Shawcroft
2019-05-08Make status light flash blue for incompatible mpy (fixes #1369)Terri Oda
2019-04-05Update obj.hDamiano Mazzella
2019-02-04Check sequence multiply for length overflowScott Shawcroft
2019-01-14py changes for supporting superclass constructors that take kwargsScott Shawcroft
2018-12-30LocalPeripheral is now Peripheral; more work on basic GATTS support; UART not...Dan Halbert
2018-10-07modsys: exc_info: Add tracebackNoralf Trønnes
2018-08-17Merge pull request #1064 from notro/i2cslaveScott Shawcroft
2018-08-16Compress all translated strings with Huffman coding.Scott Shawcroft
2018-08-16Add i2cslave.I2CSlave bindingsNoralf Trønnes
2018-07-28Merge remote-tracking branch 'adafruit/master' into micropython-25ae98f-mergeDan Halbert
2018-07-19Prevent repetitive recursive scanning of dicts when making them long-livedDan Halbert
2018-07-12continued WIP: almost compilingDan Halbert
2018-07-11WIP: after merge; before testingDan Halbert
2018-06-08py/obj.h: Introduce a "flags" entry in mp_obj_type_t.Damien George
2018-06-04py/stream: Move definition of mp_stream_p_t from obj.h to stream.h.Damien George
2018-05-14Initial implementation of supervisor.reload()Roy Hooper
2018-05-01py/obj.h: Fix math.e constant for nan-boxing builds.Damien George
2018-03-30py/runtime: Check that keys in dicts passed as ** args are strings.Damien George
2018-03-13py/obj.h: Move declaration of mp_obj_list_init to objlist.h.Damien George
2018-03-13py/obj.h: Clean up by removing commented-out inline versions of macros.Damien George
2018-02-21py/objdeque: Implement ucollections.deque type with fixed size.Paul Sokolovsky
2018-02-15py/objexcept: Remove long-obsolete mp_const_MemoryError_obj.Damien George
2018-01-24Introduce a long lived section of the heap.Scott Shawcroft
2017-12-11py: Extend nan-boxing config to have 47-bit small integers.Damien George
2017-11-16py/objstr: Remove "make_qstr_if_not_already" arg from mp_obj_new_str.Damien George
2017-10-24Merge commit 'f869d6b2e339c04469c6c9ea3fb2fabd7bbb2d8c' into nrf2_mergeScott Shawcroft
2017-09-04py/obj: Remove declaration for mp_obj_new_none(), it's never defined.Damien George
2017-09-02py/objfloat: Fix binary ops with incompatible objects.Paul Sokolovsky
2017-08-30py/objtype: Handle NotImplemented return from binary special methods.Paul Sokolovsky
2017-08-29all: Convert mp_uint_t to mp_unary_op_t/mp_binary_op_t where appropriateDamien George
2017-08-25Initial merge of micropython v1.9.2 into circuitpython 2.0.0 (in development)...Dan Halbert
2017-07-31all: Use the name MicroPython consistently in commentsAlexander Steffen
2017-07-18all: Unify header guard usage.Alexander Steffen
2017-06-20Merge tag 'v1.9.1'2.0.0-alpha.0Scott Shawcroft
2017-04-22py/objtype: mp_obj_new_super doesn't need to be public, so inline it.Damien George
2017-04-12py/objfloat: Add implementation of high-quality float hashing.Damien George
2017-04-12py: Optimise types for common case where type has a single parent type.Damien George
2017-04-12py/obj: Clean up and add comments describing mp_obj_type_t struct.Damien George
2017-04-04py: Add very simple but correct hashing for float and complex numbers.Damien George
2017-04-02py/obj.h: Make sequence grow more efficient and support overlapping.Damien George
2017-03-29py: Change mp_uint_t to size_t for mp_obj_str_get_data len arg.Damien George
2017-03-29py: Convert mp_uint_t to size_t for tuple/list accessors.Damien George
2017-03-26py/obj: Change mp_uint_t to size_t for mp_obj_get_array_fixed_n len arg.Damien George
2017-03-23py: Define and use MP_OBJ_ITER_BUF_NSLOTS to get size of stack iter buf.Damien George
2017-03-23py/sequence: Convert mp_uint_t to size_t where appropriate.Damien George