tests/basics/iter1.py: Add more tests for walking a user-defined iter.

Some code in mp_iternext() was only tested by the native emitter, so the
tests added here test this function using just the bytecode emitter.
This commit is contained in:
Damien George 2018-03-30 14:21:18 +11:00
parent f50b64cab5
commit bcfff4fc98
1 changed files with 9 additions and 0 deletions

View File

@ -68,3 +68,12 @@ except StopIteration:
for i in myiter(32):
print(i)
# repeat some of the above tests but use tuple() to walk the iterator (tests mp_iternext)
print(tuple(myiter(5)))
print(tuple(myiter(12)))
print(tuple(myiter(32)))
try:
tuple(myiter(22))
except TypeError:
print('raised TypeError')