summaryrefslogtreecommitdiffstatshomepage
path: root/py/qstrdefs.h
Commit message (Expand)AuthorAge
* 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
* modgc: Add new module for GC-related functionality.Paul Sokolovsky2014-05-06
* Add license header to (almost) all files.Damien George2014-05-03
* py, stream: Implement readlines for a stream.Damien George2014-05-03
* py: Remove silly comment about interning keywords.Damien George2014-04-28
* py: Add '*' qstr for 'import *'; use blank qstr for comprehension arg.Damien George2014-04-27
* py: "read" & "write" are so common that make them core.Paul Sokolovsky2014-04-26
* modio: Implement io.StringIO class.Paul Sokolovsky2014-04-26
* objstr: Implement .lstrip() & .rstrip().Paul Sokolovsky2014-04-26
* py: Support instance __call__ method.Paul Sokolovsky2014-04-25
* py: Add 'align' and 'data' meta-instructions to inline assembler.Damien George2014-04-21
* modstruct: Initial implementation of struct.pack().Paul Sokolovsky2014-04-19
* py: Add cmath module, for complex math. Disabled by default.Damien George2014-04-17
* py: Add builtin functions bin and oct, and some tests for them.Damien George2014-04-15
* py: Fix builtin hex to print prefix.Damien George2014-04-15
* py: Add hex builtin function.Damien George2014-04-15
* modsys: Implement sys.version.Paul Sokolovsky2014-04-14
* objdict: Add __delitem__.Paul Sokolovsky2014-04-13
* py: Add property object, with basic functionality.Damien George2014-04-13
* modsys: Implement sys.byteorder.Paul Sokolovsky2014-04-13
* modsys: Implement basic sys.version_info.Paul Sokolovsky2014-04-13
* Merge pull request #476 from pfalcon/static-sysDamien George2014-04-13
|\
| * py: Move sys attribute qstrs's to core.Paul Sokolovsky2014-04-13
* | objset: Implement __contains__() op-method.Paul Sokolovsky2014-04-13
* | py: Rename collections module to _collections.Paul Sokolovsky2014-04-13
|/
* objstr: Add str.encode() and bytes.decode() methods.Paul Sokolovsky2014-04-13
* builtinimport: Set __path__ attribute on packages.Paul Sokolovsky2014-04-12