File: control

package info (click to toggle)
faulthandler 2.4-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 176 kB
  • ctags: 161
  • sloc: ansic: 1,126; python: 633; makefile: 2
file content (26 lines) | stat: -rw-r--r-- 1,082 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
Source: faulthandler
Section: python
Priority: optional
Maintainer: Debian Python Modules Team <python-modules-team@lists.alioth.debian.org>
Uploaders: Miriam Ruiz <little_miry@yahoo.es>,
Build-Depends: debhelper (>= 9),
               dh-python,
               python-all-dev,
               python-setuptools,
Standards-Version: 3.9.8
Homepage: https://faulthandler.readthedocs.io/
Vcs-Git: https://anonscm.debian.org/git/python-modules/packages/faulthandler.git
Vcs-Browser: https://anonscm.debian.org/cgit/python-modules/packages/faulthandler.git
Testsuite: autopkgtest-pkg-python

Package: python-faulthandler
Architecture: any
Depends: ${misc:Depends},
         ${python:Depends},
         ${shlibs:Depends},
Provides: ${python:Provides},
Description: Display the Python backtrace on a crash
 Fault handler for SIGSEGV, SIGFPE, SIGBUS and SIGILL signals: it displays
 the Python backtrace and restores the previous handler. It allocates an
 alternate stack for this handler, if signaltstack() is available, to be
 able to allocate memory on the stack, even on stack overflow.