wsgi.py 502 B

123456789101112131415
  1. """Backwards compatibility alias for :mod:`gevent.pywsgi`.
  2. In the past, this used libevent's http support, but that was dropped
  3. with the introduction of libev. libevent's http support had several
  4. limitations, including not supporting stream, not supporting
  5. pipelining, and not supporting SSL.
  6. .. deprecated:: 1.1
  7. Use :mod:`gevent.pywsgi`
  8. """
  9. from gevent.pywsgi import * # pylint:disable=wildcard-import,unused-wildcard-import
  10. import gevent.pywsgi as _pywsgi
  11. __all__ = _pywsgi.__all__
  12. del _pywsgi