python-async-timeout 5.0.1-1 source package in Ubuntu

Changelog

python-async-timeout (5.0.1-1) unstable; urgency=medium

  * New upstream release
    Upstreamed into Python 3.11+, please migrate to asyncio.Timeout

 -- Piotr Ożarowski <email address hidden>  Fri, 08 Nov 2024 17:16:59 +0100

Upload details

Uploaded by:
Piotr Ożarowski
Uploaded to:
Sid
Original maintainer:
Piotr Ożarowski
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Plucky proposed universe misc

Builds

Plucky: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
python-async-timeout_5.0.1-1.dsc 2.1 KiB 5ab7db2e1603286dd91c29dafad02701d228a6b3864bcef0699c676f5bab8be3
python-async-timeout_5.0.1.orig.tar.gz 13.4 KiB 928c37731c8d24daa04ec421b0a1c60d5e52e6aa4dc02d3febc17efd66a26861
python-async-timeout_5.0.1-1.debian.tar.xz 2.2 KiB 5f7b1a1ff9e93f1749176a26975b9514b8cd66bec849a3be7fac671c92c9fbe5

No changes file available.

Binary packages built by this source

python3-async-timeout: timeout context manager for asyncio programs in Python

 The context manager is useful in cases when you want to apply timeout
 logic around block of code or in cases when asyncio.wait_for() is
 not suitable. Also it's much faster than asyncio.wait_for()
 because timeout doesn't create a new task.
 .
 Example:
 .
  with timeout(1.5):
      yield from inner()