summaryrefslogtreecommitdiffstatshomepage
path: root/py/qstrdefs.h
Commit message (Expand)AuthorAge
* py: Add builtin memoryview object (mostly using array code).Damien George2014-10-23
* extmod: Add uheapq module.Damien George2014-10-22
* py: Remove unused and unneeded SystemError exception.Damien George2014-10-22
* Implement kwargs for builtin open() and _io.FileIOstijn2014-10-21
* unix, stmhal: Implement file.readinto() method.Paul Sokolovsky2014-10-18
* modzlibd: Remove, superceded by moduzlib.Paul Sokolovsky2014-10-13
* moduzlib: Integrate into the system.Paul Sokolovsky2014-10-13
* modure: Initial module, using re1.5 (which is based on re1 codebase).Paul Sokolovsky2014-10-11
* py: Remove IOError since it's deprecated; use OSError instead.Damien George2014-09-30
* py: Add casting to viper; add native mem stores to viper.Damien George2014-09-29
* extmod: Add loads to ujson module.Damien George2014-09-21
* py: Add 'builtins' module.Damien George2014-09-17
* py: Add native json printing using existing print framework.Damien George2014-09-17
* Remove skeletal modselect from extmod and just put it in stmhal.Damien George2014-09-07
* stmhal: Implement generic select.select and select.poll.Damien George2014-09-07
* py: Add support for emitting native x86 machine code.Damien George2014-09-06
* Basic native ARM emitterFabian Vogt2014-08-27
* py: Add dispatch for user defined ==, >, <=, >=.Damien George2014-08-26
* py: Allow viper to have type annotations.Damien George2014-08-15
* modzlibd: Decompress part of "zlib" module, based on miniz tinfl.c .Paul Sokolovsky2014-08-13
* py: #if guard qstrs that are optional.Damien George2014-08-12
* py: Add .real and .imag attributes to complex numbers.Damien George2014-08-12
* py: Implement builtin reversed() function.Damien George2014-08-12
* Merge pull request #738 from dhylands/except-argsDamien George2014-07-29
|\
| * Add support for storing args during an exception raised by an irq.Dave Hylands2014-07-25
* | py: Implement __file__ attribute for modules.Paul Sokolovsky2014-07-28
|/
* py: Make print() accept "file" argument, and actually print to stream.Paul Sokolovsky2014-07-19
* moductypes: Add symbolic constants to specify bitfield position/length.Paul Sokolovsky2014-07-11
* moductypes: Foreign data interface module, roughly based on ctype ideas.Paul Sokolovsky2014-07-09
* py: Implement sys.maxsize, standard way to check platform "bitness".Paul Sokolovsky2014-07-03
* modgc: Add mem_free()/mem_alloc() methods.Paul Sokolovsky2014-06-25
* py: Rename builtin "io" to "_io".Paul Sokolovsky2014-06-12
* objtype: Enable __lt__ method support for instances.Paul Sokolovsky2014-06-08
* modsys: Add optional support for sys.platform.Paul Sokolovsky2014-06-07
* Rename bultins config variables to MICROPY_PY_BUILTINS_*.Damien George2014-06-01
* add methods isspace(), isalpha(), isdigit(), isupper() and islower() to strKim Bauters2014-05-31
* Add SystemExit exception and use it in unix/ and stmhal/ ports.Damien George2014-05-24
* Rename configuration variables controling Python features.Damien George2014-05-24
* objstr: Implement .endswith().Paul Sokolovsky2014-05-24
* py: Implement proper separation between io.FileIO and io.TextIOWrapper.Paul Sokolovsky2014-05-19
* objtype: Separate __new__ and __init__ methods.Paul Sokolovsky2014-05-19
* objstr.c: Partial implementation of .rsplit().Paul Sokolovsky2014-05-14
* py: Add basic implementation of hasattr() function.Paul Sokolovsky2014-05-11
* objstr: Implement .lower() and .upper().Paul Sokolovsky2014-05-10
* modsys, unix: Add sys.exit(), should be implemented by a port.Paul Sokolovsky2014-05-10
* objset: Give up and implement frozenset.Paul Sokolovsky2014-05-10
* py: Rename byte_code to bytecode everywhere.Damien George2014-05-10
* Add gc.enable, gc.disable; remove pyb.gc.Damien George2014-05-08
* py, compiler: Add basic support for A=const(123).Damien George2014-05-08
* py: Add keyword arg support to enumerate constructor.Damien George2014-05-06