Merge 3.5 (asyncio)

This commit is contained in:
Yury Selivanov 2015-08-05 14:47:47 -04:00
commit c28f3ae7ff
1 changed files with 4 additions and 0 deletions

View File

@ -107,6 +107,10 @@ class CoroutineTests(BaseTest):
self.assertTrue(asyncio.iscoroutine(FakeCoro()))
def test_iscoroutinefunction(self):
async def foo(): pass
self.assertTrue(asyncio.iscoroutinefunction(foo))
def test_function_returning_awaitable(self):
class Awaitable:
def __await__(self):