aboutsummaryrefslogtreecommitdiffstats
path: root/python/gevent/time.py
blob: 34abf85e28ce5f6193d827173e2cd089bb472973 (plain)
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
# Copyright (c) 2018 gevent. See LICENSE for details.
"""
The standard library :mod:`time` module, but :func:`sleep` is
gevent-aware.

.. versionadded:: 1.3a2
"""

from __future__ import absolute_import

__implements__ = [
    'sleep',
]

__all__ = __implements__

import time as __time__

from gevent._util import copy_globals

__imports__ = copy_globals(__time__, globals(),
                           names_to_ignore=__implements__)



from gevent.hub import sleep
sleep = sleep # pylint