aboutsummaryrefslogtreecommitdiff
path: root/py
AgeCommit message (Expand)Author
2014-01-07Factor and simplify Makefile's and mpconfig.Damien George
2014-01-06Merge branch 'master' of github.com:dpgeorge/micropythonDamien George
2014-01-06py: Fix up number operations and coercion.Damien George
2014-01-06Typo fix in comment.Paul Sokolovsky
2014-01-06Use constructor to create small int (avoid exposing mp_obj_t internals to VM).Paul Sokolovsky
2014-01-06Merge remote-tracking branch 'upstream/master' into list_reverseJohn R. Lenton
2014-01-05Merge branch 'list_remove' of git://github.com/chipaca/micropython into chipa...Damien George
2014-01-05Merge pull request #92 from chipaca/list_insertDamien George
2014-01-05Merge pull request #91 from chipaca/list_indexDamien George
2014-01-05Merge pull request #89 from pfalcon/c99-tagged-structsDamien George
2014-01-05Merge remote-tracking branch 'upstream/master' into list_reverseJohn R. Lenton
2014-01-05Merge remote-tracking branch 'upstream/master' into list_removeJohn R. Lenton
2014-01-05Merge remote-tracking branch 'upstream/master' into list_insertJohn R. Lenton
2014-01-05Fix off-by-one in non-default values of index's 2nd and 3rd arguments.John R. Lenton
2014-01-05Convert many object types structs to use C99 tagged initializer syntax.Paul Sokolovsky
2014-01-05Make qstr_init reinitialize last_pool.Dave Hylands
2014-01-05Merge pull request #80 from xyb/striterDamien George
2014-01-05Fix qstr in objlist.c; add more tests for list.index.Damien George
2014-01-05Implements str iteratorxyb
2014-01-05Merge remote-tracking branch 'upstream/master' into list_indexJohn R. Lenton
2014-01-05Oops: add objint.cDamien George
2014-01-04Merge pull request #73 from mikaeleiman/apple-clang-fixesDamien George
2014-01-04Convert Python types to proper Python type hierarchy.Damien George
2014-01-04OSX: fixes to make nlrx64.S with Apple's clang (switched to Apple-specific de...Mikael Eiman
2014-01-04OSX: fixes to make nlrx64.S with Apple's clang (forgot a few places)Mikael Eiman
2014-01-04OSX: fixes to make nlrx64.S with Apple's clangMikael Eiman
2014-01-04Add ellipsis object.Damien George
2014-01-04Merge pull request #70 from chipaca/list_countDamien George
2014-01-04Split qstr into pools, and put initial pool in ROM.Damien George
2014-01-04Merge remote-tracking branch 'upstream/master' into list_countJohn R. Lenton
2014-01-04Improve configurability for native x64/thumb emitter.Damien George
2014-01-04Merge remote-tracking branch 'upstream/master' into list_countJohn R. Lenton
2014-01-04Merge pull request #64 from pfalcon/str-slice-range-checkDamien George
2014-01-04Merge pull request #60 from chipaca/list_copyDamien George
2014-01-04Implements list.reverse; fixes issue #66John R. Lenton
2014-01-04Implements list.remove (in terms of list.index and list.pop).John R. Lenton
2014-01-04str slice: Trim slice indexes to be in range.Paul Sokolovsky
2014-01-04Merge remote-tracking branch 'upstream/master' into list_insertJohn R. Lenton
2014-01-04Merge remote-tracking branch 'upstream/master' into list_countJohn R. Lenton
2014-01-04Implements list.insert. Fixes issue #61.John R. Lenton
2014-01-04Fix int -> machine_int_t; add print to slice test.Damien George
2014-01-03Merge pull request #59 from pfalcon/sliceDamien George
2014-01-03Merge pull request #58 from chipaca/list_clearDamien George
2014-01-04str: Throw TypeError for invalid index type and clean up comments.Paul Sokolovsky
2014-01-04slice: Allow building with MICROPY_ENABLE_SLICE=0.Paul Sokolovsky
2014-01-04str: Handle non-positive slice indexes.Paul Sokolovsky
2014-01-04slice: Implement special handling of omitted start/stop indexes.Paul Sokolovsky
2014-01-04Enable slice support in config.Paul Sokolovsky
2014-01-04str: Initial implementation of string slicing.Paul Sokolovsky
2014-01-04Implement BUILD_SLICE opcode (2-arg version).Paul Sokolovsky