/usr/lib/python2.7/dist-packages/fakesleep-0.1.egg-info is in python-fakesleep 0.1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | Metadata-Version: 1.1
Name: fakesleep
Version: 0.1
Summary: fake time.sleep() for use in tests
Home-page: http://github.com/wearpants/fakesleep
Author: Pete Fein
Author-email: pete@wearpants.org
License: BSD
Description: fakesleep
=========
fakesleep is a simple module for tests 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 / interpeter overhead can cause small differences in reported
times.
But sometimes, you need `sleep()`.
fakesleep provides a fake implementation of `time.sleep()` that doesn't
actually sleep. It also guarrantees "correct" results for calls to
`time.time()` and other time functions. Note that `datetime` functions are
**not** faked.
To install, simply call `fakesleep.monkey_patch()`. To restore the real versions, call `fakesleep.monkey_restore()`.
:author: Pete Fein <pete@wearpants.org>
:license: BSD
:versions: Python 2.7 & 3
:source: https://github.com/wearpants/fakesleep
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
|