File: control

package info (click to toggle)
python-iowait 0.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 136 kB
  • sloc: python: 740; makefile: 2
file content (31 lines) | stat: -rw-r--r-- 1,272 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
Source: python-iowait
Maintainer: Debian Python Team <team+python@tracker.debian.org>
Section: python
Testsuite: autopkgtest-pkg-python
Priority: optional
Build-Depends: debhelper-compat (= 13),
               dh-sequence-python3,
               python3-setuptools
Build-Depends-Indep: python3-all
Standards-Version: 4.7.0
Vcs-Browser: https://salsa.debian.org/python-team/packages/python-iowait
Vcs-Git: https://salsa.debian.org/python-team/packages/python-iowait.git
Homepage: https://launchpad.net/python-iowait
Rules-Requires-Root: no

Package: python3-iowait
Architecture: all
Depends: ${misc:Depends},
         ${python3:Depends}
Breaks: ${python3:Breaks}
Description: Platform-independent module for I/O completion events
 Different operating systems provide different ways to wait for I/O completion
 events: there's select(), poll(), epoll() and kqueue(). For cross-platform
 applications it can be a pain to support all this system functions, especially
 because each one provides a different interface.
 .
 IOWait solves this problem by providing a unified interface and using always
 the best and faster function available in the platform. Its only limitation is
 that, on Windows, it only works for sockets.
 .
 This package provides the module for Python 3.