summaryrefslogtreecommitdiff
path: root/py/builtin.h
AgeCommit message (Expand)Author
2015-10-27extmod/modlwip: slip: Use stream protocol and be port-independent.Paul Sokolovsky
2015-10-06modussl: SSL socket wrapper module based on axTLS.Paul Sokolovsky
2015-05-04modstruct: Rename module to "ustruct", to allow full Python-level impl.Paul Sokolovsky
2015-05-04modmachine: Add new module to access hardware, starting with physical memory.Paul Sokolovsky
2015-02-14py: Add setattr builtin.stijn
2015-01-12py: Can compile with -Wmissing-declarations and -Wmissing-prototypes.Damien George
2015-01-07py: Put all global state together in state structures.Damien George
2015-01-01py: Move to guarded includes, everywhere in py/ core.Damien George
2014-12-19py: Add execfile function (from Python 2); enable in stmhal port.Damien George
2014-12-09py: Allow builtins to be overridden.Damien George
2014-11-29modubinascii: Add, with hexlify() implementation.Paul Sokolovsky
2014-11-22moduhashlib: Initial module skeleton.Paul Sokolovsky
2014-10-31py: Add builtin round function.Damien George
2014-10-25py: Implement compile builtin, enabled only on unix port.Damien George
2014-10-25py: mp_builtin___import__(): Add const to arg type.Paul Sokolovsky
2014-10-22extmod: Add uheapq module.Damien George
2014-10-21Implement kwargs for builtin open() and _io.FileIOstijn
2014-10-13modzlibd: Remove, superceded by moduzlib.Paul Sokolovsky
2014-10-13moduzlib: Integrate into the system.Paul Sokolovsky
2014-10-11modure: Initial module, using re1.5 (which is based on re1 codebase).Paul Sokolovsky
2014-09-17py: Add native json printing using existing print framework.Damien George
2014-09-07Remove skeletal modselect from extmod and just put it in stmhal.Damien George
2014-09-07stmhal: Implement generic select.select and select.poll.Damien George
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