wait-for2
Asyncio wait_for that can handle simultaneous cancellation and future completion.
What it is and what it does
wait_for2 is a drop-in replacement for asyncio.wait_for() that addresses a family of race conditions present in Python's builtin implementation across versions 3.7–3.11. When a timeout fires and the inner future completes simultaneously, or when cancellation and completion occur at the same time, the builtin asyncio.wait_for() can either lose the future's result or ignore the cancellation request, depending on the Python version. wait_for2 instead raises a CancelledWithResultError that contains both the cancellation signal and the result, allowing caller code to decide how to handle the edge case. Alternatively, a callback-based race_handler can be provided to process the result without raising an exception.
The package is explicitly designed as a compatibility shim: on Python 3.12+, where the builtin asyncio.wait_for was fixed, wait_for2 delegates to the standard library unless a race_handler is explicitly passed. For Python 3.7–3.11, it provides consistent, predictable behavior across all versions and implementations (CPython and PyPy). It has no runtime dependencies and installs as a pure Python wheel.
Use it for:
- Ensuring timeout and cancellation safety in asyncio code that must support Python 3.7–3.11 without losing results or cancellation signals.
- Handling edge cases where a task completes and is cancelled in the same event-loop cycle, using either exception handling or a callback.
- Migrating legacy asyncio code from Python 3.7–3.10 to newer versions while maintaining consistent race-condition semantics.
- Building robust async libraries that need predictable timeout behavior across multiple Python versions and implementations.
Worth the install?
AI-flagged interpretation of the facts on this page — verify before relying
Provides an alternate implementation of asyncio.wait_for() that handles race conditions between simultaneous cancellation and future completion consistently across Python 3.7–3.13.
Yes, if you support Python 3.7–3.11 and need bulletproof timeout and cancellation semantics in asyncio code. The package is low-friction to install and has no dependencies. On Python 3.12+, it transparently uses the builtin implementation, so it is safe to leave in place during version upgrades. If you only target Python 3.12+, the builtin asyncio.wait_for is sufficient and this package is unnecessary.
Install
wait-for2 on PyPI
pip
pip install wait-for2uv
uv add wait-for2poetry
poetry add wait-for2Installing wait-for2
Before you install
Low install friction; pure Python wheel with no runtime dependencies. Maintenance status is aging (last release June 2025, 427 days old), but the repository remains active and the package is explicitly designed to become unnecessary on Python 3.12+, where the builtin asyncio.wait_for was fixed.
License in practice
Licensed under Apache-2.0 (permissive), imposing no significant restrictions on use or redistribution in most contexts.
Quickstart
import asyncio
import wait_for2
task = asyncio.create_task(...)
try:
result = await wait_for2.wait_for(task, 5.0)
except wait_for2.CancelledWithResultError as e:
# Handle simultaneous cancellation and result
result = e.result
raise asyncio.CancelledError()
Requires Python 3.7 or later; on Python 3.12+ the package delegates to the builtin asyncio.wait_for unless a race_handler is explicitly provided.
Verify before relying
- Whether the package's race-condition handling callbacks (race_handler parameter) are thread-safe or have any async-context limitations.
- Performance overhead of wait_for2 compared to builtin asyncio.wait_for on Python 3.10–3.11.
Package facts
| License | Apache-2.0 (permissive) |
| Python support | not specified |
| Install friction | low — pure-Python wheel |
| Runtime dependencies | none |
| Maintenance | aging — 427 days since the last release |
| Last repo commit | |
| First released | |
| Downloads | 330,746/month — #7,531 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: wait_for2-0.4.1-py3-none-any.whl
Tags
More Software Development packages
Provides backported and experimental type hints…
permissive · top 100 on PyPI
numpyNumPy provides an N-dimensional array object…
permissive · top 100 on PyPI
fastapiFastAPI is a Python web framework for building…
permissive · top 100 on PyPI
annotated-docProvides a way to document function parameters,…
permissive · top 100 on PyPI
typerTyper builds command-line applications from…
permissive · top 1,000 on PyPI
distlibDistlib provides low-level packaging utilities…
permissive · top 1,000 on PyPI
async-timeoutProvides an asyncio-compatible timeout context…
permissive · top 1,000 on PyPI
aiotoolsaiotools provides idiomatic asyncio utilities…
permissive · top 15,000 on PyPI
aiorunProvides a simplified entry point for asyncio…
permissive · top 15,000 on PyPI
async-interruptProvides an asyncio context manager that…
permissive · top 5,000 on PyPI
clarifai-protocolProvides the protocol layer for Clarifai's…
permissive · top 15,000 on PyPI
waitingWaiting is a lightweight library for polling a…
permissive · top 15,000 on PyPI
polling2Polling2 lets you wait for a function to return…
permissive · top 5,000 on PyPI
pytest-raceProvides a pytest fixture that runs test…
permissive · top 15,000 on PyPI
stopitProvides context managers and decorators to…
permissive · top 15,000 on PyPI
interruptingcowInterrupts long-running Python code by raising…
permissive · top 15,000 on PyPI