summaryrefslogtreecommitdiff
path: root/py/builtin.c
AgeCommit message (Expand)Author
2014-01-22Second stage of qstr revamp: uPy str object can be qstr or not.Damien George
2014-01-21Merge branch 'master' of github.com:micropython/micropythonDamien George
2014-01-21Revamp qstrs: they now include length and hash.Damien George
2014-01-20Add dummy bytes() constructor.Paul Sokolovsky
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-15Merge branch 'str-repr' of github.com:pfalcon/micropython into pfalcon-str-reprDamien George
2014-01-15Implement repr.Damien George
2014-01-15Implement str() and repr() builtin functions.Paul Sokolovsky
2014-01-15type->print(): Distinguish str() and repr() variety by passing extra param.Paul Sokolovsky
2014-01-14Tidy up.Damien George
2014-01-13Merge remote-tracking branch 'upstream/master' into builtinsJohn R. Lenton
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-13Cleanup built-ins, and fix some compiler warnings/errors.Damien George
2014-01-13sortedJohn 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-09Improved type/class/instance code; mp_obj_type_t now has load_attr, store_attr.Damien George
2014-01-08py: Proper framework for built-in 'type'.Damien George
2014-01-08py: add variable argument exception constructor function.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-08py: Improve __build_class__.Damien George
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
2014-01-03Basic implementation of import.Damien George
2014-01-02py: Add framework for built-in "type()" function.Damien George
2014-01-01py: add int() and float() built-ins, partially implemented.Damien George
2013-12-29py: add dict length function, and fix rt_store_set.Damien
2013-12-29Change memory allocation API to require size for free and realloc.Damien
2013-12-21py: simplify __next__ method for generators.Damien
2013-12-21Change object representation from 1 big union to individual structs.Damien
2013-12-17py: add more Python built-in functions.Damien
2013-12-17py: split runtime into map, obj, builtin.Damien