| Age | Commit message (Expand) | Author |
| 2014-08-12 | py: Implement builtin reversed() function. | Damien George |
| 2014-08-12 | py: Make a function static; replace NULL with MP_OBJ_NULL. | Damien George |
| 2014-08-11 | py, objstr: Optimise bytes subscr when unicode is enabled. | Damien George |
| 2014-08-11 | py, modcmath: Fix doc comment, and add some more of them. | Damien George |
| 2014-08-11 | objstr: Make sure that bytes are indexed as bytes, not as unicode. | Paul Sokolovsky |
| 2014-08-10 | objstr: split(): check arg type consistency (str vs bytes). | Paul Sokolovsky |
| 2014-08-10 | py: binary.c: Properly implement alignment for native unpacked structs. | Paul Sokolovsky |
| 2014-08-10 | doc: Fix up a few docs in sys module. | Damien George |
| 2014-08-10 | doc: Document gc, sys, math, cmath. | Damien George |
| 2014-08-10 | objarray: Implement equality testing between arrays and other buffers. | Paul Sokolovsky |
| 2014-08-10 | py: mp_buffer_info_t::buf may be valid, but NULL for empty objects. | Paul Sokolovsky |
| 2014-08-08 | py: Fix bug where GC finaliser table was not completely zeroed out. | Damien George |
| 2014-08-07 | py: Fix bug in mpn_shl (multi-prec int shift left). | Damien George |
| 2014-08-04 | Put call to qstr_init and mp_init_emergency_exc_buf in mp_init. | Damien George |
| 2014-07-31 | py: Improve encoding scheme for line-number to bytecode map. | Damien George |
| 2014-07-31 | Merge branch 'master' of https://github.com/micropython/micropython | Damien George |
| 2014-07-31 | py: Improve handling of long-int overflow. | Damien George |
| 2014-07-31 | py: Make MP_OBJ_NEW_SMALL_INT cast arg to mp_int_t itself. | Damien George |
| 2014-07-31 | py: Add mp_obj_str_builder_end_with_len. | Damien George |
| 2014-07-30 | py: Change lexer stream API to return bytes not chars. | Damien George |
| 2014-07-29 | Merge pull request #738 from dhylands/except-args | Damien George |
| 2014-07-28 | py: Implement __file__ attribute for modules. | Paul Sokolovsky |
| 2014-07-28 | py: Make id() return small int for the most common address space mapping. | Paul Sokolovsky |
| 2014-07-27 | py: Change stream protocol API: fns return uint; is_text for text. | Damien George |
| 2014-07-25 | Add support for storing args during an exception raised by an irq. | Dave Hylands |
| 2014-07-24 | py: Make long ints hashable. | Damien George |
| 2014-07-23 | streams: Treat non-error output size as unsigned. | Paul Sokolovsky |
| 2014-07-23 | stream: Revert to checking for the correct error value. | Paul Sokolovsky |
| 2014-07-21 | Deal with reading a buffer less than what was allocated. | Dave Hylands |
| 2014-07-19 | py: Make print() accept "file" argument, and actually print to stream. | Paul Sokolovsky |
| 2014-07-19 | py: Add stream reading of n unicode chars; unicode support by default. | Damien George |
| 2014-07-17 | py: Remove unnecessary argument in bytearray print. | Damien George |
| 2014-07-17 | formatfloat.c: Typo fix in comment. | Paul Sokolovsky |
| 2014-07-17 | py, inline asm: Change "and" op name to "and_" to avoid keyword clash. | Damien George |
| 2014-07-13 | stream: Factor out mp_stream_write() method to write a memstring to stream. | Paul Sokolovsky |
| 2014-07-12 | py: Add generic helper to align a pointer. | Paul Sokolovsky |
| 2014-07-12 | emitbc: Fix structure field alignment issue. | Paul Sokolovsky |
| 2014-07-11 | moductypes: Add symbolic constants to specify bitfield position/length. | Paul Sokolovsky |
| 2014-07-09 | moductypes: Foreign data interface module, roughly based on ctype ideas. | Paul Sokolovsky |
| 2014-07-05 | binary: Factor out mp_binary_set_int(). | Paul Sokolovsky |
| 2014-07-05 | py: Automatically ake __new__ a staticmethod. | Damien George |
| 2014-07-03 | py: Implement sys.maxsize, standard way to check platform "bitness". | Paul Sokolovsky |
| 2014-07-03 | parser: Convert (u)int to mp_(u)int_t. | Damien George |
| 2014-07-03 | lexer: Convert type (u)int to mp_(u)int_t. | Damien George |
| 2014-07-03 | Rename machine_(u)int_t to mp_(u)int_t. | Damien George |
| 2014-07-02 | Merge branch 'teensy-new' of github.com:dhylands/micropython into dhylands-te... | Damien George |
| 2014-07-01 | py, objexcept: Only check for locked gc if gc is enabled. | Damien George |
| 2014-07-01 | Merge branch 'preserve-except' of github.com:dhylands/micropython into dhylan... | Damien George |
| 2014-06-30 | Try not to cause a MemoryError when raising an exception during nterrupt hand... | Dave Hylands |
| 2014-07-01 | stackctrl: Add "mp_" prefix. | Paul Sokolovsky |