aiosignal 1.2.0-1 source package in Ubuntu

Changelog

aiosignal (1.2.0-1) unstable; urgency=low

  * Initial release

 -- Piotr Ożarowski <email address hidden>  Sun, 28 Nov 2021 15:11:14 +0000

Upload details

Uploaded by:
Debian Python Team
Uploaded to:
Sid
Original maintainer:
Debian Python Team
Architectures:
all
Section:
misc
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Jammy: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
aiosignal_1.2.0-1.dsc 2.0 KiB 942e7c0c833561a197627e0eaacd8a0269a45595bac0722a7381f7dce4caecbd
aiosignal_1.2.0.orig.tar.gz 19.2 KiB 78ed67db6c7b7ced4f98e495e572106d5c432a93e1ddd1bf475e1dc05f5b7df2
aiosignal_1.2.0-1.debian.tar.xz 1.7 KiB 98cb3bf5a7eb9787d207a612015ef56b8b69acd064026c3b35728c01a6275756

No changes file available.

Binary packages built by this source

python3-aiosignal: manage callbacks in asyncio projects

 Signal is a list of registered asynchronous callbacks.
 .
 The signal's life-cycle has two stages: after creation its content
 could be filled by using standard list operations: `sig.append()` etc.
 .
 After you call `sig.freeze()` the signal is frozen: adding, removing
 and dropping callbacks is forbidden.
 .
 The only available operation is calling the previously registered
 callbacks by using `await sig.send(data)`.