Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | added a first pass of dict.update | John R. Lenton | 2014-01-07 |
| | |||
* | stm: Re-fix LED defines. | Damien George | 2014-01-07 |
| | |||
* | py: Fix up number operations and coercion. | Damien George | 2014-01-07 |
| | |||
* | Added dict.setdefault | John R. Lenton | 2014-01-07 |
| | |||
* | Added dict.popitem | John R. Lenton | 2014-01-07 |
| | |||
* | implemented dict.pop | John R. Lenton | 2014-01-07 |
| | |||
* | Added dict.get. | John R. Lenton | 2014-01-07 |
| | |||
* | Added dict.copy | John R. Lenton | 2014-01-07 |
| | |||
* | make dict_len use the map's used count | John R. Lenton | 2014-01-07 |
| | |||
* | Added dict.clear. | John R. Lenton | 2014-01-07 |
| | | | | Added 0 to the list of primes. Funky primes, these. | ||
* | Added dict iterator. | John R. Lenton | 2014-01-07 |
| | |||
* | Typo fix in comment. | Paul Sokolovsky | 2014-01-07 |
| | |||
* | Use constructor to create small int (avoid exposing mp_obj_t internals to VM). | Paul Sokolovsky | 2014-01-07 |
| | |||
* | Initial support for Teensy 3.1 | Dave Hylands | 2014-01-07 |
| | |||
* | Fix LED pin enum | mux | 2014-01-07 |
| | | | | | * Fix LED pin enum, first one should start at 1 * Fix LED initialization typo | ||
* | Merge pull request #94 from chipaca/list_reverse | Damien George | 2014-01-05 |
|\ | | | | | Implements list.reverse; fixes issue #66. | ||
| * | Merge remote-tracking branch 'upstream/master' into list_reverse | John R. Lenton | 2014-01-06 |
| |\ | |/ |/| | |||
* | | Merge branch 'list_remove' of git://github.com/chipaca/micropython into ↵ | Damien George | 2014-01-05 |
|\ \ | | | | | | | | | | chipaca-list_remove | ||
| * \ | Merge remote-tracking branch 'upstream/master' into list_remove | John R. Lenton | 2014-01-05 |
| |\ \ | |||
* | \ \ | Merge pull request #92 from chipaca/list_insert | Damien George | 2014-01-05 |
|\ \ \ \ | | | | | | | | | | | List insert. Fixes issue #61. | ||
| * \ \ \ | Merge remote-tracking branch 'upstream/master' into list_insert | John R. Lenton | 2014-01-05 |
| |\ \ \ \ | | | |/ / | | |/| | | |||
* | | | | | Merge pull request #91 from chipaca/list_index | Damien George | 2014-01-05 |
|\ \ \ \ \ | | | | | | | | | | | | | Fix off-by-one in non-default values of index's 2nd and 3rd arguments. | ||
| * | | | | | Fix off-by-one in non-default values of index's 2nd and 3rd arguments. | John R. Lenton | 2014-01-05 |
| | |/ / / | |/| | | | |||
* | | | | | Merge pull request #89 from pfalcon/c99-tagged-structs | Damien George | 2014-01-05 |
|\ \ \ \ \ | | | | | | | | | | | | | Convert many object types structs to use C99 tagged initializer syntax. | ||
| * | | | | | Convert many object types structs to use C99 tagged initializer syntax. | Paul Sokolovsky | 2014-01-05 |
| |/ / / / | |||
* | | | | | stm: pull-up usr switch on pyboard (fixes regression). | Damien George | 2014-01-05 |
| | | | | | |||
* | | | | | Merge pull request #86 from iabdalkader/master | Damien George | 2014-01-05 |
|\ \ \ \ \ | | | | | | | | | | | | | Add Initial Support for STM32F4DISCOVERY Board | ||
| * | | | | | Add gitignore file | mux | 2014-01-05 |
| | | | | | | |||
| * | | | | | Add Initial Support for STM32F4DISCOVERY Board | mux | 2014-01-05 |
| |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add a TARGET definition to Makefile (default PYBOARD). * Add support for discovery LEDs in led module. * Add support for discovery user switch in usersw * Add EXTI interrupt handler for discovery user switch on (PA0). * Parameterize led and usrsw modules pins and port. * Issue #83 | ||
* | | | | | Merge pull request #88 from dhylands/mp-qstr-init | Damien George | 2014-01-05 |
|\ \ \ \ \ | |/ / / / |/| | | | | Make qstr_init reinitialize last_pool. | ||
| * | | | | Make qstr_init reinitialize last_pool. | Dave Hylands | 2014-01-05 |
|/ / / / | | | | | | | | | | | | | This causes the pool to get reinitialized properly on a soft-reset. | ||
| | | * | Merge remote-tracking branch 'upstream/master' into list_reverse | John R. Lenton | 2014-01-05 |
| | | |\ | |_|_|/ |/| | | | |||
* | | | | stm: allow more flash for the binary. | Damien George | 2014-01-05 |
| | | | | |||
* | | | | stm: rename sw_xx to switch_xx; change Python bindings to new version. | Damien George | 2014-01-05 |
| | | | | |||
* | | | | Merge pull request #82 from iabdalkader/master | Damien George | 2014-01-05 |
|\ \ \ \ | | | | | | | | | | | Move user switch code into a separate module | ||
| * | | | | Move user switch code into a separate module | mux | 2014-01-05 |
| | | | | | | | | | | | | | | | | | | | | | | | | | * Move user switch code from main.c into a separate module (usrsw) * Add usrsw.c to Makefile | ||
* | | | | | Merge pull request #80 from xyb/striter | Damien George | 2014-01-05 |
|\ \ \ \ \ | | | | | | | | | | | | | Implements str iterator | ||
| * | | | | | Implements str iterator | xyb | 2014-01-05 |
| |/ / / / | |||
* | | | | | Fix qstr in objlist.c; add more tests for list.index. | Damien George | 2014-01-05 |
| | | | | | | | | | | | | | | | | | | | | list.index fails on an edge case. | ||
* | | | | | Merge pull request #78 from chipaca/list_index | Damien George | 2014-01-05 |
|\ \ \ \ \ | | | | | | | | | | | | | Implements list.index. Fixes issue #57. | ||
| * | | | | | Merge remote-tracking branch 'upstream/master' into list_index | John R. Lenton | 2014-01-05 |
| |\| | | | | |||
* | | | | | | Add fatfs readme/license. | Damien George | 2014-01-05 |
| | | | | | | |||
* | | | | | | Add test for basic builtin types. | Damien George | 2014-01-05 |
| |/ / / / |/| | | | | |||
* | | | | | Oops: add objint.c | Damien George | 2014-01-05 |
| | | | | | |||
* | | | | | Add FONT-LICENSE for Exo font used in Micro Python name-logo. | Damien George | 2014-01-04 |
| | | | | | |||
* | | | | | Merge pull request #71 from redteam316/dxf | Damien George | 2014-01-04 |
|\ \ \ \ \ | | | | | | | | | | | | | Added DXF R2000 vector text. | ||
| * | | | | | Added DXF R2000 vector text. | Jonathan Greig | 2014-01-04 |
| | | | | | | |||
* | | | | | | Merge pull request #72 from redteam316/svg | Damien George | 2014-01-04 |
|\ \ \ \ \ \ | | | | | | | | | | | | | | | Added SVG vector text. | ||
| * | | | | | | Added SVG vector text. | Jonathan Greig | 2014-01-04 |
| |/ / / / / | |||
* | | | | | | Merge pull request #73 from mikaeleiman/apple-clang-fixes | Damien George | 2014-01-04 |
|\ \ \ \ \ \ | | | | | | | | | | | | | | | Apple clang fixes |