File: control

package info (click to toggle)
aiosignal 1.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 232 kB
  • sloc: python: 284; makefile: 207
file content (37 lines) | stat: -rw-r--r-- 1,432 bytes parent folder | download
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
33
34
35
36
37
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-sequence-python3,
               python3-all,
               python3-setuptools,
               python3-frozenlist,
               python3-pytest <!nocheck>,
               python3-pytest-asyncio <!nocheck>,
               python3-pytest-cov <!nocheck>,
# 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
Testsuite: autopkgtest-pkg-pybuild

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