aboutsummaryrefslogtreecommitdiff
path: root/py/builtin.h
AgeCommit message (Expand)Author
2014-08-30py: Change uint to mp_uint_t in runtime.h, stackctrl.h, binary.h.Damien George
2014-08-13modzlibd: Decompress part of "zlib" module, based on miniz tinfl.c .Paul Sokolovsky
2014-08-12py: Implement builtin reversed() function.Damien George
2014-07-19py: Make print() accept "file" argument, and actually print to stream.Paul Sokolovsky
2014-07-09moductypes: Foreign data interface module, roughly based on ctype ideas.Paul Sokolovsky
2014-05-24unix modsocket: Make .makefile() method more compliant.Paul Sokolovsky
2014-05-11py: Add basic implementation of hasattr() function.Paul Sokolovsky
2014-05-06modgc: Add new module for GC-related functionality.Paul Sokolovsky
2014-05-03Add license header to (almost) all files.Damien George
2014-04-17py: Make built-in 'range' a class.Damien George
2014-04-17py: Add cmath module, for complex math. Disabled by default.Damien George
2014-04-15py: Add builtin functions bin and oct, and some tests for them.Damien George
2014-04-15py: Add hex builtin function.Damien George
2014-04-13objdict: Add __delitem__.Paul Sokolovsky
2014-04-13objdict: Add __setitem__.Paul Sokolovsky
2014-04-13Merge pull request #476 from pfalcon/static-sysDamien George
2014-04-13py: Factor out impl of special methods for builtin types into opmethods.cPaul Sokolovsky
2014-04-13py, unix: Convert sys module to static representation.Paul Sokolovsky
2014-04-10py: Start implementing "struct" module.Paul Sokolovsky
2014-04-06py: Implement globals() and locals() builtins.Paul Sokolovsky
2014-04-05py: Put default namespace into module __main__.Paul Sokolovsky
2014-04-03py: Add "io" module.Paul Sokolovsky
2014-03-27py: Implement getattr() builtin.Paul Sokolovsky
2014-03-25Proper support for registering builtin modules in ROM.Damien George
2014-03-24py: Remove obsolete declarations; make mp_obj_get_array consistent.Damien George
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