File: control

package info (click to toggle)
fakesleep 0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 112 kB
  • ctags: 55
  • sloc: makefile: 146; python: 99
file content (39 lines) | stat: -rw-r--r-- 1,579 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
38
39
Source: fakesleep
Section: python
Priority: optional
Maintainer: Debian Python Modules Team <python-modules-team@lists.alioth.debian.org>
Uploaders: Free Ekanayaka <freee@debian.org>
Build-Depends: debhelper (>= 9),
               dh-python,
               python-all,
               python3-all
Standards-Version: 3.9.8
Homepage: http://github.com/wearpants/fakesleep
Vcs-Browser: https://anonscm.debian.org/cgit/python-modules/packages/fakesleep.git
Vcs-Git: https://anonscm.debian.org/git/python-modules/packages/fakesleep.git

Package: python-fakesleep
Architecture: all
Depends: ${misc:Depends}, ${python:Depends}
Provides: ${python:Provides}
Description: Fake version of time.sleep() for use in tests
 The fakesleep module helps testing code that use `time.sleep()`. Sleeping in
 tests is generally considered bad (as it makes tests run slow). Using
 sleep with `time.time()` can lead to spurious failures, as clock
 precision / interpreter overhead can cause small differences in reported
 times.
 .
 This package provides the Python 2.x module.

Package: python3-fakesleep
Architecture: all
Depends: ${misc:Depends}, ${python3:Depends}
Provides: ${python3:Provides}
Description: Fake version of time.sleep() for use in tests
 The fakesleep module helps testing code that use `time.sleep()`. Sleeping in
 tests is generally considered bad (as it makes tests run slow). Using
 sleep with `time.time()` can lead to spurious failures, as clock
 precision / interpreter overhead can cause small differences in reported
 times.
 .
 This package provides the Python 3.x module.