Binary package “python3-aiorwlock” in ubuntu jammy

Synchronization primitive RWLock for asyncio (Python 3)

 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 package installs the library for Python 3.