Package: wnpp Severity: wishlist Owner: William Grzybowski <will...@grzy.org>
* Package name : aiorwlock Version : 0.6.0 Upstream Author : Andrew Svetlov * URL : https://github.com/aio-libs/aiorwlock * License : Apache 2.0 Programming Lang: Python Description : Synchronization primitive RWLock for asyncio Read write lock for asyncio. A RWLock maintains a pair of associated locks, one for read-only operations and one for writing. The read lock may be held simultaneously by multiple reader tasks, so long as there are no writers. The write lock is exclusive. This is an useful python to use with asyncio, may be useful for many scripts. I use it myself and I plan to maintain it within DPMT.