1. e3737b8 formatfloat.c: Typo fix in comment. by Paul Sokolovsky · 11 years ago
  2. a4022c9 py, inline asm: Change "and" op name to "and_" to avoid keyword clash. by Damien George · 11 years ago
  3. ac736f1 stream: Factor out mp_stream_write() method to write a memstring to stream. by Paul Sokolovsky · 11 years ago
  4. 564e464 py: Add generic helper to align a pointer. by Paul Sokolovsky · 11 years ago
  5. 58c9586 emitbc: Fix structure field alignment issue. by Paul Sokolovsky · 11 years ago
  6. 2097c8b moductypes: Add symbolic constants to specify bitfield position/length. by Paul Sokolovsky · 11 years ago
  7. 8215847 moductypes: Foreign data interface module, roughly based on ctype ideas. by Paul Sokolovsky · 11 years ago
  8. 5fa5ca4 binary: Factor out mp_binary_set_int(). by Paul Sokolovsky · 11 years ago
  9. 0182385 py: Automatically ake __new__ a staticmethod. by Damien George · 11 years ago
  10. 4e0eeeb py: Implement sys.maxsize, standard way to check platform "bitness". by Paul Sokolovsky · 11 years ago
  11. 3816182 parser: Convert (u)int to mp_(u)int_t. by Damien George · 11 years ago
  12. 54eb4e7 lexer: Convert type (u)int to mp_(u)int_t. by Damien George · 11 years ago
  13. 40f3c02 Rename machine_(u)int_t to mp_(u)int_t. by Damien George · 11 years ago
  14. 7a37f64 Merge branch 'teensy-new' of github.com:dhylands/micropython into dhylands-teensy-new by Damien George · 11 years ago
  15. f0b2972 py, objexcept: Only check for locked gc if gc is enabled. by Damien George · 11 years ago
  16. f065344 Merge branch 'preserve-except' of github.com:dhylands/micropython into dhylands-preserve-except by Damien George · 11 years ago
  17. 2fe841d Try not to cause a MemoryError when raising an exception during nterrupt handling. by Dave Hylands · 11 years ago
  18. caa7334 stackctrl: Add "mp_" prefix. by Paul Sokolovsky · 11 years ago
  19. 4039a26 Merge pull request #710 from iabdalkader/assert by Damien George · 11 years ago
  20. b601d95 py: Improvements to native emitter. by Damien George · 11 years ago
  21. ec6fa87 windows: Sync mpconfigport.h with the unix' version by stijn · 11 years ago
  22. 9e215fa py: Make unichar_charlen() accept/return machine_uint_t. by Paul Sokolovsky · 11 years ago
  23. 8546ce1 py: Add missing #endif. by Damien George · 11 years ago
  24. e04a44e py: Small comments, name changes, use of machine_int_t. by Damien George · 11 years ago
  25. b3a50f0 Merge branch 'master' into unicode by Damien George · 11 years ago
  26. 8993fb6 py: Add protection against printing too nested or recursive data structures. by Paul Sokolovsky · 11 years ago
  27. cb78f86 py: Allow to disable array module and bytearray type. by Paul Sokolovsky · 11 years ago
  28. 8a96ebe py: Move stack_ctrl_init() to mp_init(). by Paul Sokolovsky · 11 years ago
  29. f5f6c3b streams: Reading by char count from unicode text streams is not implemented. by Paul Sokolovsky · 11 years ago
  30. ce81312 misc: Add count_lead_ones() function, useful for UTF-8 handling. by Paul Sokolovsky · 11 years ago
  31. ea2c936 objstrunicode: Refactor str_index_to_ptr() following objstr. by Paul Sokolovsky · 11 years ago
  32. 26fda6d objstr: 64-bit issues. by Paul Sokolovsky · 11 years ago
  33. 00c904b objstrunicode: Signedness issues. by Paul Sokolovsky · 11 years ago
  34. 1044c3d unicode: Make get_char()/next_char()/charlen() be 8-bit compatible. by Paul Sokolovsky · 11 years ago
  35. 5048df0 objstr: find(), rfind(), index(): Make return value be unicode-aware. by Paul Sokolovsky · 11 years ago
  36. 46d31e9 unicode: Add utf8_ptr_to_index(). by Paul Sokolovsky · 11 years ago
  37. ded0fc7 py: Add dedicated unicode header. by Paul Sokolovsky · 11 years ago
  38. 79b7fe2 objstrunicode: Implement iterator. by Paul Sokolovsky · 11 years ago
  39. cdc020d objstrunicode: Re-add buffer protocol back for now, required for io.StringIO. by Paul Sokolovsky · 11 years ago
  40. e7f2b4c objstrunicode: Revamp len() handling for unicode, and optimize bool(). by Paul Sokolovsky · 11 years ago
  41. 86d3898 objstrunicode: Get rid of bytes checking, it's separate type. by Paul Sokolovsky · 11 years ago
  42. d215ee1 py: Make MICROPY_PY_BUILTINS_STR_UNICODE=1 buildable. by Paul Sokolovsky · 11 years ago
  43. 9731912 py: Prune unneeded code from objstrunicode, reuse code in objstr. by Paul Sokolovsky · 11 years ago
  44. 165eb69 vstr: Restore bytestr compatibility. by Paul Sokolovsky · 11 years ago
  45. 42a5251 builtin: Restore bytestr compatibility. by Paul Sokolovsky · 11 years ago
  46. 2ba2299 lexer, vstr: Add unicode support. by Chris Angelico · 11 years ago
  47. 9a1a4be builtin: ord, chr: Unicode support. by Chris Angelico · 11 years ago
  48. 64b468d objstrunicode: Basic implementation of unicode handling. by Chris Angelico · 11 years ago
  49. 8386534 objstrunicode: Complete copy of objstr, to be patched for unicode support. by Paul Sokolovsky · 11 years ago
  50. c88987c py: Implement basic unicode functions. by Chris Angelico · 11 years ago
  51. 12bc13e mpconfig.h: Add MICROPY_PY_BUILTINS_STR_UNICODE. by Paul Sokolovsky · 11 years ago
  52. 2366869 py: Add portable framework to query/check C stack usage. by Paul Sokolovsky · 11 years ago
  53. f3de62e binary: machine_uint_t vs uint dichotomy starts doing real damage. by Paul Sokolovsky · 11 years ago
  54. 7a2f166 modstruct: Fix alignment handling issues. by Paul Sokolovsky · 11 years ago
  55. 5aa740c modgc: Add mem_free()/mem_alloc() methods. by Paul Sokolovsky · 11 years ago
  56. e973acd Merge branch 'master' of github.com:micropython/micropython by Damien George · 11 years ago
  57. 780e54c py: Implement delete_attr in native emitter. by Damien George · 11 years ago
  58. a96cc82 py: Support arm and thumb ARM ISAs, in addition to thumb2. by Paul Sokolovsky · 11 years ago
  59. 59c675a py: Include mpconfig.h before all other includes. by Paul Sokolovsky · 11 years ago
  60. 5c8db48 Fix asser_func warning/error by mux · 11 years ago
  61. 4c4b9d1 mkrules.mk: Pass $(COPT) to link stage. by Paul Sokolovsky · 11 years ago
  62. 0fc7efb makefile: Pass STRIPFLAGS_EXTRA to strip. by Paul Sokolovsky · 11 years ago
  63. 3b6f7b9 py: Separate MICROPY_PY_BUILTINS_COMPLEX from MICROPY_PY_BUILTINS_FLOAT. by Paul Sokolovsky · 11 years ago
  64. 7efbd32 Merge pull request #697 from stinos/gc-debug by Paul Sokolovsky · 11 years ago
  65. f6932d6 Prefix ARRAY_SIZE with micropython prefix MP_ by Emmanuel Blot · 11 years ago
  66. bf3366a Add missing “assert.h” file header inclusion from “nlr.h” by Emmanuel Blot · 11 years ago
  67. 9acb5e4 gc: Turn off debugging info again by stijn · 11 years ago
  68. def10ce gc: Keep debug statements at beginning of scope where possible by stijn · 11 years ago
  69. bbcea3f gc: More verbose debugging by stijn · 11 years ago
  70. 4f1b7fe Updated teensy to build. by Dave Hylands · 11 years ago
  71. 0294661 parsenum: Signedness issues. by Paul Sokolovsky · 11 years ago
  72. e3cfc0d objstr: Refactor to work with char pointers instead of indexes. by Paul Sokolovsky · 11 years ago
  73. 7ddbd1b unicode: Add trivial implementation of unichar_charlen(). by Paul Sokolovsky · 11 years ago
  74. b0bb458 unicode: String API is const byte*. by Paul Sokolovsky · 11 years ago
  75. 2ec38a1 objstr: Be 8-bit clean even for repr(). by Paul Sokolovsky · 11 years ago
  76. c037694 py, gc: Revert ret_ptr to void*, casting to byte* for memset. by Damien George · 11 years ago
  77. 63b2237 Merge branch 'gc-pointers' of github.com:stinos/micropython into stinos-gc-pointers by Damien George · 11 years ago
  78. e22cddb stream: Use mp_obj_is_true() for EOF testing. by Paul Sokolovsky · 11 years ago
  79. f33385f gc: Use byte* pointers instead of void* for pointer arithmetic by stijn · 11 years ago
  80. 8340c48 py: Revert change of include, "" back to <> for mpconfigport.h. by Damien George · 11 years ago v1.1
  81. fbdf2f1 py: Rename builtin "io" to "_io". by Paul Sokolovsky · 11 years ago
  82. 8a0801a py: Make 3 functions static. by Damien George · 11 years ago
  83. 73c98d8 py: Fix static defn in qstr; include mpconfigport.h with "" (not <>). by Damien George · 11 years ago
  84. 0c0f446 objfun: Remove no longer used mp_obj_fun_prepare_simple_args(). by Paul Sokolovsky · 11 years ago
  85. 5f4a667 objgenerator: Finish refactor to use mp_setup_code_state(). by Paul Sokolovsky · 11 years ago
  86. f77d0c5 objgenerator: First iteration of refactor to use mp_setup_code_state(). by Paul Sokolovsky · 11 years ago
  87. 49df795 objfun: Factor out mp_setup_code_state() function to set up code_state object. by Paul Sokolovsky · 11 years ago
  88. 58cbb4d py: Implement __contains__ special method. by Damien George · 11 years ago
  89. 1f44e11 Remove unnecessary bounds check from mp_seq_get_fast_slice_indexes. by Chris Angelico · 11 years ago
  90. 195de32 objtype: Fix passing of class param to inherited classmethods. by Paul Sokolovsky · 11 years ago
  91. 639863d objtype: Optimize stack usage mp_obj_class_lookup(). by Paul Sokolovsky · 11 years ago
  92. df896ec Merge branch 'alloca' of github.com:marcusva/micropython into marcusva-alloca by Damien George · 11 years ago
  93. 049a7a8 py: Simplify function call of a bytecode object. by Damien George · 11 years ago
  94. b4efac1 py: Make sure getattr() works with non-interned strings (by interning them). by Paul Sokolovsky · 11 years ago
  95. d31a093 Merge branch 'master' of github.com:micropython/micropython by Damien George · 11 years ago
  96. 5473f74 objtype: Enable __lt__ method support for instances. by Paul Sokolovsky · 11 years ago
  97. f0778a7 py: Implement default keyword only args. by Damien George · 11 years ago
  98. b9b9354 modsys: Add optional support for sys.platform. by Paul Sokolovsky · 11 years ago
  99. 7e4a2b0 py: Add generic mp_not_implemented() func to use instead of assert(). by Paul Sokolovsky · 11 years ago
  100. aabd83e py: Merge mp_execute_bytecode into fun_bc_call. by Damien George · 11 years ago