aboutsummaryrefslogtreecommitdiffstats
path: root/python/gevent/resolver_thread.py
blob: a8687e72dfb434ff3e9f2b79d995ade6bb380150 (plain)
1
2
3
4
5
6
7
8
9
10
"""Backwards compatibility alias for :mod:`gevent.resolver.thread`.

.. deprecated:: 1.3
   Use :mod:`gevent.resolver.cares`
"""

from gevent.resolver.thread import * # pylint:disable=wildcard-import,unused-wildcard-import
import gevent.resolver.thread as _thread
__all__ = _thread.__all__
del _thread