aboutsummaryrefslogtreecommitdiffstats
path: root/python/gevent/wsgi.py
diff options
context:
space:
mode:
authorJames Taylor <user234683@users.noreply.github.com>2018-09-14 19:32:27 -0700
committerJames Taylor <user234683@users.noreply.github.com>2018-09-14 19:32:27 -0700
commit4212164e91ba2f49583cf44ad623a29b36db8f77 (patch)
tree47aefe3c0162f03e0c823b43873356f69c1cd636 /python/gevent/wsgi.py
parent6ca20ff7010f2bafc7fefcb8cad982be27a8aeae (diff)
downloadyt-local-4212164e91ba2f49583cf44ad623a29b36db8f77.tar.lz
yt-local-4212164e91ba2f49583cf44ad623a29b36db8f77.tar.xz
yt-local-4212164e91ba2f49583cf44ad623a29b36db8f77.zip
Windows: Use 32-bit distribution of python
Diffstat (limited to 'python/gevent/wsgi.py')
-rw-r--r--python/gevent/wsgi.py15
1 files changed, 0 insertions, 15 deletions
diff --git a/python/gevent/wsgi.py b/python/gevent/wsgi.py
deleted file mode 100644
index 503d67b..0000000
--- a/python/gevent/wsgi.py
+++ /dev/null
@@ -1,15 +0,0 @@
-"""Backwards compatibility alias for :mod:`gevent.pywsgi`.
-
-In the past, this used libevent's http support, but that was dropped
-with the introduction of libev. libevent's http support had several
-limitations, including not supporting stream, not supporting
-pipelining, and not supporting SSL.
-
-.. deprecated:: 1.1
- Use :mod:`gevent.pywsgi`
-"""
-
-from gevent.pywsgi import * # pylint:disable=wildcard-import,unused-wildcard-import
-import gevent.pywsgi as _pywsgi
-__all__ = _pywsgi.__all__
-del _pywsgi