aboutsummaryrefslogtreecommitdiff
path: root/py/objdict.c
AgeCommit message (Expand)Author
2014-01-19Change int to uint for n_args in function with variable arguments.Damien George
2014-01-18Make VM stack grow upwards, and so no reversed args arrays.Damien George
2014-01-15type->print(): Distinguish str() and repr() variety by passing extra param.Paul Sokolovsky
2014-01-13Merge remote-tracking branch 'upstream/master' into containmentJohn R. Lenton
2014-01-11py: Implement staticmethod and classmethod (internally).Damien George
2014-01-11Implemented support for `in` and `not in` operators.John R. Lenton
2014-01-10Added dict.fromkeys. Are we done with dict and #99 yet? I do think we are.John R. Lenton
2014-01-10dict views now, refactoring later.John R. Lenton
2014-01-09Improved type/class/instance code; mp_obj_type_t now has load_attr, store_attr.Damien George
2014-01-08py: Stuff qstr in object pointer; keys for mp_map_t are now always mp_obj_t.Damien George
2014-01-07Moved dict methods out to a mp_method_t.John R. Lenton
2014-01-07added a first pass of dict.updateJohn R. Lenton
2014-01-07Added dict.setdefaultJohn R. Lenton
2014-01-07Added dict.popitemJohn R. Lenton
2014-01-07implemented dict.popJohn R. Lenton
2014-01-07Added dict.get.John R. Lenton
2014-01-07Added dict.copyJohn R. Lenton
2014-01-07make dict_len use the map's used countJohn R. Lenton
2014-01-07Added dict.clear.John R. Lenton
2014-01-07Added dict iterator.John R. Lenton
2014-01-05Convert many object types structs to use C99 tagged initializer syntax.Paul Sokolovsky
2014-01-04Convert Python types to proper Python type hierarchy.Damien George
2014-01-04Split qstr into pools, and put initial pool in ROM.Damien George
2013-12-29py: add dict length function, and fix rt_store_set.Damien
2013-12-21Change object representation from 1 big union to individual structs.Damien