aboutsummaryrefslogtreecommitdiff
path: root/tests/basics
AgeCommit message (Expand)Author
2014-05-02tests: Add testcases for catching user Exception subclasses.Paul Sokolovsky
2014-05-02objtype: .print() Exception instances in adhoc way.Paul Sokolovsky
2014-05-01Fix the builtin min() and max() functions (and add tests).Andrew Scheller
2014-04-30tests: Add test for calling inherited native method on subclass.Paul Sokolovsky
2014-04-29tests: Add test for accessing attribute of inherited native type.Paul Sokolovsky
2014-04-29tests: Add basic tests for subclassing native types and using special methods.Paul Sokolovsky
2014-04-28py: Fix bug in map lookup of interned string vs non-interned.Damien George
2014-04-27py: Implement keyword-only args.Damien George
2014-04-26objstr: Implement .lstrip() & .rstrip().Paul Sokolovsky
2014-04-25py: Support instance __call__ method.Paul Sokolovsky
2014-04-19test/class-super: Expose super() breakage.Paul Sokolovsky
2014-04-19objarray: Implement slice subscription.Paul Sokolovsky
2014-04-19modstruct: Initial implementation of struct.pack().Paul Sokolovsky
2014-04-18sequence: Fix glaring bug in sequence comparison.Paul Sokolovsky
2014-04-17tests: Move gen_context to import tests, because it relies on import.Damien George
2014-04-17objgenerator: Generator must execute in its defining lexical context.Paul Sokolovsky
2014-04-17tests: Split out those tests requiring float and import.Damien George
2014-04-17tests: Remove print('flush') from 2 tests, since stmhal now works.Damien George
2014-04-16run-tests can now skip certain tests when run under Travis CIAndrew Scheller
2014-04-15py: Add builtin functions bin and oct, and some tests for them.Damien George
2014-04-15tests: Disable memoryerror.py test, since it fails on travis.Damien George
2014-04-15travis: More tests output debugging.Damien George
2014-04-15travis: More tests debugging.Damien George
2014-04-15travis: Debugging failing tests.Damien George
2014-04-15py: Implement __delitem__ method for classes.Paul Sokolovsky
2014-04-13tests: Add property test.Damien George
2014-04-13tests: Make tests pass on pyboard.Damien George
2014-04-13Merge pull request #473 from pfalcon/list-extend-iterDamien George
2014-04-13py: Rename collections module to _collections.Paul Sokolovsky
2014-04-13objlist: Make .extend accept arbitrary iterable.Paul Sokolovsky
2014-04-12py: Make all LOAD_FAST ops check for unbound local.Damien George
2014-04-12builtinimport: Implement relative imports.Paul Sokolovsky
2014-04-12builtinimport: Set __path__ attribute ASAP as it's clear we have a package.Paul Sokolovsky
2014-04-12py: Remove useless implementations of NOT_EQUAL in binary_op's.Damien George
2014-04-12py: Implement "from pkg import mod" variant of import.Paul Sokolovsky
2014-04-11py: Check that sequence has 2 elements for dict iterable constructor.Damien George
2014-04-11objdict: Implement construction from iterable of pairs.Paul Sokolovsky
2014-04-11objdict: Implement __getitem__ method.Paul Sokolovsky
2014-04-11modstruct: Basic implementation of native struct alignment and types.Paul Sokolovsky
2014-04-11modstruct: Refactor to support both LE and BE packed structs.Paul Sokolovsky
2014-04-10tests: Add test for multi-comparison.Damien George
2014-04-10objfun: Fix default arguments filling loop, was broken in presense of kwargs.Paul Sokolovsky
2014-04-10py: Start implementing "struct" module.Paul Sokolovsky
2014-04-09Merge branch 'str-index' of github.com:xbe/micropython into xbe-str-indexDamien George
2014-04-09py: str.join can now take arbitrary iterable as argument.Damien George
2014-04-09py: Generators can have their locals closed over.Damien George
2014-04-09py: Properly implement deletion of locals and derefs, and detect errors.Damien George
2014-04-09objint: Implement int.from_bytes() class method and .to_bytes() method.Paul Sokolovsky
2014-04-08tests: Oops: fix del-attr.Damien George
2014-04-08py: Remove DELETE_SUBSCR opcode, combine with STORE_SUBSCR.Damien George