1. 2a24172 Implemented set.discard by John R. Lenton · 12 years ago
  2. 3b0bd87 Implemented set.copy by John R. Lenton · 12 years ago
  3. 1d7fb2f Implemented set.clear by John R. Lenton · 12 years ago
  4. 19b14d3 Implemented set.add by John R. Lenton · 12 years ago
  5. 0ce03b4 make sets iterable by John R. Lenton · 12 years ago
  6. 69a818d py: Improve memory management for parser; add lexer error for bad line cont. by Damien George · 12 years ago
  7. 97eb73c Merge pull request #148 from pfalcon/list-cmp by Damien George · 12 years ago
  8. e5863d9 py: AssertionError is loaded from global, to match CPython. by Damien George · 12 years ago
  9. c0876f7 Merge pull request #146 from pfalcon/assert-exc by Damien George · 12 years ago
  10. 1945e60 list: Implement comparison operators. by Paul Sokolovsky · 12 years ago
  11. cc57bd2 mp_obj_equal(): For non-trivial types, call out to type's special method. by Paul Sokolovsky · 12 years ago
  12. 729e9cc rt_binary_op(): Don't fall thru in case small_int op result doesn't fit back. by Paul Sokolovsky · 12 years ago
  13. c698d26 list: Add extend() methods and += operator. by Paul Sokolovsky · 12 years ago
  14. b81e1fd Add AssertionError. by Paul Sokolovsky · 12 years ago
  15. eae1644 py: Implement staticmethod and classmethod (internally). by Damien George · 12 years ago
  16. bcbeea0 py: Fix bug where == and != not handled for small_ints. by Damien George · 12 years ago
  17. bc1d369 py: Fix emitcpy and emitnative's binary_op. by Damien George · 12 years ago
  18. 8d4ccc4 Merge branch 'master' of github.com:dpgeorge/micropython by Damien George · 12 years ago
  19. 25042b1 py: Make arg to MP_BC_RAISE_VARARGS a byte. by Damien George · 12 years ago
  20. b8698fc unified the bops by John R. Lenton · 12 years ago
  21. ad97f2a Merge pull request #136 from pfalcon/for-range-downto by Damien George · 12 years ago
  22. e9b4b7a Merge pull request #135 from pfalcon/simple-raise by Damien George · 12 years ago
  23. 46c9e97 Merge pull request #134 from pfalcon/list-mul by Damien George · 12 years ago
  24. 745ce4c Merge pull request #131 from chipaca/dict_fromkeys by Damien George · 12 years ago
  25. 899c69f compile_for_stmt_optimised_range(): Properly handle negative & unknown steps. by Paul Sokolovsky · 12 years ago
  26. 5388a3c Crude attempt to implement RAISE_VARARGS (with args=1 so far only). by Paul Sokolovsky · 12 years ago
  27. 074d3b5 list: Implement list multiplication. by Paul Sokolovsky · 12 years ago
  28. bab5cfb Unsupported operand types for binary operator: dump both args' types. by Paul Sokolovsky · 12 years ago
  29. d6f27fe mp_obj_equal(): Print which types' equality not implemented before assert(). by Paul Sokolovsky · 12 years ago
  30. e06edce mp_repl_is_compound_stmt(): Thinko fix s/true/try/. by Paul Sokolovsky · 12 years ago
  31. 4b919d0 Dump few more bytecodes (based on attempt to run real-world code). by Paul Sokolovsky · 12 years ago
  32. 4bee76e Added dict.fromkeys. Are we done with dict and #99 yet? I do think we are. by John R. Lenton · 12 years ago
  33. 9ec3a87 dict views now, refactoring later. by John R. Lenton · 12 years ago
  34. 2d45429 Use memcpy instead of strncpy; add usart.status to stm. by Damien George · 12 years ago
  35. be84297 Merge pull request #123 from xbe/master by Damien George · 12 years ago
  36. 004cdce py: Implement base class lookup, issubclass, isinstance. by Damien George · 12 years ago
  37. 062478e Improved type/class/instance code; mp_obj_type_t now has load_attr, store_attr. by Damien George · 12 years ago
  38. 7b0f39f Implement str.strip by xbe · 12 years ago
  39. 1143e5e Merge pull request #120 from dhylands/make-build-quieter by Damien George · 12 years ago
  40. 93a9b5b py: Proper framework for built-in 'type'. by Damien George · 12 years ago
  41. 4646801 Make build output quieter. by Dave Hylands · 12 years ago
  42. 6c73ca1 py: add variable argument exception constructor function. by Damien George · 12 years ago
  43. 199b9e0 Merge pull request #114 from pfalcon/streams-bootstrap by Damien George · 12 years ago
  44. 38a2da6 py: Stuff qstr in object pointer; keys for mp_map_t are now always mp_obj_t. by Damien George · 12 years ago
  45. e98cf40 Add generic implementations of Python read()/write methods for streams. by Paul Sokolovsky · 12 years ago
  46. 5b15daf Add support for stream and buffer protocols. by Paul Sokolovsky · 12 years ago
  47. 9193f89 Move lexerstr to main py directory (everyone uses it). by Damien George · 12 years ago
  48. b97669a py: Improve __build_class__. by Damien George · 12 years ago
  49. 6d6bc9e Merge pull request #108 from chipaca/dict_feats by Damien George · 12 years ago
  50. dfc0bac py: Small big fix to type declarations. by Damien George · 12 years ago
  51. baa6654 Moved dict methods out to a mp_method_t. by John R. Lenton · 12 years ago
  52. 9c83ec0 Merge remote-tracking branch 'upstream/master' into dict_feats by John R. Lenton · 12 years ago
  53. 88f3043 added a first pass of dict.update by John R. Lenton · 12 years ago
  54. 1a9951d py: Fix up number operations and coercion. by Damien George · 12 years ago
  55. be8fe5b Added dict.setdefault by John R. Lenton · 12 years ago
  56. f77dce8 Added dict.popitem by John R. Lenton · 12 years ago
  57. 0fcbaa4 implemented dict.pop by John R. Lenton · 12 years ago
  58. cd08873 Added dict.get. by John R. Lenton · 12 years ago
  59. d90b19e Added dict.copy by John R. Lenton · 12 years ago
  60. 7d21d51 make dict_len use the map's used count by John R. Lenton · 12 years ago
  61. 4ce6cea Added dict.clear. Added 0 to the list of primes. Funky primes, these. by John R. Lenton · 12 years ago
  62. a41fe31 Added dict iterator. by John R. Lenton · 12 years ago
  63. 24507af Typo fix in comment. by Paul Sokolovsky · 12 years ago
  64. af61a1a Use constructor to create small int (avoid exposing mp_obj_t internals to VM). by Paul Sokolovsky · 12 years ago
  65. 7775757 Merge pull request #105 from chipaca/listsort by Damien George · 12 years ago
  66. 1e40840 Add OSError, Python 3.3 generic I/O exception. by Paul Sokolovsky · 12 years ago
  67. 3391e19 A bit of stylistic cleanup (chose the wrong side during conflict resolution). by John R. Lenton · 12 years ago
  68. 270112f Merge remote-tracking branch 'upstream/master' into listsort. Lots of conflict fun. by John R. Lenton · 12 years ago
  69. c06763a This implements a better (more python-conformant) list.sort. by John R. Lenton · 12 years ago
  70. 7b21c2d py: Fix allocation of unique code blocks. by Damien George · 12 years ago
  71. 97209d3 Merge branch 'cplusplus' of https://github.com/ian-v/micropython into ian-v-cplusplus by Damien George · 12 years ago
  72. d3ebe48 Factor and simplify Makefile's and mpconfig, part 2. by Damien George · 12 years ago
  73. 136f675 Factor and simplify Makefile's and mpconfig. by Damien George · 12 years ago
  74. a5a01df Make list and str method tables static by ian-v · 12 years ago
  75. 8b1b59c Merge branch 'master' of github.com:dpgeorge/micropython by Damien George · 12 years ago
  76. e2e3d11 py: Fix up number operations and coercion. by Damien George · 12 years ago
  77. 5fd8fd2 Revert MP_BOOL, etc. and use <stdbool.h> instead by ian-v · 12 years ago
  78. 7a16fad Co-exist with C++ (issue #85) by ian-v · 12 years ago
  79. fe039b4 Typo fix in comment. by Paul Sokolovsky · 12 years ago
  80. e5ee169 Use constructor to create small int (avoid exposing mp_obj_t internals to VM). by Paul Sokolovsky · 12 years ago
  81. a10dba7 Merge remote-tracking branch 'upstream/master' into list_reverse by John R. Lenton · 12 years ago
  82. 8137b00 Merge branch 'list_remove' of git://github.com/chipaca/micropython into chipaca-list_remove by Damien George · 12 years ago
  83. aa35fc6 Merge pull request #92 from chipaca/list_insert by Damien George · 12 years ago
  84. 17f4497 Merge pull request #91 from chipaca/list_index by Damien George · 12 years ago
  85. 73595fe Merge pull request #89 from pfalcon/c99-tagged-structs by Damien George · 12 years ago
  86. ba3f87c Merge remote-tracking branch 'upstream/master' into list_reverse by John R. Lenton · 12 years ago
  87. d52a031 Merge remote-tracking branch 'upstream/master' into list_remove by John R. Lenton · 12 years ago
  88. 8428b8f Merge remote-tracking branch 'upstream/master' into list_insert by John R. Lenton · 12 years ago
  89. c553162 Fix off-by-one in non-default values of index's 2nd and 3rd arguments. by John R. Lenton · 12 years ago
  90. 860ffb0 Convert many object types structs to use C99 tagged initializer syntax. by Paul Sokolovsky · 12 years ago
  91. d986b58 Make qstr_init reinitialize last_pool. by Dave Hylands · 12 years ago
  92. 1703597 Merge pull request #80 from xyb/striter by Damien George · 12 years ago
  93. f0691f4 Fix qstr in objlist.c; add more tests for list.index. by Damien George · 12 years ago
  94. 8cfc9f0 Implements str iterator by xyb · 12 years ago
  95. 7e73a8f Merge remote-tracking branch 'upstream/master' into list_index by John R. Lenton · 12 years ago
  96. 45b43c2 Oops: add objint.c by Damien George · 12 years ago
  97. a494b29 Merge pull request #73 from mikaeleiman/apple-clang-fixes by Damien George · 12 years ago
  98. 71c5181 Convert Python types to proper Python type hierarchy. by Damien George · 12 years ago
  99. d670913 OSX: fixes to make nlrx64.S with Apple's clang (switched to Apple-specific define instead of __llvm__) by Mikael Eiman · 12 years ago
  100. f53cdd9 OSX: fixes to make nlrx64.S with Apple's clang (forgot a few places) by Mikael Eiman · 12 years ago