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

Changelog

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

  * New upstream release
  * Standards-Version bumped to 4.0.0 (no changes needed)

 -- Piotr Ożarowski <email address hidden>  Tue, 20 Jun 2017 19:42:24 +0200

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

Artful: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
python-async-timeout_1.2.1-1.dsc 2.1 KiB 0bed3b3e788a868f3608e0ed717890148fce2bea909b87e3d4c28e31d2ad5baf
python-async-timeout_1.2.1.orig.tar.gz 7.6 KiB 380e9bfd4c009a14931ffe487499b0906b00b3378bb743542cfd9fbb6d8e4657
python-async-timeout_1.2.1-1.debian.tar.xz 1.7 KiB bd6e2f82657246c55e3b59657ef918db5acab83f37982c6d4bd5a1865e948613

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