python-async-timeout 3.0.1-1.1 source package in Ubuntu

Changelog

python-async-timeout (3.0.1-1.1) unstable; urgency=medium

  * Non maintainer upload by the Reproducible Builds team.
  * No source change upload to rebuild on buildd with .buildinfo files.

 -- Holger Levsen <email address hidden>  Fri, 01 Jan 2021 16:53:24 +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

Builds

Hirsute: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
python-async-timeout_3.0.1-1.1.dsc 2.1 KiB d7bf764c1696b68d716b816ca9e2d16cec680ce98382631745f82e496e0e7352
python-async-timeout_3.0.1.orig.tar.gz 9.5 KiB 0c3c816a028d47f659d6ff5c745cb2acf1f966da1fe5c19c77a70282b25f4c5f
python-async-timeout_3.0.1-1.1.debian.tar.xz 1.8 KiB 86cb3447f15261a61666a59fab4609b5d4a4ffff3fbf9a956bbc370b14dc5763

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