aboutsummaryrefslogtreecommitdiff
path: root/py/builtin.h
AgeCommit message (Expand)Author
2014-03-08Implement ROMable modules. Add math module.Damien George
2014-03-03Add basic collections.namedtuple implementation.Paul Sokolovsky
2014-02-04Expose __import__() function.Paul Sokolovsky
2014-02-03py: Implement builtin exec.Damien George
2014-02-02py: Add very basic implementation of dir() builtin.Damien George
2014-02-01Implement and add tests for the id() builtin function.xbe
2014-01-20Add dummy bytes() constructor.Paul Sokolovsky
2014-01-20py: Put micropython module init code in builtinmp.c.Damien George
2014-01-20Expose memory stats functions via "micropython" module.Paul Sokolovsky
2014-01-15Merge branch 'str-repr' of github.com:pfalcon/micropython into pfalcon-str-reprDamien George
2014-01-15Implement eval.Damien George
2014-01-15Implement repr.Damien George
2014-01-15Implement str() and repr() builtin functions.Paul Sokolovsky
2014-01-13Merge remote-tracking branch 'upstream/master' into builtinsJohn R. Lenton
2014-01-13Cleanup built-ins, and fix some compiler warnings/errors.Damien George
2014-01-13sortedJohn R. Lenton
2014-01-09py: Implement base class lookup, issubclass, isinstance.Damien George
2014-01-08py: Improve __build_class__.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-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