MagicStack / asyncpg

A fast PostgreSQL Database Client Library for Python/asyncio.
Apache License 2.0
6.88k stars 399 forks source link

Mark pool-wrapped connection coroutine methods as coroutines #1134

Closed elprans closed 2 months ago

elprans commented 6 months ago

Use markcoroutinefunction (available in Python 3.12+) to make inspect.iscoroutinefunction() return the correct answer for wrapped connection methods.

Fixes: #1133