| Commit message (Expand) | Author | Age |
* | py: Make print() accept "file" argument, and actually print to stream. | Paul Sokolovsky | 2014-07-19 |
* | moductypes: Add symbolic constants to specify bitfield position/length. | Paul Sokolovsky | 2014-07-11 |
* | moductypes: Foreign data interface module, roughly based on ctype ideas. | Paul Sokolovsky | 2014-07-09 |
* | py: Implement sys.maxsize, standard way to check platform "bitness". | Paul Sokolovsky | 2014-07-03 |
* | modgc: Add mem_free()/mem_alloc() methods. | Paul Sokolovsky | 2014-06-25 |
* | py: Rename builtin "io" to "_io". | Paul Sokolovsky | 2014-06-12 |
* | objtype: Enable __lt__ method support for instances. | Paul Sokolovsky | 2014-06-08 |
* | modsys: Add optional support for sys.platform. | Paul Sokolovsky | 2014-06-07 |
* | Rename bultins config variables to MICROPY_PY_BUILTINS_*. | Damien George | 2014-06-01 |
* | add methods isspace(), isalpha(), isdigit(), isupper() and islower() to str | Kim Bauters | 2014-05-31 |
* | Add SystemExit exception and use it in unix/ and stmhal/ ports. | Damien George | 2014-05-24 |
* | Rename configuration variables controling Python features. | Damien George | 2014-05-24 |
* | objstr: Implement .endswith(). | Paul Sokolovsky | 2014-05-24 |
* | py: Implement proper separation between io.FileIO and io.TextIOWrapper. | Paul Sokolovsky | 2014-05-19 |
* | objtype: Separate __new__ and __init__ methods. | Paul Sokolovsky | 2014-05-19 |
* | objstr.c: Partial implementation of .rsplit(). | Paul Sokolovsky | 2014-05-14 |
* | py: Add basic implementation of hasattr() function. | Paul Sokolovsky | 2014-05-11 |
* | objstr: Implement .lower() and .upper(). | Paul Sokolovsky | 2014-05-10 |
* | modsys, unix: Add sys.exit(), should be implemented by a port. | Paul Sokolovsky | 2014-05-10 |
* | objset: Give up and implement frozenset. | Paul Sokolovsky | 2014-05-10 |
* | py: Rename byte_code to bytecode everywhere. | Damien George | 2014-05-10 |
* | Add gc.enable, gc.disable; remove pyb.gc. | Damien George | 2014-05-08 |
* | py, compiler: Add basic support for A=const(123). | Damien George | 2014-05-08 |
* | py: Add keyword arg support to enumerate constructor. | Damien George | 2014-05-06 |
* | modgc: Add new module for GC-related functionality. | Paul Sokolovsky | 2014-05-06 |
* | Add license header to (almost) all files. | Damien George | 2014-05-03 |
* | py, stream: Implement readlines for a stream. | Damien George | 2014-05-03 |
* | py: Remove silly comment about interning keywords. | Damien George | 2014-04-28 |
* | py: Add '*' qstr for 'import *'; use blank qstr for comprehension arg. | Damien George | 2014-04-27 |
* | py: "read" & "write" are so common that make them core. | Paul Sokolovsky | 2014-04-26 |
* | modio: Implement io.StringIO class. | Paul Sokolovsky | 2014-04-26 |
* | objstr: Implement .lstrip() & .rstrip(). | Paul Sokolovsky | 2014-04-26 |
* | py: Support instance __call__ method. | Paul Sokolovsky | 2014-04-25 |
* | py: Add 'align' and 'data' meta-instructions to inline assembler. | Damien George | 2014-04-21 |
* | modstruct: Initial implementation of struct.pack(). | Paul Sokolovsky | 2014-04-19 |
* | py: Add cmath module, for complex math. Disabled by default. | Damien George | 2014-04-17 |
* | py: Add builtin functions bin and oct, and some tests for them. | Damien George | 2014-04-15 |
* | py: Fix builtin hex to print prefix. | Damien George | 2014-04-15 |
* | py: Add hex builtin function. | Damien George | 2014-04-15 |
* | modsys: Implement sys.version. | Paul Sokolovsky | 2014-04-14 |
* | objdict: Add __delitem__. | Paul Sokolovsky | 2014-04-13 |
* | py: Add property object, with basic functionality. | Damien George | 2014-04-13 |
* | modsys: Implement sys.byteorder. | Paul Sokolovsky | 2014-04-13 |
* | modsys: Implement basic sys.version_info. | Paul Sokolovsky | 2014-04-13 |
* | Merge pull request #476 from pfalcon/static-sys | Damien George | 2014-04-13 |
|\ |
|
| * | py: Move sys attribute qstrs's to core. | Paul Sokolovsky | 2014-04-13 |
* | | objset: Implement __contains__() op-method. | Paul Sokolovsky | 2014-04-13 |
* | | py: Rename collections module to _collections. | Paul Sokolovsky | 2014-04-13 |
|/ |
|
* | objstr: Add str.encode() and bytes.decode() methods. | Paul Sokolovsky | 2014-04-13 |
* | builtinimport: Set __path__ attribute on packages. | Paul Sokolovsky | 2014-04-12 |