summaryrefslogtreecommitdiffstatshomepage
path: root/py
Commit message (Collapse)AuthorAge
* added a first pass of dict.updateJohn R. Lenton2014-01-07
|
* py: Fix up number operations and coercion.Damien George2014-01-07
|
* Added dict.setdefaultJohn R. Lenton2014-01-07
|
* Added dict.popitemJohn R. Lenton2014-01-07
|
* implemented dict.popJohn R. Lenton2014-01-07
|
* Added dict.get.John R. Lenton2014-01-07
|
* Added dict.copyJohn R. Lenton2014-01-07
|
* make dict_len use the map's used countJohn R. Lenton2014-01-07
|
* Added dict.clear.John R. Lenton2014-01-07
| | | | Added 0 to the list of primes. Funky primes, these.
* Added dict iterator.John R. Lenton2014-01-07
|
* Typo fix in comment.Paul Sokolovsky2014-01-07
|
* Use constructor to create small int (avoid exposing mp_obj_t internals to VM).Paul Sokolovsky2014-01-07
|
* Merge remote-tracking branch 'upstream/master' into list_reverseJohn R. Lenton2014-01-06
|\
| * Merge branch 'list_remove' of git://github.com/chipaca/micropython into ↵Damien George2014-01-05
| |\ | | | | | | | | | chipaca-list_remove
| | * Merge remote-tracking branch 'upstream/master' into list_removeJohn R. Lenton2014-01-05
| | |\
| * | \ Merge pull request #92 from chipaca/list_insertDamien George2014-01-05
| |\ \ \ | | | | | | | | | | List insert. Fixes issue #61.
| | * \ \ Merge remote-tracking branch 'upstream/master' into list_insertJohn R. Lenton2014-01-05
| | |\ \ \ | | | | |/ | | | |/|
| * | | | Merge pull request #91 from chipaca/list_indexDamien George2014-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. Lenton2014-01-05
| | | |/ / | | |/| |
| * | | | Merge pull request #89 from pfalcon/c99-tagged-structsDamien George2014-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 Sokolovsky2014-01-05
| | |/ / /
| * / / / Make qstr_init reinitialize last_pool.Dave Hylands2014-01-05
| |/ / / | | | | | | | | | | | | This causes the pool to get reinitialized properly on a soft-reset.
* | | | Merge remote-tracking branch 'upstream/master' into list_reverseJohn R. Lenton2014-01-05
|\| | |
| * | | Merge pull request #80 from xyb/striterDamien George2014-01-05
| |\ \ \ | | | | | | | | | | Implements str iterator
| | * | | Implements str iteratorxyb2014-01-05
| | | | |
| * | | | Fix qstr in objlist.c; add more tests for list.index.Damien George2014-01-05
| | | | | | | | | | | | | | | | | | | | list.index fails on an edge case.
| * | | | Merge remote-tracking branch 'upstream/master' into list_indexJohn R. Lenton2014-01-05
| |\| | |
| | * | | Oops: add objint.cDamien George2014-01-05
| | | | |
| | * | | Merge pull request #73 from mikaeleiman/apple-clang-fixesDamien George2014-01-04
| | |\ \ \ | | | | | | | | | | | | Apple clang fixes
| | | * | | OSX: fixes to make nlrx64.S with Apple's clang (switched to Apple-specific ↵Mikael Eiman2014-01-04
| | | | | | | | | | | | | | | | | | | | | | | | define instead of __llvm__)
| | | * | | OSX: fixes to make nlrx64.S with Apple's clang (forgot a few places)Mikael Eiman2014-01-04
| | | | | |
| | | * | | OSX: fixes to make nlrx64.S with Apple's clangMikael Eiman2014-01-04
| | | | | |
| | * | | | Convert Python types to proper Python type hierarchy.Damien George2014-01-04
| | |/ / / | | | | | | | | | | | | | | | Now much more inline with how CPython does types.
| | * | | Add ellipsis object.Damien George2014-01-04
| | | | |
| | * | | Merge pull request #70 from chipaca/list_countDamien George2014-01-04
| | |\ \ \ | | | | | | | | | | | | Implements list.count. Fixes isue #55.
| | | * \ \ Merge remote-tracking branch 'upstream/master' into list_countJohn R. Lenton2014-01-04
| | | |\ \ \
| | | * \ \ \ Merge remote-tracking branch 'upstream/master' into list_countJohn R. Lenton2014-01-04
| | | |\ \ \ \
| | | * \ \ \ \ Merge remote-tracking branch 'upstream/master' into list_countJohn R. Lenton2014-01-04
| | | |\ \ \ \ \
| | * | | | | | | Split qstr into pools, and put initial pool in ROM.Damien George2014-01-04
| | | |_|_|/ / / | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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).
| | * | | | | | Improve configurability for native x64/thumb emitter.Damien George2014-01-04
| | | |_|/ / / | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
| | * | | | | Merge pull request #64 from pfalcon/str-slice-range-checkDamien George2014-01-04
| | |\ \ \ \ \ | | | | | | | | | | | | | | | | str slice: Trim slice indexes to be in range.
| | | * | | | | str slice: Trim slice indexes to be in range.Paul Sokolovsky2014-01-04
| | | | |/ / / | | | |/| | |
| | * | | | | Merge pull request #60 from chipaca/list_copyDamien George2014-01-04
| | |\ \ \ \ \ | | | |/ / / / | | |/| | | | Implemented list.copy. Fixes issue #54.
* | | | | | | Implements list.reverse; fixes issue #66John R. Lenton2014-01-04
| |_|_|_|_|/ |/| | | | |
* | | | | | Implements list.remove (in terms of list.index and list.pop).John R. Lenton2014-01-04
| |_|_|_|/ |/| | | | | | | | | | | | | | Fixes issue #63.
* | | | | Merge remote-tracking branch 'upstream/master' into list_insertJohn R. Lenton2014-01-04
|\ \ \ \ \ | | |/ / / | |/| | |
| * | | | Fix int -> machine_int_t; add print to slice test.Damien George2014-01-04
| | | | |
| * | | | Merge pull request #59 from pfalcon/sliceDamien George2014-01-03
| |\ \ \ \ | | | | | | | | | | | | Implement basic slice object and string slicing
| | * | | | str: Throw TypeError for invalid index type and clean up comments.Paul Sokolovsky2014-01-04
| | | | | |
| | * | | | slice: Allow building with MICROPY_ENABLE_SLICE=0.Paul Sokolovsky2014-01-04
| | | | | |