File: control

package info (click to toggle)
aiosignal 1.3.2-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 168 kB
  • sloc: python: 252; makefile: 207
file content (32 lines) | stat: -rw-r--r-- 1,234 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
Source: aiosignal
Section: python
Priority: optional
Maintainer: Debian Python Team <team+python@tracker.debian.org>
Uploaders: Piotr Ożarowski <piotr@debian.org>
Build-Depends: debhelper-compat (= 13), dh-python,
               python3-all,
               python3-setuptools,
               python3-frozenlist,
# documentation:
#               python3-sphinx,
#               python3-sphinxcontrib-asyncio,
#               python3-sphinxcontrib.spelling,
Standards-Version: 4.6.0
Homepage: https://github.com/aio-libs/aiosignal
Vcs-Git: https://salsa.debian.org/python-team/packages/aiosignal.git
Vcs-Browser: https://salsa.debian.org/python-team/packages/aiosignal

Package: python3-aiosignal
Architecture: all
Depends: ${misc:Depends}, ${python3:Depends},
Description: 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)`.