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