HomeSort by relevance Sort by last modified time
    Searched refs:coro_repr (Results 1 - 3 of 3) sorted by null

  /external/python/cpython3/Lib/asyncio/
coroutines.py 47 coro_repr = _format_coroutine(self)
50 coro_repr += f', created at {frame[0]}:{frame[1]}'
52 return f'<{self.__class__.__name__} {coro_repr}>'
253 coro_repr = f'{coro_name} done, defined at {filename}:{lineno}'
255 coro_repr = f'{coro_name} running, defined at {filename}:{lineno}'
259 coro_repr = f'{coro_name} running at {filename}:{lineno}'
263 coro_repr = f'{coro_name} done, defined at {filename}:{lineno}'
265 return coro_repr
  /external/python/cpython3/Objects/
genobject.c 910 coro_repr(PyCoroObject *coro) function
991 (reprfunc)coro_repr, /* tp_repr */
    [all...]
  /external/python/cpython3/Lib/test/test_asyncio/
test_tasks.py 409 coro_repr = repr(task._coro)
414 self.assertRegex(coro_repr, expected)
    [all...]

Completed in 9028 milliseconds