tests/basics: Improve runtime.c test coverage.

This commit is contained in:
Rami Ali
2017-01-17 16:03:30 +11:00
committed by Damien George
parent cba723fc8c
commit 5314219f18
3 changed files with 10 additions and 1 deletions

View File

@@ -17,6 +17,11 @@ foo(*range(3))
# pos then iterator
foo(1, *range(2, 4))
# an iterator with many elements
def foo(*rest):
print(rest)
foo(*range(10))
# method calls with *pos
class A: