aboutsummaryrefslogtreecommitdiffstats
path: root/python/gevent/resolver/blocking.py
diff options
context:
space:
mode:
authorJames Taylor <user234683@users.noreply.github.com>2019-09-06 16:31:13 -0700
committerJames Taylor <user234683@users.noreply.github.com>2019-09-06 16:31:13 -0700
commit3d57e14df7ba5f14a634295caf3b2e60da50bfe2 (patch)
tree4903bcb79a49ad714a1a9129765b9545405c9978 /python/gevent/resolver/blocking.py
parentac32b24b2a011292b704a3f27e8fd08a7ae9424b (diff)
downloadyt-local-3d57e14df7ba5f14a634295caf3b2e60da50bfe2.tar.lz
yt-local-3d57e14df7ba5f14a634295caf3b2e60da50bfe2.tar.xz
yt-local-3d57e14df7ba5f14a634295caf3b2e60da50bfe2.zip
Remove windows python distribution from repo and add requirements.txt
Diffstat (limited to 'python/gevent/resolver/blocking.py')
-rw-r--r--python/gevent/resolver/blocking.py41
1 files changed, 0 insertions, 41 deletions
diff --git a/python/gevent/resolver/blocking.py b/python/gevent/resolver/blocking.py
deleted file mode 100644
index 84cbd9c..0000000
--- a/python/gevent/resolver/blocking.py
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright (c) 2018 gevent contributors. See LICENSE for details.
-
-import _socket
-
-class Resolver(object):
- """
- A resolver that directly uses the system's resolver functions.
-
- .. caution::
-
- This resolver is *not* cooperative.
-
- This resolver has the lowest overhead of any resolver and
- typically approaches the speed of the unmodified :mod:`socket`
- functions. However, it is not cooperative, so if name resolution
- blocks, the entire thread and all its greenlets will be blocked.
-
- This can be useful during debugging, or it may be a good choice if
- your operating system provides a good caching resolver (such as
- macOS's Directory Services) that is usually very fast and
- functionally non-blocking.
-
- .. versionchanged:: 1.3a2
- This was previously undocumented and existed in :mod:`gevent.socket`.
-
- """
-
- def __init__(self, hub=None):
- pass
-
- def close(self):
- pass
-
- for method in (
- 'gethostbyname',
- 'gethostbyname_ex',
- 'getaddrinfo',
- 'gethostbyaddr',
- 'getnameinfo'
- ):
- locals()[method] = staticmethod(getattr(_socket, method))