File: control

package info (click to toggle)
python-yappi 1.6.10-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,612 kB
  • sloc: python: 4,081; ansic: 2,500; makefile: 27
file content (44 lines) | stat: -rw-r--r-- 1,587 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
33
34
35
36
37
38
39
40
41
42
43
44
Source: python-yappi
Section: python
Priority: optional
Maintainer: Debian OpenStack <team+openstack@tracker.debian.org>
Uploaders:
 Thomas Goirand <zigo@debian.org>,
Build-Depends:
 debhelper-compat (= 10),
 dh-python,
 openstack-pkg-tools,
 python3-all-dev,
 python3-gevent,
 python3-pytest,
 python3-setuptools,
Standards-Version: 4.4.1
Vcs-Browser: https://salsa.debian.org/openstack-team/third-party/python-yappi
Vcs-Git: https://salsa.debian.org/openstack-team/third-party/python-yappi.git
Homepage: https://github.com/sumerc/yappi

Package: python3-yappi
Architecture: any
Depends:
 python3-gevent,
 ${misc:Depends},
 ${python3:Depends},
 ${shlibs:Depends},
Description: Yet Another Python Profiler - Python 3.x
 Yappi stands for Yet Another Python Profiler. It supports Multithread/CPU time
 profiling.
 .
 CPython standard distribution comes with three profilers. cProfile, Profile
 and hotshot. cProfile is implemented as a C module based on lsprof, Profile is
 in pure Python and hotshot can be seen as a small subset of a cProfile.
 .
 The major issue is that all of these profilers lack support for multi-threaded
 programs and CPU time.
 .
 If you want to profile a multi-threaded application, you must give an entry
 point to these profilers and then maybe merge the outputs. None of these
 profilers are designed to work on long-running multi-threaded application. It
 is impossible to profile an application retrieve the statistics then stop and
 then start later on the fly (without affecting the profiled application).
 .
 This package contains the Python 3.x module.