summaryrefslogtreecommitdiff
path: root/redis/asyncio/lock.py
Commit message (Collapse)AuthorAgeFilesLines
* 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>