This website requires JavaScript.
Explore
Help
Register
Sign In
Rooba
/
aioitertools
mirror of
https://github.com/omnilib/aioitertools.git
Watch
1
Star
1
Fork
You've already forked aioitertools
0
Code
Issues
Packages
Projects
Releases
Wiki
Activity
1af4bf4aa7
aioitertools
/
requirements.txt
2 lines
45 B
Plaintext
Raw
Normal View
History
Unescape
Escape
Deprecate loop parameter to asyncio functions The asyncio `loop` parameter has been deprecated since Python 3.8 and is removed in Python 3.10. This deprecates use of the loop parameter in aioitertools, and the parameters will be removed with or after the release of aioitertools v0.11.0. Adds a decorator `deprecated_wait_param()` that emits deprecation warnings if the decorated functions are passed the `loop` kwarg. Adds `@deprecated_wait_param` decorator to `as_completed()`, `gather()`, and `gather_iter()` functions. The `loop` parameter is no longer used, even if passed, so that aioitertools will work on Python 3.10 runtimes. Fixes #84
2022-02-05 08:01:45 +00:00
typing_extensions>=4.0;python_version<"3.10"