- ea2c936 objstrunicode: Refactor str_index_to_ptr() following objstr. by Paul Sokolovsky · 11 years ago
- 26fda6d objstr: 64-bit issues. by Paul Sokolovsky · 11 years ago
- 00c904b objstrunicode: Signedness issues. by Paul Sokolovsky · 11 years ago
- 1044c3d unicode: Make get_char()/next_char()/charlen() be 8-bit compatible. by Paul Sokolovsky · 11 years ago
- 5048df0 objstr: find(), rfind(), index(): Make return value be unicode-aware. by Paul Sokolovsky · 11 years ago
- 46d31e9 unicode: Add utf8_ptr_to_index(). by Paul Sokolovsky · 11 years ago
- ded0fc7 py: Add dedicated unicode header. by Paul Sokolovsky · 11 years ago
- 79b7fe2 objstrunicode: Implement iterator. by Paul Sokolovsky · 11 years ago
- cdc020d objstrunicode: Re-add buffer protocol back for now, required for io.StringIO. by Paul Sokolovsky · 11 years ago
- e7f2b4c objstrunicode: Revamp len() handling for unicode, and optimize bool(). by Paul Sokolovsky · 11 years ago
- 86d3898 objstrunicode: Get rid of bytes checking, it's separate type. by Paul Sokolovsky · 11 years ago
- d215ee1 py: Make MICROPY_PY_BUILTINS_STR_UNICODE=1 buildable. by Paul Sokolovsky · 11 years ago
- 9731912 py: Prune unneeded code from objstrunicode, reuse code in objstr. by Paul Sokolovsky · 11 years ago
- 165eb69 vstr: Restore bytestr compatibility. by Paul Sokolovsky · 11 years ago
- 42a5251 builtin: Restore bytestr compatibility. by Paul Sokolovsky · 11 years ago
- 2ba2299 lexer, vstr: Add unicode support. by Chris Angelico · 11 years ago
- 9a1a4be builtin: ord, chr: Unicode support. by Chris Angelico · 11 years ago
- 64b468d objstrunicode: Basic implementation of unicode handling. by Chris Angelico · 11 years ago
- 8386534 objstrunicode: Complete copy of objstr, to be patched for unicode support. by Paul Sokolovsky · 11 years ago
- c88987c py: Implement basic unicode functions. by Chris Angelico · 11 years ago
- 12bc13e mpconfig.h: Add MICROPY_PY_BUILTINS_STR_UNICODE. by Paul Sokolovsky · 11 years ago
- 2366869 py: Add portable framework to query/check C stack usage. by Paul Sokolovsky · 11 years ago
- f3de62e binary: machine_uint_t vs uint dichotomy starts doing real damage. by Paul Sokolovsky · 11 years ago
- 7a2f166 modstruct: Fix alignment handling issues. by Paul Sokolovsky · 11 years ago
- 5aa740c modgc: Add mem_free()/mem_alloc() methods. by Paul Sokolovsky · 11 years ago
- e973acd Merge branch 'master' of github.com:micropython/micropython by Damien George · 11 years ago
- 780e54c py: Implement delete_attr in native emitter. by Damien George · 11 years ago
- a96cc82 py: Support arm and thumb ARM ISAs, in addition to thumb2. by Paul Sokolovsky · 11 years ago
- 59c675a py: Include mpconfig.h before all other includes. by Paul Sokolovsky · 11 years ago
- 4c4b9d1 mkrules.mk: Pass $(COPT) to link stage. by Paul Sokolovsky · 11 years ago
- 0fc7efb makefile: Pass STRIPFLAGS_EXTRA to strip. by Paul Sokolovsky · 11 years ago
- 3b6f7b9 py: Separate MICROPY_PY_BUILTINS_COMPLEX from MICROPY_PY_BUILTINS_FLOAT. by Paul Sokolovsky · 11 years ago
- 7efbd32 Merge pull request #697 from stinos/gc-debug by Paul Sokolovsky · 11 years ago
- f6932d6 Prefix ARRAY_SIZE with micropython prefix MP_ by Emmanuel Blot · 11 years ago
- bf3366a Add missing “assert.h” file header inclusion from “nlr.h” by Emmanuel Blot · 11 years ago
- 9acb5e4 gc: Turn off debugging info again by stijn · 11 years ago
- def10ce gc: Keep debug statements at beginning of scope where possible by stijn · 11 years ago
- bbcea3f gc: More verbose debugging by stijn · 11 years ago
- 0294661 parsenum: Signedness issues. by Paul Sokolovsky · 11 years ago
- e3cfc0d objstr: Refactor to work with char pointers instead of indexes. by Paul Sokolovsky · 11 years ago
- 7ddbd1b unicode: Add trivial implementation of unichar_charlen(). by Paul Sokolovsky · 11 years ago
- b0bb458 unicode: String API is const byte*. by Paul Sokolovsky · 11 years ago
- 2ec38a1 objstr: Be 8-bit clean even for repr(). by Paul Sokolovsky · 11 years ago
- c037694 py, gc: Revert ret_ptr to void*, casting to byte* for memset. by Damien George · 11 years ago
- 63b2237 Merge branch 'gc-pointers' of github.com:stinos/micropython into stinos-gc-pointers by Damien George · 11 years ago
- e22cddb stream: Use mp_obj_is_true() for EOF testing. by Paul Sokolovsky · 11 years ago
- f33385f gc: Use byte* pointers instead of void* for pointer arithmetic by stijn · 11 years ago
- 8340c48 py: Revert change of include, "" back to <> for mpconfigport.h. by Damien George · 11 years ago v1.1
- fbdf2f1 py: Rename builtin "io" to "_io". by Paul Sokolovsky · 11 years ago
- 8a0801a py: Make 3 functions static. by Damien George · 11 years ago
- 73c98d8 py: Fix static defn in qstr; include mpconfigport.h with "" (not <>). by Damien George · 11 years ago
- 0c0f446 objfun: Remove no longer used mp_obj_fun_prepare_simple_args(). by Paul Sokolovsky · 11 years ago
- 5f4a667 objgenerator: Finish refactor to use mp_setup_code_state(). by Paul Sokolovsky · 11 years ago
- f77d0c5 objgenerator: First iteration of refactor to use mp_setup_code_state(). by Paul Sokolovsky · 11 years ago
- 49df795 objfun: Factor out mp_setup_code_state() function to set up code_state object. by Paul Sokolovsky · 11 years ago
- 58cbb4d py: Implement __contains__ special method. by Damien George · 11 years ago
- 1f44e11 Remove unnecessary bounds check from mp_seq_get_fast_slice_indexes. by Chris Angelico · 11 years ago
- 195de32 objtype: Fix passing of class param to inherited classmethods. by Paul Sokolovsky · 11 years ago
- 639863d objtype: Optimize stack usage mp_obj_class_lookup(). by Paul Sokolovsky · 11 years ago
- df896ec Merge branch 'alloca' of github.com:marcusva/micropython into marcusva-alloca by Damien George · 11 years ago
- 049a7a8 py: Simplify function call of a bytecode object. by Damien George · 11 years ago
- b4efac1 py: Make sure getattr() works with non-interned strings (by interning them). by Paul Sokolovsky · 11 years ago
- d31a093 Merge branch 'master' of github.com:micropython/micropython by Damien George · 11 years ago
- 5473f74 objtype: Enable __lt__ method support for instances. by Paul Sokolovsky · 11 years ago
- f0778a7 py: Implement default keyword only args. by Damien George · 11 years ago
- b9b9354 modsys: Add optional support for sys.platform. by Paul Sokolovsky · 11 years ago
- 7e4a2b0 py: Add generic mp_not_implemented() func to use instead of assert(). by Paul Sokolovsky · 11 years ago
- aabd83e py: Merge mp_execute_bytecode into fun_bc_call. by Damien George · 11 years ago
- 82ed3d6 py, mk: Revert change where build variables set with ?=. by Damien George · 11 years ago
- 0c90eb1 - FreeBSD provides alloca() via stdlib.h, in contrast to Linux and Windows by Marcus von Appen · 11 years ago
- 8ffc024 - Let the build environment decide about the toolchain to be used, in case by Marcus von Appen · 11 years ago
- de09caa Bring the C and Python compute_hash functions into consistency by Chris Angelico · 11 years ago
- d72bc27 objint: Fix corner case in buffer access. by Paul Sokolovsky · 11 years ago
- b69f9fa Fix str.modulo when precision is specified. by Dave Hylands · 11 years ago
- 380f147 modgc: Real 64-bit cleanness. by Paul Sokolovsky · 11 years ago
- a3ef808 modgc: 64-bit cleanness. by Paul Sokolovsky · 11 years ago
- 755a55f modgc: Implement return value for gc.collect(), enable on Unix. by Paul Sokolovsky · 11 years ago
- d4c2bdd py: Raise TypeError when trying to format non-int with %x,%o,%X. by Damien George · 11 years ago
- f675ff3 Merge pull request #665 from Rosuav/naming3.3 by Paul Sokolovsky · 11 years ago
- 11de839 py: Small changes to objstr.c, including a bug fix. by Damien George · 11 years ago
- daf973a Change comments (mainly URLs) to no longer specifically say Python 3.3 by Chris Angelico · 11 years ago
- 75ce925 objstr: Implement "%(key)s" % {} formatting for strings and dicts. by Paul Sokolovsky · 11 years ago
- 9ab8ab2 Replace assert(0) with a self-documenting TODO string by Chris Angelico · 11 years ago
- 4867413 Simplify detection of quote characters in mp_str_print_quoted. by Chris Angelico · 11 years ago
- 29bf739 Correct file reference (there's no qstrraw.h) by Chris Angelico · 11 years ago
- b294a7e py: Properly fix configuration of float and math module. by Damien George · 11 years ago
- 3f52262 py: Allow tail call optimisation in mp_call_function_n_kw. by Damien George · 11 years ago
- 65ec332 py: Fix configuration of math module. by Damien George · 11 years ago
- bcb6ca4 py: Implement full behaviour of dict.update(), and dict(). by Damien George · 11 years ago
- 411732e vm: If there's no lineno info, set lineno in traceback to 0, not 1. by Paul Sokolovsky · 11 years ago
- b8f117d py: For optimization level -O3 and higher, remove lineno info from bytecode. by Paul Sokolovsky · 11 years ago
- d3439d0 py: Instead of having "debug on" var, have "optimization level" var. by Paul Sokolovsky · 11 years ago
- f753971 showbc: Make micropython -v also dump bytecode in hex form. by Paul Sokolovsky · 11 years ago
- a4ac5b9 showbc: Make sure it's possible to trace MAKE_FUNCTION arg to actual bytecode. by Paul Sokolovsky · 11 years ago
- 8bf8404 showbc: Print code block header at the beginning, not in the middle of dump. by Paul Sokolovsky · 11 years ago
- b325d25 lexer: Add another comment for somewhat obscure way __debug__ is handled. by Paul Sokolovsky · 11 years ago
- 6279883 modstruct: Add one more extension to typecodes - 'S', a pointer to C string. by Paul Sokolovsky · 11 years ago
- fcc9cf6 py, str: Replace enum with actual function pointer. by Damien George · 11 years ago
- c49ddb9 py: Fix configurability of builtin slice. by Damien George · 11 years ago
- 3ebd4d0 py: Add option to disable set() object (enabled by default). by Damien George · 11 years ago