| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-01-10 | Merge pull request #128 from chipaca/dict_views | Damien George | |
| dict views now, refactoring later. | |||
| 2014-01-10 | dict views now, refactoring later. | John R. Lenton | |
| 2014-01-09 | Use memcpy instead of strncpy; add usart.status to stm. | Damien George | |
| 2014-01-09 | Merge pull request #127 from iabdalkader/master | Damien George | |
| Add USART Micro Python Bindings | |||
| 2014-01-09 | Merge pull request #123 from xbe/master | Damien George | |
| Implement str.strip | |||
| 2014-01-09 | Merge pull request #121 from pfalcon/count-testcases | Damien George | |
| Count individual testcases when running tests. | |||
| 2014-01-09 | py: Implement base class lookup, issubclass, isinstance. | Damien George | |
| 2014-01-09 | Improved type/class/instance code; mp_obj_type_t now has load_attr, store_attr. | Damien George | |
| Creating of classes (types) and instances is much more like CPython now. You can use "type('name', (), {...})" to create classes. | |||
| 2014-01-09 | Fix Makefile typo | mux | |
| 2014-01-09 | Add DEBUG flag to Makefile | mux | |
| * Add a DEBUG flag to Makefile, enables: "-O0 -ggdb" | |||
| 2014-01-09 | Add USART Micro Python Bindings | mux | |
| * Add Micro Python bindings to usart.c * Export USART python object to namespace pyb | |||
| 2014-01-08 | Implement str.strip | xbe | |
| 2014-01-08 | Count individual testcases when running tests. | Paul Sokolovsky | |
| The idea is simple: each print represents a testcase within a test unit. As we don't have strict rules on which/how many testcase are put into a test file, it's nice to have an idea how many *testcases* we have totally. Would be nice to count how many testcases pass/fail, but that's a bit less trivial. | |||
| 2014-01-08 | Add string comparison tests. | Paul Sokolovsky | |
| Use computed string to exercise string interning code better. | |||
| 2014-01-08 | Merge pull request #120 from dhylands/make-build-quieter | Damien George | |
| Make build output quieter. | |||
| 2014-01-08 | py: Proper framework for built-in 'type'. | Damien George | |
| 2014-01-08 | Make build output quieter. | Dave Hylands | |
| Use make V=1e make V=1 or set BUILD_VERBOSE in your environment to increase build verbosity. This should fix issue #117 | |||
| 2014-01-08 | py: add variable argument exception constructor function. | Damien George | |
| Addresses issue #104. | |||
| 2014-01-08 | Merge pull request #114 from pfalcon/streams-bootstrap | Damien George | |
| Define buffer and stream protocols, and other starting bits of io.* framework, with io.FileIO-like implementation for Unix | |||
| 2014-01-08 | Merge pull request #119 from dhylands/teensy-use-py.mk | Damien George | |
| Update teemsy/Makefile to use py.mk | |||
| 2014-01-08 | Merge pull request #118 from dhylands/stm-use-OBJCOPY-SIZE-macros | Damien George | |
| Update stm/Makeile to use OBJCOPY and SIZE macros | |||
| 2014-01-08 | py: Stuff qstr in object pointer; keys for mp_map_t are now always mp_obj_t. | Damien George | |
| 2014-01-08 | Update teemsy/Makefile to use py.mk | Dave Hylands | |
| I also fixed main.c to compile with the new str lexer | |||
| 2014-01-08 | Update stm/Makeile to use OBJCOPY and SIZE macros | Dave Hylands | |
| While updating the teensy Makfile, I noticed that the stm Makefile was using calling arm-none-eabi-objcopy and size rather than $(OBJCOPY) and $(SIZE), so I added these 2 for consistency. | |||
| 2014-01-08 | unix: Add basic implementation of io.FileIO object. | Paul Sokolovsky | |
| Note: only read/write/close methods are defined so far, and class is not exposed (use open() factory function, as usual). | |||
| 2014-01-08 | Add generic implementations of Python read()/write methods for streams. | Paul Sokolovsky | |
| These can be used for any object which implements stream protocol (mp_stream_p_t). | |||
| 2014-01-08 | Add support for stream and buffer protocols. | Paul Sokolovsky | |
| Stream protocol is abstraction of serial I/O. Buffer protocol is abstraction of random-access I/O. These protocols are defined down to C level, to allow generic, while still efficient algorithms to be coded in C (like, buffered transfer between 2 stream objects, saving/loading of buffer object to/from stream, etc). (Note that CPython define buffer protocol on C level, but apparently not stream protocol). | |||
| 2014-01-08 | Merge pull request #112 from iabdalkader/master | Damien George | |
| Use LSI OSC for RTC clock when LSE is not detected | |||
| 2014-01-08 | Move lexerstr to main py directory (everyone uses it). | Damien George | |
| 2014-01-08 | Merge branch 'master' of github.com:dpgeorge/micropython | Damien George | |
| 2014-01-08 | Merge pull request #111 from dhylands/teensy | Damien George | |
| Updated teensy to use common code from stm directory. | |||
| 2014-01-08 | py: Improve __build_class__. | Damien George | |
| 2014-01-08 | Use LSI OSC for RTC clock when LSE is not detected | mux | |
| * Fix rtc_init to use LSI for RTC clock source when LSE is not detected. | |||
| 2014-01-08 | Updated teensy to use common code from stm directory. | Dave Hylands | |
| Updated mconfigport.h to enable GC | |||
| 2014-01-07 | Merge pull request #108 from chipaca/dict_feats | Damien George | |
| Dictionary features that don't involve views or classmethods. First part of issue #99. | |||
| 2014-01-07 | py: Small big fix to type declarations. | Damien George | |
| 2014-01-07 | Moved dict methods out to a mp_method_t. | John R. Lenton | |
| 2014-01-07 | Merge remote-tracking branch 'upstream/master' into dict_feats | John R. Lenton | |
| 2014-01-07 | Merge remote-tracking branch 'upstream/master' into dict_feats | John R. Lenton | |
| 2014-01-07 | forgot to add test for dict.update | John R. Lenton | |
| 2014-01-07 | 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 | |
| Added 0 to the list of primes. Funky primes, these. | |||
