MCPcopy Index your code
hub / github.com/python/cpython / test_coro_wrapper_send_tuple

Method test_coro_wrapper_send_tuple

Lib/test/test_coroutines.py:913–918  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

911 self.assertEqual(CHK, 1)
912
913 def test_coro_wrapper_send_tuple(self):
914 async def foo():
915 return (10,)
916
917 result = run_async__await__(foo())
918 self.assertEqual(result, ([], (10,)))
919
920 def test_coro_wrapper_send_stop_iterator(self):
921 async def foo():

Callers

nothing calls this directly

Calls 3

run_async__await__Function · 0.85
fooFunction · 0.70
assertEqualMethod · 0.45

Tested by

no test coverage detected