backoff 2.2.1-1 source package in Ubuntu

Changelog

backoff (2.2.1-1) unstable; urgency=medium

  * New upstream release.
  * Bug fix: "truncated package description", thanks to Daniele Forsi
    (Closes: #1021567).

 -- Roland Mas <email address hidden>  Fri, 11 Nov 2022 17:19:31 +0100

Upload details

Uploaded by:
Debian Python Team
Uploaded to:
Sid
Original maintainer:
Debian Python Team
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc
Noble release universe misc
Mantic release universe misc
Lunar release universe misc

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
backoff_2.2.1-1.dsc 1.9 KiB 45d11d80baf65a74707a70c6cdf7aff221bba5d8dbcf3351218ef8a64bad385c
backoff_2.2.1.orig.tar.gz 16.6 KiB 03f829f5bb1923180821643f8753b0502c3b682293992485b0eef2807afa5cba
backoff_2.2.1-1.debian.tar.xz 2.5 KiB a4061a8e59cf542fb60430a24623e0e3b3a3e5dce21615d7c13a439a6740771e

Available diffs

No changes file available.

Binary packages built by this source

python3-backoff: Function decoration for backoff and retry

 This module provides function decorators which can be used to wrap a
 function such that it will be retried until some condition is met. It
 is meant to be of use when accessing unreliable resources with the
 potential for intermittent failures i.e. network resources and external
 APIs. Somewhat more generally, it may also be of use for dynamically
 polling resources for externally generated content.
 .
 Decorators support both regular functions for synchronous code and
 asyncio's coroutines for asynchronous code.