summaryrefslogtreecommitdiff
path: root/redis/asyncio/lock.py
Commit message (Collapse)AuthorAgeFilesLines
* replase get_event_loop wite get_running_loop (#2530)dvora-h2023-01-051-2/+2
|
* Combine auto-concatenated strings (#2482)David Gilman2022-12-141-3/+3
|
* Enable AsyncIO cluster mode lock (#2446)Milhan2022-11-091-4/+12
| | | Co-authored-by: Chayim <chayim@users.noreply.github.com>
* Drop python 3.6 support (#2306)dvora-h2022-07-271-8/+2
|
* Fix incorrect return annotation in asyncio.lock (#2155)Jelle Zijlstra2022-05-021-3/+3
| | | | | NoReturn should be used only when the function never returns. In this case, the awaitable returns None if releasing the lock succeeds, so `Awaitable[None]` is right. Noticed this while reviewing python/typeshed#7676
* Add Async Support (#1899)Andrew Chen Wang2022-02-221-0/+311
Co-authored-by: Chayim I. Kirshen <c@kirshen.com> Co-authored-by: dvora-h <dvora.heller@redis.com>