summaryrefslogtreecommitdiffstatshomepage
path: root/py/map.c
Commit message (Expand)AuthorAge
* py/map: Change mp_uint_t to size_t where appropriate.Damien George2017-02-08
* py: Declare constant data as properly constant.Damien George2016-05-20
* py/map: Change hash-table allocation policy to be less aggressive.Damien George2016-04-15
* py/map: Prevent map resize failure from destroying map.Stephen Kyle2016-04-01
* py/map: In map lookup, check for fixed map independent of ordered map.Damien George2015-12-31
* py/map: Add fast-path for hashing of map index when it is a qstr.Damien George2015-12-26
* py: Use MP_OBJ_NULL instead of NULL when appropriate.Damien George2015-11-20
* py/map: Store key/value in earliest possible slot in hash table.Damien George2015-11-19
* py: Convert hash API to use MP_UNARY_OP_HASH instead of ad-hoc function.Damien George2015-05-12
* py: Some trivial cosmetic changes, for code style consistency.Damien George2015-04-04
* py: Clarify API for map/set lookup when removing&adding at once.Damien George2015-03-20
* py: Implement core of OrderedDict type.Paul Sokolovsky2015-03-20
* py, unix: Allow to compile with -Wsign-compare.Damien George2015-01-16
* py: Move to guarded includes, everywhere in py/ core.Damien George2015-01-01
* py: Allow to properly disable builtin "set" object.Damien George2014-12-27
* map: Add empty fixed map.Paul Sokolovsky2014-11-27
* py: Fix some macros defines; cleanup some includes.Damien George2014-11-05
* py: Make map, dict, set use mp_int_t/mp_uint_t exclusively.Damien George2014-08-30
* Rename machine_(u)int_t to mp_(u)int_t.Damien George2014-07-03
* py: Include mpconfig.h before all other includes.Paul Sokolovsky2014-06-21
* Add license header to (almost) all files.Damien George2014-05-03
* py: Fix bug in map lookup of interned string vs non-interned.Damien George2014-04-28
* py: Revert revert for allocation policy of set hash table.Damien George2014-04-07
* py: Revert change to allocation policy for mp_set_t.Damien George2014-04-07
* py: Fix dict.copy() and low-level map/set allocation.Paul Sokolovsky2014-04-06
* py: Make mp_map_lookup not allocate memory on removal.Damien George2014-04-05
* py: Change module globals from mp_map_t* to mp_obj_dict_t*.Damien George2014-04-05
* py: Fix delete operation on map/dict and set objects.Damien George2014-04-05
* map: When removing a key, don't NULL the entry, but mark as deleted.Paul Sokolovsky2014-04-05
* map: Add mp_map_dump() (#ifdef'ed) to be handy when debugging maps.Paul Sokolovsky2014-04-05
* Merge map.h into obj.h.Damien George2014-03-30
* py: Clean up includes.xbe2014-03-17
* Replace global "static" -> "STATIC", to allow "analysis builds". Part 2.Paul Sokolovsky2014-02-12
* py: Allow mp_map_t to be initialised by a fixed-size, const table.Damien George2014-02-08
* Add mp_map_deinit() & mp_map_free() to finalize maps.Paul Sokolovsky2014-01-25
* Revamp qstrs: they now include length and hash.Damien George2014-01-21
* Implemented set.removeJohn R. Lenton2014-01-12
* Implemented set.discardJohn R. Lenton2014-01-12
* Implemented set.clearJohn R. Lenton2014-01-12
* py: Stuff qstr in object pointer; keys for mp_map_t are now always mp_obj_t.Damien George2014-01-08
* Added dict.setdefaultJohn R. Lenton2014-01-07
* implemented dict.popJohn R. Lenton2014-01-07
* Added dict.clear.John R. Lenton2014-01-07
* Change memory allocation API to require size for free and realloc.Damien2013-12-29
* Change object representation from 1 big union to individual structs.Damien2013-12-21
* py: split runtime into map, obj, builtin.Damien2013-12-17