sys.set_coroutine_wrapper()

sys.set_coroutine_wrapper(wrapper)

Allows intercepting creation of coroutine objects (only ones that are created by an async def function; generators decorated with types.coroutine() or asyncio.coroutine() will not be intercepted).

The wrapper argument must be either:

  • a callable that accepts one argument (a coroutine object);
  • None, to reset the wrapper.

If called twice, the new wrapper replaces the previous one. The function is thread-specific.

The wrapper callable cannot define new coroutines directly or indirectly:

1
2
3
4
5
6
7
8
9
10
11
12
def wrapper(coro):
    async def wrap(coro):
        return await coro
    return wrap(coro)
sys.set_coroutine_wrapper(wrapper)
 
async def foo():
    pass
 
# The following line will fail with a RuntimeError, because
# ``wrapper`` creates a ``wrap(coro)`` coroutine:
foo()

See also get_coroutine_wrapper().

New in version 3.5: See PEP 492 for more details.

Note

This function has been added on a provisional basis (see PEP 411 for details.) Use it only for debugging purposes.

doc_python
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.