aboutsummaryrefslogtreecommitdiff
path: root/tests
AgeCommit message (Expand)Author
2014-03-31py: Properly implement divide-by-zero handling.Paul Sokolovsky
2014-03-30Merge pull request #399 from pfalcon/gen-defargsDamien George
2014-03-30py: Fix "TypeError: 'iterator' object is not iterable", doh.Paul Sokolovsky
2014-03-30py: Implement support for generalized generator protocol.Paul Sokolovsky
2014-03-30py: Implement positional and keyword args via * and **.Damien George
2014-03-30objgenerator: Handle default args to generator functions.Paul Sokolovsky
2014-03-30vm: Implement CALL_FUNCTION_VAR opcode (foo(*(1, 2, 3))).Paul Sokolovsky
2014-03-30Add "tracing" to try-reraise2.py test. It now fails.Damien George
2014-03-30vm: Save current active exception on opening new try block.Paul Sokolovsky
2014-03-29py: Reraising exception possible only in except block.Paul Sokolovsky
2014-03-29Merge pull request #389 from pfalcon/with-statementDamien George
2014-03-29Merge pull request #383 from pfalcon/yield-fromDamien George
2014-03-29tests: Remove unimplemented exceptions from testing.Damien George
2014-03-29tests: Add "with" statement testcases.Paul Sokolovsky
2014-03-28tests: Add testcases for yield from.Paul Sokolovsky
2014-03-26Merge pull request #381 from pfalcon/closure-defargsDamien George
2014-03-27py: Implement getattr() builtin.Paul Sokolovsky
2014-03-26py: Support closures with default args.Paul Sokolovsky
2014-03-26py: Replace mp_const_stop_iteration object with MP_OBJ_NULL.Damien George
2014-03-26Merge pull request #379 from pfalcon/reraiseDamien George
2014-03-26Merge branch 'gen-close-ret-val' of github.com:pfalcon/micropython into pfalc...Damien George
2014-03-26vm: Implement raise statement w/o args (reraising last exception).Paul Sokolovsky
2014-03-26objgenerator: Implement return with value and .close() method.Paul Sokolovsky
2014-03-25Merge pull request #370 from xbe/str-rfindDamien George
2014-03-25py: Removed some unnecessary exception objects.Damien George
2014-03-25objexcept: Add "args" exception attribute, as well as StopIteration.value.Paul Sokolovsky
2014-03-25rt_load_method(): Add missing qstr_str() when getting type name.Paul Sokolovsky
2014-03-24Implement str.rfind() and add tests for it.xbe
2014-03-23py: Implement support for "except Exception as var" clause.Paul Sokolovsky
2014-03-23run-tests: Dump output of failing tests to files again.Paul Sokolovsky
2014-03-22Merge pull request #359 from rjdowdall/masterDamien George
2014-03-22Fixed floor division on mp ints and small ints. Added a floordivide test case.Rachel Dowdall
2014-03-22Fixed modulo operator on ints and mp ints to agree with python. Added intdivm...Rachel Dowdall
2014-03-22objgenerator: Implement .throw() method to throw exceptions into generator.Paul Sokolovsky
2014-03-22objgenerator: Implement throwing exceptions out of generator.Paul Sokolovsky
2014-03-22objgenerator: Keep exception stack within generator object, like value stack.Paul Sokolovsky
2014-03-22Added exception hierarchy except for OSError and UnicodeError (requires argum...Rachel Dowdall
2014-03-22Fixed broken math functions that return bool and added some more.Rachel Dowdall
2014-03-22py: Make 'bytes' be a proper type, support standard constructor args.Paul Sokolovsky
2014-03-22objint_longlong: Add regression test for improper inplace op implementation.Paul Sokolovsky
2014-03-21Merge pull request #351 from xbe/str-partitionDamien George
2014-03-21Implement str.rpartition and add tests for it.xbe
2014-03-21Implement str.partition and add tests for it.xbe
2014-03-20Rename test so that it doesn't clash with Python math module.Damien George
2014-03-20Added various simple functions to math module.Rachel Dowdall
2014-03-20py: Add mpz modulo operation.Damien George
2014-03-16Implement support for __str__ and __repr__ special methods in classes.Paul Sokolovsky
2014-03-13py: In string.count, handle case of zero-length needle.Damien George
2014-03-13Fix issues in str.count implementation.xbe
2014-03-12Implement str.count and add tests for it.xbe