| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-01-06 | Use constructor to create small int (avoid exposing mp_obj_t internals to VM). | Paul Sokolovsky | |
| 2014-01-06 | Merge remote-tracking branch 'upstream/master' into list_reverse | John R. Lenton | |
| 2014-01-05 | Merge branch 'list_remove' of git://github.com/chipaca/micropython into ↵ | Damien George | |
| chipaca-list_remove | |||
| 2014-01-05 | Merge pull request #92 from chipaca/list_insert | Damien George | |
| List insert. Fixes issue #61. | |||
| 2014-01-05 | Merge pull request #91 from chipaca/list_index | Damien George | |
| Fix off-by-one in non-default values of index's 2nd and 3rd arguments. | |||
| 2014-01-05 | Merge pull request #89 from pfalcon/c99-tagged-structs | Damien George | |
| Convert many object types structs to use C99 tagged initializer syntax. | |||
| 2014-01-05 | Merge remote-tracking branch 'upstream/master' into list_reverse | John R. Lenton | |
| 2014-01-05 | Merge remote-tracking branch 'upstream/master' into list_remove | John R. Lenton | |
| 2014-01-05 | Merge remote-tracking branch 'upstream/master' into list_insert | John R. Lenton | |
| 2014-01-05 | Fix off-by-one in non-default values of index's 2nd and 3rd arguments. | John R. Lenton | |
| 2014-01-05 | Convert many object types structs to use C99 tagged initializer syntax. | Paul Sokolovsky | |
| 2014-01-05 | Make qstr_init reinitialize last_pool. | Dave Hylands | |
| This causes the pool to get reinitialized properly on a soft-reset. | |||
| 2014-01-05 | Merge pull request #80 from xyb/striter | Damien George | |
| Implements str iterator | |||
| 2014-01-05 | Fix qstr in objlist.c; add more tests for list.index. | Damien George | |
| list.index fails on an edge case. | |||
| 2014-01-05 | Implements str iterator | xyb | |
| 2014-01-05 | Merge remote-tracking branch 'upstream/master' into list_index | John R. Lenton | |
| 2014-01-05 | Oops: add objint.c | Damien George | |
| 2014-01-04 | Merge pull request #73 from mikaeleiman/apple-clang-fixes | Damien George | |
| Apple clang fixes | |||
| 2014-01-04 | Convert Python types to proper Python type hierarchy. | Damien George | |
| Now much more inline with how CPython does types. | |||
| 2014-01-04 | OSX: fixes to make nlrx64.S with Apple's clang (switched to Apple-specific ↵ | Mikael Eiman | |
| define instead of __llvm__) | |||
| 2014-01-04 | OSX: fixes to make nlrx64.S with Apple's clang (forgot a few places) | Mikael Eiman | |
| 2014-01-04 | OSX: fixes to make nlrx64.S with Apple's clang | Mikael Eiman | |
| 2014-01-04 | Add ellipsis object. | Damien George | |
| 2014-01-04 | Merge pull request #70 from chipaca/list_count | Damien George | |
| Implements list.count. Fixes isue #55. | |||
| 2014-01-04 | Split qstr into pools, and put initial pool in ROM. | Damien George | |
| Qstr's are now split into a linked-list of qstr pools. This has 2 benefits: the first pool can be in ROM (huge benefit, since we no longer use RAM for the core qstrs), and subsequent pools use m_new for the next pool instead of m_renew (thus avoiding a huge single table for all the qstrs). Still would be better to use a hash table, but this scheme takes us part of the way (eventually convert the pools to hash tables). Also fixed bug with import. Also improved the way the module code is referenced (not magic number 1 anymore). | |||
| 2014-01-04 | Merge remote-tracking branch 'upstream/master' into list_count | John R. Lenton | |
| 2014-01-04 | Improve configurability for native x64/thumb emitter. | Damien George | |
| With MICROPY_EMIT_X64 and MICROPY_EMIT_THUMB disabled, the respective emitters and assemblers will not be included in the code. This can significantly reduce binary size for unix version. | |||
| 2014-01-04 | Merge remote-tracking branch 'upstream/master' into list_count | John R. Lenton | |
| 2014-01-04 | Merge pull request #64 from pfalcon/str-slice-range-check | Damien George | |
| str slice: Trim slice indexes to be in range. | |||
| 2014-01-04 | Merge pull request #60 from chipaca/list_copy | Damien George | |
| Implemented list.copy. Fixes issue #54. | |||
| 2014-01-04 | Implements list.reverse; fixes issue #66 | John R. Lenton | |
| 2014-01-04 | Implements list.remove (in terms of list.index and list.pop). | John R. Lenton | |
| Fixes issue #63. | |||
| 2014-01-04 | str slice: Trim slice indexes to be in range. | Paul Sokolovsky | |
| 2014-01-04 | Merge remote-tracking branch 'upstream/master' into list_insert | John R. Lenton | |
| 2014-01-04 | Merge remote-tracking branch 'upstream/master' into list_count | John R. Lenton | |
| 2014-01-04 | Implements list.insert. Fixes issue #61. | John R. Lenton | |
| 2014-01-04 | Fix int -> machine_int_t; add print to slice test. | Damien George | |
| 2014-01-03 | Merge pull request #59 from pfalcon/slice | Damien George | |
| Implement basic slice object and string slicing | |||
| 2014-01-03 | Merge pull request #58 from chipaca/list_clear | Damien George | |
| Added list.clear. Fixes issue #53. | |||
| 2014-01-04 | str: Throw TypeError for invalid index type and clean up comments. | Paul Sokolovsky | |
| 2014-01-04 | slice: Allow building with MICROPY_ENABLE_SLICE=0. | Paul Sokolovsky | |
| 2014-01-04 | str: Handle non-positive slice indexes. | Paul Sokolovsky | |
| 2014-01-04 | slice: Implement special handling of omitted start/stop indexes. | Paul Sokolovsky | |
| 2014-01-04 | Enable slice support in config. | Paul Sokolovsky | |
| 2014-01-04 | str: Initial implementation of string slicing. | Paul Sokolovsky | |
| Only step=1 and non-negative indexes are supported so far. | |||
| 2014-01-04 | Implement BUILD_SLICE opcode (2-arg version). | Paul Sokolovsky | |
| 2014-01-04 | Add basic implementation of slice object. | Paul Sokolovsky | |
| So far, only start and stop integer indexes are supported. Step is not supported, as well as objects of arbitrary types. | |||
| 2014-01-04 | Implements list.index. Fixes issue #57. | John R. Lenton | |
| 2014-01-03 | Merge pull request #52 from chipaca/master | Damien George | |
| Tweaks to list.pop. | |||
| 2014-01-03 | Implemented list.count | John R. Lenton | |
