summaryrefslogtreecommitdiff
path: root/py/qstrdefs.h
AgeCommit message (Expand)Author
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
2014-08-12py: Implement builtin reversed() function.Damien George
2014-07-29Merge pull request #738 from dhylands/except-argsDamien George
2014-07-28py: Implement __file__ attribute for modules.Paul Sokolovsky
2014-07-25Add support for storing args during an exception raised by an irq.Dave Hylands
2014-07-19py: Make print() accept "file" argument, and actually print to stream.Paul Sokolovsky
2014-07-11moductypes: Add symbolic constants to specify bitfield position/length.Paul Sokolovsky
2014-07-09moductypes: Foreign data interface module, roughly based on ctype ideas.Paul Sokolovsky
2014-07-03py: Implement sys.maxsize, standard way to check platform "bitness".Paul Sokolovsky
2014-06-25modgc: Add mem_free()/mem_alloc() methods.Paul Sokolovsky
2014-06-12py: Rename builtin "io" to "_io".Paul Sokolovsky
2014-06-08objtype: Enable __lt__ method support for instances.Paul Sokolovsky
2014-06-07modsys: Add optional support for sys.platform.Paul Sokolovsky
2014-06-01Rename bultins config variables to MICROPY_PY_BUILTINS_*.Damien George
2014-05-31add methods isspace(), isalpha(), isdigit(), isupper() and islower() to strKim Bauters
2014-05-24Add SystemExit exception and use it in unix/ and stmhal/ ports.Damien George
2014-05-24Rename configuration variables controling Python features.Damien George
2014-05-24objstr: Implement .endswith().Paul Sokolovsky
2014-05-19py: Implement proper separation between io.FileIO and io.TextIOWrapper.Paul Sokolovsky
2014-05-19objtype: Separate __new__ and __init__ methods.Paul Sokolovsky
2014-05-14objstr.c: Partial implementation of .rsplit().Paul Sokolovsky
2014-05-11py: Add basic implementation of hasattr() function.Paul Sokolovsky
2014-05-10objstr: Implement .lower() and .upper().Paul Sokolovsky
2014-05-10modsys, unix: Add sys.exit(), should be implemented by a port.Paul Sokolovsky
2014-05-10objset: Give up and implement frozenset.Paul Sokolovsky
2014-05-10py: Rename byte_code to bytecode everywhere.Damien George
2014-05-08Add gc.enable, gc.disable; remove pyb.gc.Damien George
2014-05-08py, compiler: Add basic support for A=const(123).Damien George
2014-05-06py: Add keyword arg support to enumerate constructor.Damien George
2014-05-06modgc: Add new module for GC-related functionality.Paul Sokolovsky
2014-05-03Add license header to (almost) all files.Damien George
2014-05-03py, stream: Implement readlines for a stream.Damien George
2014-04-28py: Remove silly comment about interning keywords.Damien George
2014-04-27py: Add '*' qstr for 'import *'; use blank qstr for comprehension arg.Damien George
2014-04-26py: "read" & "write" are so common that make them core.Paul Sokolovsky
2014-04-26modio: Implement io.StringIO class.Paul Sokolovsky
2014-04-26objstr: Implement .lstrip() & .rstrip().Paul Sokolovsky
2014-04-25py: Support instance __call__ method.Paul Sokolovsky
2014-04-21py: Add 'align' and 'data' meta-instructions to inline assembler.Damien George
2014-04-19modstruct: Initial implementation of struct.pack().Paul Sokolovsky