aboutsummaryrefslogtreecommitdiff
path: root/py/qstrdefs.h
AgeCommit message (Expand)Author
2015-04-04py: Implement delete for property and descriptors.Damien George
2015-04-04objstr: Add .splitlines() method.Paul Sokolovsky
2015-03-31objtype: Add special unary methods __pos__, __neg__, __invert__.Paul Sokolovsky
2015-03-26py: Add optional support for descriptors' __get__ and __set__ methods.stijn
2015-03-20py: Implement core of OrderedDict type.Paul Sokolovsky
2015-03-11py: Add support for start/stop/step attributes of builtin range object.Peter D. Gray
2015-02-23py: Implement UnicodeError.Paul Sokolovsky
2015-02-22py: Make math special functions configurable and disabled by default.Damien George
2015-02-22py: Add few more special methods.Paul Sokolovsky
2015-02-15stackctrl: Encode "recursion depth exceeded" message as qstr.Paul Sokolovsky
2015-02-14py: Add setattr builtin.stijn
2015-01-31py: Add MICROPY_PY_ALL_SPECIAL_METHODS and __iadd__ special method under it.Paul Sokolovsky
2015-01-21py: Implement __reversed__ slot.Damien George
2015-01-11py: Add MICROPY_QSTR_BYTES_IN_LEN config option, defaulting to 1.Damien George
2015-01-11py: Add qstr cfg capability; generate QSTR_NULL and QSTR_ from script.Damien George
2015-01-09py: Add MICROPY_PY_MICROPYTHON_MEM_INFO to enable mem-info funcs.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-08modsys: Add sys.print_exception(exc, file=sys.stdout) function.Paul Sokolovsky
2014-12-01modmicropython: Move mem_info() and qstr_info() functions from unix port.Paul Sokolovsky
2014-11-29modubinascii: Add, with hexlify() implementation.Paul Sokolovsky
2014-11-22moduhashlib: Initial module skeleton.Paul Sokolovsky
2014-11-17stream: Implement seek operation support via ioctl, wrapped in generic method.Paul Sokolovsky
2014-11-15py: Use __hash__ method if a type defines itstijn
2014-10-31py: Make gc.enable/disable just control auto-GC; alloc is still allowed.Damien George
2014-10-31py: Add builtin round function.Damien George
2014-10-25py: Add mp_pending_exception global variable, for VM soft interrupt.Damien George
2014-10-25py: Implement compile builtin, enabled only on unix port.Damien George
2014-10-23py: Add builtin memoryview object (mostly using array code).Damien George
2014-10-22extmod: Add uheapq module.Damien George
2014-10-22py: Remove unused and unneeded SystemError exception.Damien George
2014-10-21Implement kwargs for builtin open() and _io.FileIOstijn
2014-10-18unix, stmhal: Implement file.readinto() method.Paul Sokolovsky
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-30py: Remove IOError since it's deprecated; use OSError instead.Damien George
2014-09-29py: Add casting to viper; add native mem stores to viper.Damien George
2014-09-21extmod: Add loads to ujson module.Damien George
2014-09-17py: Add 'builtins' module.Damien George
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-08-27Basic native ARM emitterFabian Vogt
2014-08-26py: Add dispatch for user defined ==, >, <=, >=.Damien George
2014-08-15py: Allow viper to have type annotations.Damien George
2014-08-13modzlibd: Decompress part of "zlib" module, based on miniz tinfl.c .Paul Sokolovsky
2014-08-12py: #if guard qstrs that are optional.Damien George
2014-08-12py: Add .real and .imag attributes to complex numbers.Damien George