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

Changelog

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

  * New upstream release

 -- Piotr Ożarowski <email address hidden>  Mon, 07 Nov 2022 14:42:42 +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
Mantic release universe misc
Lunar release universe misc

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
python-async-timeout_4.0.2-1.dsc 2.1 KiB 96149512b596673789adb864dd33ec4c1d7204273b1c85ef4ddc08c2cbb4e121
python-async-timeout_4.0.2.orig.tar.gz 11.2 KiB 1eb41fc35a0a24461b00f3479553972c99300e194eb212ff8b816c90c084d1d4
python-async-timeout_4.0.2-1.debian.tar.xz 2.1 KiB a4c9a75ece9eaf865858fbe719928084a9346550db346da0fdc98474e575015c

Available diffs

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()