aboutsummaryrefslogtreecommitdiff
path: root/py
AgeCommit message (Expand)Author
2014-01-15Added mapJohn R. Lenton
2014-01-14Merge remote-tracking branch 'upstream/master' into builtinsJohn R. Lenton
2014-01-14added enumerate()John R. Lenton
2014-01-14Merge pull request #173 from pfalcon/file-readallDamien George
2014-01-14Merge pull request #161 from pfalcon/exc-more-pythonicDamien George
2014-01-14Merge pull request #142 from chipaca/containmentDamien George
2014-01-14Tidy up.Damien George
2014-01-14Merge pull request #165 from chipaca/builtinsDamien George
2014-01-15Implement "is" and "is not" operators.Paul Sokolovsky
2014-01-15Refactor exception objects to have better impl of Python-side interface.Paul Sokolovsky
2014-01-14Add objtuple.h to allow embedding of tuples inside other objects.Paul Sokolovsky
2014-01-13Merge remote-tracking branch 'upstream/master' into builtinsJohn R. Lenton
2014-01-13Merge remote-tracking branch 'upstream/master' into containmentJohn R. Lenton
2014-01-13Add generic impl of stream .readall() method. Use one for unix io.FileIO.Paul Sokolovsky
2014-01-13Add "buffer management" and "shrink" API calls to vstr.Paul Sokolovsky
2014-01-13mp_obj_equal(): Compare small and long ints properly.Paul Sokolovsky
2014-01-13Move mp_obj_int_t definition to objint.h, to reuse in long int impls.Paul Sokolovsky
2014-01-13Made sorted() raise an exception instead of aborting when given no arguments;...John R. Lenton
2014-01-13Cleaned up sorted() as per Damien's suggestions.John R. Lenton
2014-01-13Consolidate rt_make_function_[0123] to rt_make_function_n.Damien George
2014-01-13Merge pull request #168 from dhylands/add-strstrDamien George
2014-01-13Cleanup built-ins, and fix some compiler warnings/errors.Damien George
2014-01-13Initialize is_kw for dynamically allocated mp_obj_fun_native_t ojects.Dave Hylands
2014-01-12Added public domain implementations of strchr and strstr.Dave Hylands
2014-01-13sortedJohn R. Lenton
2014-01-13added zip()John R. Lenton
2014-01-13Fixed the merge so it worked and compiled and stuffJohn R. Lenton
2014-01-13Merge remote-tracking branch 'upstream/master' into containmentJohn R. Lenton
2014-01-12Merge pull request #162 from chipaca/str_findDamien George
2014-01-12Merge pull request #160 from pfalcon/elaborate-intDamien George
2014-01-12oops, nasty off-by-one in set_copyJohn R. Lenton
2014-01-12Implemented set binary ops.John R. Lenton
2014-01-12Implement a basic str.find; fixes #67John R. Lenton
2014-01-12Add framework to support alternative implementations of long int Python type.Paul Sokolovsky
2014-01-12Parse long Python ints properly.Paul Sokolovsky
2014-01-12Add proper checks for fits-in-small-int. Make it reusable.Paul Sokolovsky
2014-01-12Add WORD_MSBIT_HIGH define - machine_int_t with the highest bit set.Paul Sokolovsky
2014-01-12Move BITS_PER_BYTE, BITS_PER_WORD to mpconfig.h for reuse.Paul Sokolovsky
2014-01-12Implemented set.updateJohn R. Lenton
2014-01-12Implemented set.removeJohn R. Lenton
2014-01-12Implemented set.isdisjointJohn R. Lenton
2014-01-12Implemented set.intersection and set.intersection_updateJohn R. Lenton
2014-01-12Implemented set.difference and set.difference_updateJohn R. Lenton
2014-01-12Implemented set.discardJohn R. Lenton
2014-01-12Implemented set.copyJohn R. Lenton
2014-01-12Implemented set.clearJohn R. Lenton
2014-01-12Implemented set.addJohn R. Lenton
2014-01-12make sets iterableJohn R. Lenton
2014-01-12py: Improve memory management for parser; add lexer error for bad line cont.Damien George
2014-01-12Merge pull request #148 from pfalcon/list-cmpDamien George