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