SECURITY WARNING: Never run commands you don't understand. Always review code before execution. Use at your own risk.
Python New Added 8 September 2026

asyncio: Task was destroyed but it is pending!

The event loop shut down while a task was still running, so its coroutine never got to finish or clean up. It usually means a task was created with create_task and nobody kept a reference or awaited it, and the garbage collector took it away mid flight.

Quick fix

Read the commands before running them. Anything that restarts a service, deletes data or changes permissions should be tried on a non-production system first.

Quick fix
# Keep a strong reference: the loop only holds a weak one
background = set()
t = asyncio.create_task(worker())
background.add(t)
t.add_done_callback(background.discard)

# Wait for everything before the loop closes
async def main():
    async with asyncio.TaskGroup() as tg:   # 3.11+
        tg.create_task(worker())

# Cancel deliberately and let the task see it
t.cancel()
await asyncio.gather(t, return_exceptions=True)

# Surface the real error behind the noise
asyncio.run(main(), debug=True)

How to diagnose Python errors

Python errors cluster around the import system (which is really about sys.path and the active interpreter), environment management (which interpreter and which site-packages), and concurrency (the GIL, event loops, and pickling constraints in multiprocessing). A very large share of "module not found" reports are simply the wrong interpreter, which is why the first command should always identify it.

If the quick fix above does not resolve it, work through these steps. They apply to this whole class of error, not just to this one message, which is usually what saves the time.

  1. Identify the interpreter and its paths: python -c "import sys; print(sys.executable); print(sys.path)". This resolves most import errors immediately.
  2. Install into the interpreter you are running, not the one on PATH: python -m pip install … rather than bare pip.
  3. Read tracebacks bottom-up. The last line is the exception; the frames above show the call chain, and the relevant frame is usually your code, not the library's.
  4. For encoding errors, name the encoding explicitly and decide on an error policy, such as open(path, encoding='utf-8', errors='replace'), rather than relying on the locale default.
  5. For multiprocessing pickling errors, move the target function to module level. Closures, lambdas and locally defined classes cannot be pickled.

Tools worth reaching for

  • python -m pip
  • python -c 'import sys; print(sys.path)'
  • pip check
  • py-spy dump
  • uv / pipx for isolation

Authoritative references

Primary documentation for this error, worth reading before applying any fix in production.

docs.python.org

Related Python errors

See all 35 Python errors →

Browse other categories

Something missing or wrong?

This entry is maintained by hand. If the fix is out of date, incomplete, or you have a better one, email a correction and it will be reviewed.