summaryrefslogtreecommitdiff
path: root/py/py.mk
AgeCommit message (Expand)Author
2014-10-22extmod: Add uheapq module.Damien George
2014-10-13modzlibd: Remove, superceded by moduzlib.Paul Sokolovsky
2014-10-13moduzlib: Integrate into the system.Paul Sokolovsky
2014-10-12modure: Make sure that re1.5 compiled in only of modure itself is enabled.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-09-06py: Add support for emitting native x86 machine code.Damien George
2014-09-04py: Use variable length encoded uints in more places in bytecode.Damien George
2014-08-28py: Move native glue code from runtime.c to new file nativeglue.c.v1.3.1Damien George
2014-08-27Basic native ARM emitterFabian Vogt
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-06-27py: Prune unneeded code from objstrunicode, reuse code in objstr.Paul Sokolovsky
2014-06-27py: Add portable framework to query/check C stack usage.Paul Sokolovsky
2014-05-06modgc: Add new module for GC-related functionality.Paul Sokolovsky
2014-04-26modio: Implement io.StringIO class.Paul Sokolovsky
2014-04-24Makefile: Allow to override "super optimization" options used for some files.Paul Sokolovsky
2014-04-20py: Add arg checking helper functions.Damien George
2014-04-17build: Simplify build directory layout by putting all headers in genhdr.Damien George
2014-04-17Merge branch 'relocatable-build-dir' of github.com:lurch/micropython into lur...Damien George
2014-04-17Merge pull request #507 from pfalcon/nlr-setjmpDamien George
2014-04-17py: Add cmath module, for complex math. Disabled by default.Damien George
2014-04-17nlr: Add implementation using setjmp/longjmp.Paul Sokolovsky
2014-04-16build directory can now be renamedAndrew Scheller
2014-04-13py: Add property object, with basic functionality.Damien George
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-12py: Preprocess qstrdefs.h before feeding to makeqstrdata.py.Paul Sokolovsky
2014-04-10py: Start implementing "struct" module.Paul Sokolovsky
2014-04-07Replace some Makefile commands with variables in py/mkenv.mkAndrew Scheller
2014-04-04Merge pull request #421 from dhylands/git-versionDamien George
2014-04-04py: This time, real proper overflow checking of small int power.Damien George
2014-04-03Add the git version to the bannerDave Hylands
2014-04-03py: Add "io" module.Paul Sokolovsky
2014-04-01Enhance str.format supportDave Hylands
2014-03-27py: Factor out code from runtime.c to emitglue.c.Damien George
2014-03-25Proper support for registering builtin modules in ROM.Damien George
2014-03-22py: Add 'object' object.Damien George
2014-03-22Fixed modulo operator on ints and mp ints to agree with python. Added intdivm...Rachel Dowdall
2014-03-10Rename formatfloat file; remove MICROPY_ENABLE_FLOAT from mpconfigport.h.Damien George
2014-03-10Add proper floating point printing support.Dave Hylands
2014-03-08Implement ROMable modules. Add math module.Damien George
2014-03-03Add basic collections.namedtuple implementation.Paul Sokolovsky
2014-03-01py: Implement bit-shift and not operations for mpz.Damien George
2014-02-22Add arbitrary precision integer support.Damien George