ports/devel/py-aiosignal/pkg-descr
Stefan Eßer fb16dfecae Remove WWW entries moved into port Makefiles
Commit b7f05445c0 has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.

This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.

Approved by:		portmgr (tcberner)
2022-09-07 23:58:51 +02:00

10 lines
405 B
Text

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).