async_retrying icon indicating copy to clipboard operation
async_retrying copied to clipboard

Simple retrying for asyncio

Results 14 async_retrying issues
Sort by recently updated
recently updated
newest added

These is quite all I want to edit till the moment. - no `asyncio.coroutine` decorator - the latest `async_timeout` version support - unittests are done with the `pytest_asyncio` plugin -...

https://docs.python.org/3.10/library/asyncio-task.html#generator-based-coroutines Generally speaking the asyncio.coroutine decorator and yield from is no longer supported in Python 3.11 version of asyncio.

python==3.10 async_retrying==0.2.2 error: TypeError: sleep() got an unexpected keyword argument 'loop' This may be caused by the removal of loop parameter in later versions of python. Can you optimize it?...

Bumps [ipython](https://github.com/ipython/ipython) from 6.1.0 to 7.16.3. Commits d43c7c7 release 7.16.3 5fa1e40 Merge pull request from GHSA-pq7m-3gw7-gq5x 8df8971 back to dev 9f477b7 release 7.16.2 138f266 bring back release helper from master...

dependencies

Bumps [py](https://github.com/pytest-dev/py) from 1.4.34 to 1.10.0. Changelog Sourced from py's changelog. 1.10.0 (2020-12-12) Fix a regular expression DoS vulnerability in the py.path.svnwc SVN blame functionality (CVE-2020-29651) Update vendored apipkg: 1.4...

dependencies

Bumps [pygments](https://github.com/pygments/pygments) from 2.2.0 to 2.7.4. Release notes Sourced from pygments's releases. 2.7.4 Updated lexers: Apache configurations: Improve handling of malformed tags (#1656) CSS: Add support for variables (#1633, #1666)...

dependencies

I dont want to get logging massage, could you add a params like `log=False` to close logger.warning msg。 ` if log: logger.warning( exc.__class__.__name__ + ' -> Attempts (%(attempt)d) are over...

My proposal is to make `retry` function possible to be used as context manager which wraps original function in the `with` block: ```python >>> from asynctest import CoroutineMock >>> async...