diff options
author | James Taylor <user234683@users.noreply.github.com> | 2018-07-12 23:40:30 -0700 |
---|---|---|
committer | James Taylor <user234683@users.noreply.github.com> | 2018-07-12 23:41:07 -0700 |
commit | c3b9f8c4582882cd1f768b0727eca75475bb4f94 (patch) | |
tree | 5b4a1c693fd5b7416f1d5a75862e633502e77ca7 /python/gevent/wsgi.py | |
parent | fe9fe8257740529f5880693992e4eeca35c7ea3e (diff) | |
download | yt-local-c3b9f8c4582882cd1f768b0727eca75475bb4f94.tar.lz yt-local-c3b9f8c4582882cd1f768b0727eca75475bb4f94.tar.xz yt-local-c3b9f8c4582882cd1f768b0727eca75475bb4f94.zip |
track embedded python distribution
Diffstat (limited to 'python/gevent/wsgi.py')
-rw-r--r-- | python/gevent/wsgi.py | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/python/gevent/wsgi.py b/python/gevent/wsgi.py new file mode 100644 index 0000000..503d67b --- /dev/null +++ b/python/gevent/wsgi.py @@ -0,0 +1,15 @@ +"""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 |