File: control

package info (click to toggle)
pprofile 2.1.0-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 512 kB
  • sloc: python: 2,928; sh: 41; makefile: 3
file content (37 lines) | stat: -rw-r--r-- 1,309 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: pprofile
Section: python
Priority: optional
Maintainer: Josue Ortega <josue@debian.org>
Build-Depends: debhelper-compat (= 13),
 dh-python,
 python3-all,
 python3-setuptools
Standards-Version: 4.7.0
Homepage: https://github.com/vpelletier/pprofile
X-Python3-Version: >= 3.6
Vcs-Git: https://salsa.debian.org/debian/pprofile.git
Vcs-Browser: https://salsa.debian.org/debian/pprofile
Rules-Requires-Root: no

Package: python3-pprofile
Architecture: all
Depends: ${python3:Depends}, ${misc:Depends},
 python3-pkg-resources
Suggests: python3-ipython
Description: Line-granularity, deterministic and statistic Python 3 profiler
 Line granularity allows locating precisely where time is spent in code.
 Thread awareness automatically propagates profiling to all threads (all
 threads in statistic mode, or threads spawned by profiled code in
 deterministic mode).
 .
 Deterministic profiling gives precise measures, but at a large speed
 cost (best used on minimal test scenario).
 .
 Statistic profiling gives rough measure, but has an extremely low
 overhead (suitable for live code profiling).
 .
 Does not require marking methods to profile, allowing non-method
 profiling (module imports, class & function declarations and other
 module-level code).
 .
 This package installs the library for Python 3.