Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
added test for builtin.aiter
  • Loading branch information
sum12 committed Apr 21, 2022
commit d74a1d58a687fc74d03a5d6f788d723ac2835ccf
4 changes: 0 additions & 4 deletions Lib/test/test_asyncgen.py
Original file line number Diff line number Diff line change
Expand Up @@ -543,8 +543,6 @@ async def consume():
self.loop.run_until_complete(consume())
self.assertEqual(results, [1, 2])

# TODO: RUSTPYTHON, NameError: name 'aiter' is not defined
@unittest.expectedFailure
def test_aiter_idempotent(self):
async def gen():
yield 1
Expand Down Expand Up @@ -766,8 +764,6 @@ def run_test(test):
run_test(test5)
run_test(test6)

# TODO: RUSTPYTHON, NameError: name 'aiter' is not defined
@unittest.expectedFailure
def test_aiter_bad_args(self):
async def gen():
yield 1
Expand Down