aboutsummaryrefslogtreecommitdiff
path: root/py
AgeCommit message (Expand)Author
2014-01-12Move BITS_PER_BYTE, BITS_PER_WORD to mpconfig.h for reuse.Paul Sokolovsky
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
2014-01-12py: AssertionError is loaded from global, to match CPython.Damien George
2014-01-12Merge pull request #146 from pfalcon/assert-excDamien George
2014-01-12list: Implement comparison operators.Paul Sokolovsky
2014-01-12mp_obj_equal(): For non-trivial types, call out to type's special method.Paul Sokolovsky
2014-01-12rt_binary_op(): Don't fall thru in case small_int op result doesn't fit back.Paul Sokolovsky
2014-01-12list: Add extend() methods and += operator.Paul Sokolovsky
2014-01-12Add AssertionError.Paul Sokolovsky
2014-01-11py: Implement staticmethod and classmethod (internally).Damien George
2014-01-11py: Fix bug where == and != not handled for small_ints.Damien George
2014-01-11py: Fix emitcpy and emitnative's binary_op.Damien George
2014-01-11Merge branch 'master' of github.com:dpgeorge/micropythonDamien George
2014-01-11py: Make arg to MP_BC_RAISE_VARARGS a byte.Damien George
2014-01-11unified the bopsJohn R. Lenton
2014-01-10Merge pull request #136 from pfalcon/for-range-downtoDamien George
2014-01-10Merge pull request #135 from pfalcon/simple-raiseDamien George
2014-01-10Merge pull request #134 from pfalcon/list-mulDamien George
2014-01-10Merge pull request #131 from chipaca/dict_fromkeysDamien George
2014-01-11compile_for_stmt_optimised_range(): Properly handle negative & unknown steps.Paul Sokolovsky
2014-01-11Crude attempt to implement RAISE_VARARGS (with args=1 so far only).Paul Sokolovsky
2014-01-11list: Implement list multiplication.Paul Sokolovsky
2014-01-11Unsupported operand types for binary operator: dump both args' types.Paul Sokolovsky
2014-01-11mp_obj_equal(): Print which types' equality not implemented before assert().Paul Sokolovsky
2014-01-11mp_repl_is_compound_stmt(): Thinko fix s/true/try/.Paul Sokolovsky
2014-01-11Dump few more bytecodes (based on attempt to run real-world code).Paul Sokolovsky
2014-01-10Added dict.fromkeys. Are we done with dict and #99 yet? I do think we are.John R. Lenton
2014-01-10dict views now, refactoring later.John R. Lenton
2014-01-09Use memcpy instead of strncpy; add usart.status to stm.Damien George
2014-01-09Merge pull request #123 from xbe/masterDamien George
2014-01-09py: Implement base class lookup, issubclass, isinstance.Damien George
2014-01-09Improved type/class/instance code; mp_obj_type_t now has load_attr, store_attr.Damien George
2014-01-08Implement str.stripxbe
2014-01-08Merge pull request #120 from dhylands/make-build-quieterDamien George
2014-01-08py: Proper framework for built-in 'type'.Damien George
2014-01-08Make build output quieter.Dave Hylands
2014-01-08py: add variable argument exception constructor function.Damien George
2014-01-08Merge pull request #114 from pfalcon/streams-bootstrapDamien George
2014-01-08py: Stuff qstr in object pointer; keys for mp_map_t are now always mp_obj_t.Damien George
2014-01-08Add generic implementations of Python read()/write methods for streams.Paul Sokolovsky
2014-01-08Add support for stream and buffer protocols.Paul Sokolovsky
2014-01-08Move lexerstr to main py directory (everyone uses it).Damien George
2014-01-08py: Improve __build_class__.Damien George
2014-01-07Merge pull request #108 from chipaca/dict_featsDamien George
2014-01-07py: Small big fix to type declarations.Damien George
2014-01-07Moved dict methods out to a mp_method_t.John R. Lenton
2014-01-07Merge remote-tracking branch 'upstream/master' into dict_featsJohn R. Lenton
2014-01-07added a first pass of dict.updateJohn R. Lenton
2014-01-07py: Fix up number operations and coercion.Damien George