Lines Matching refs:coroutine
127 @types.coroutine
2243 @types.coroutine
2247 async def coroutine():
2249 self.coroutine = coroutine()
2252 self.coroutine.close()
2255 return inspect.getcoroutinestate(self.coroutine)
2261 self.coroutine.send(None)
2267 self.coroutine.send(None)
2275 self.coroutine.throw(RuntimeError)
2279 # repr() and str() of a coroutine state should contain the state name
2287 @types.coroutine