Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
README.md | 2022-01-24 | 743 Bytes | |
v0.9.6.tar.gz | 2022-01-24 | 115.7 kB | |
v0.9.6.zip | 2022-01-24 | 171.2 kB | |
Totals: 3 Items | 287.6 kB | 0 |
Added
- Add a new base class,
uplink.retry.RetryBackoff
, which can be extended to implement custom backoff strategies. An instance of aRetryBackoff
subclass can be provided through thebackoff
argument of the@retry
decorator. (#238)
Changed
- Bump minimum version of
six
to1.13.0
. (#246)
Fixed
- Fix
@returns.json
to cast JSON response (or field referenced by thekey
argument) using thetype
argument when the given type is callable. This restores behavior that was inadvertently changed in v0.9.3. (#215) - Remove all usages of
asyncio.coroutine
in the library code to fix warnings related to the function's deprecation in Python 3.8+. (#203)