aboutsummaryrefslogtreecommitdiff
path: root/py/obj.h
AgeCommit message (Expand)Author
2014-01-20mp_identity(): Add generic identity function.Paul Sokolovsky
2014-01-20Properly print MP_OBJ_QSTR objects.Paul Sokolovsky
2014-01-20Implement modules as singletons Python semantics.Paul Sokolovsky
2014-01-19Change int to uint for n_args in function with variable arguments.Damien George
2014-01-19py: Add full traceback to exception printing.Damien George
2014-01-19py: Add module/function/class name to exceptions.Damien George
2014-01-18Merge pull request #192 from pfalcon/arraysDamien George
2014-01-18Add source file name and line number to error messages.Damien George
2014-01-18Add skeleton implementation of array.array and bytearray.Paul Sokolovsky
2014-01-18Merge pull request #191 from pfalcon/store-itemDamien George
2014-01-18Merge branch 'master' of github.com:dpgeorge/micropythonDamien George
2014-01-18int: Add value accessors: mp_obj_int_get() & mp_obj_int_get_checked().Paul Sokolovsky
2014-01-18Make VM stack grow upwards, and so no reversed args arrays.Damien George
2014-01-18Add store_item() virtual method to type to implement container[index] = val.Paul Sokolovsky
2014-01-15stm: Fix print methods with new kind argument.Damien George
2014-01-15Merge branch 'str2int' of github.com:xyb/micropython into xyb-str2intDamien George
2014-01-15Merge branch 'str-repr' of github.com:pfalcon/micropython into pfalcon-str-reprDamien George
2014-01-15added filter()John R. Lenton
2014-01-15Added mapJohn R. Lenton
2014-01-15type->print(): Distinguish str() and repr() variety by passing extra param.Paul Sokolovsky
2014-01-14Merge remote-tracking branch 'upstream/master' into builtinsJohn R. Lenton
2014-01-14added enumerate()John R. Lenton
2014-01-14Tidy up.Damien George
2014-01-14Implemented int(str) in UNIXxyb
2014-01-13Made sorted() raise an exception instead of aborting when given no arguments;...John R. Lenton
2014-01-13Cleaned up sorted() as per Damien's suggestions.John R. Lenton
2014-01-13added zip()John R. Lenton
2014-01-12Add framework to support alternative implementations of long int Python type.Paul Sokolovsky
2014-01-12Add proper checks for fits-in-small-int. Make it reusable.Paul Sokolovsky
2014-01-11py: Implement staticmethod and classmethod (internally).Damien George
2014-01-11unified the bopsJohn 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-09py: Implement base class lookup, issubclass, isinstance.Damien George
2014-01-09Improved type/class/instance code; mp_obj_type_t now has load_attr, store_attr.Damien George
2014-01-08py: add variable argument exception constructor function.Damien George
2014-01-08Merge pull request #114 from pfalcon/streams-bootstrapDamien George
2014-01-08py: Stuff qstr in object pointer; keys for mp_map_t are now always mp_obj_t.Damien George
2014-01-08Add support for stream and buffer protocols.Paul Sokolovsky
2014-01-08py: Improve __build_class__.Damien George
2014-01-07py: Small big fix to type declarations.Damien George
2014-01-07Merge remote-tracking branch 'upstream/master' into listsort. Lots of conflic...John R. Lenton
2014-01-07This implements a better (more python-conformant) list.sort.John R. Lenton
2014-01-07Merge branch 'cplusplus' of https://github.com/ian-v/micropython into ian-v-c...Damien George
2014-01-06py: Fix up number operations and coercion.Damien George
2014-01-06Revert MP_BOOL, etc. and use <stdbool.h> insteadian-v
2014-01-06Co-exist with C++ (issue #85)ian-v
2014-01-05Merge remote-tracking branch 'upstream/master' into list_insertJohn R. Lenton
2014-01-04Convert Python types to proper Python type hierarchy.Damien George
2014-01-04Add ellipsis object.Damien George
2014-01-04Merge remote-tracking branch 'upstream/master' into list_insertJohn R. Lenton