Browse Source
fix backwards compatible problems with python-engineio 3.0
pull/221/head
Miguel Grinberg
6 years ago
No known key found for this signature in database
GPG Key ID: 36848B262DF5F06C
2 changed files with
10 additions and
2 deletions
-
socketio/middleware.py
-
socketio/tornado.py
|
@ -39,3 +39,7 @@ class WSGIApp(engineio.WSGIApp): |
|
|
|
|
|
|
|
|
class Middleware(WSGIApp): |
|
|
class Middleware(WSGIApp): |
|
|
"""This class has been renamed to WSGIApp and is now deprecated.""" |
|
|
"""This class has been renamed to WSGIApp and is now deprecated.""" |
|
|
|
|
|
def __init__(self, socketio_app, wsgi_app=None, |
|
|
|
|
|
socketio_path='socket.io'): |
|
|
|
|
|
super(Middleware, self).__init__(socketio_app, wsgi_app, |
|
|
|
|
|
socketio_path=socketio_path) |
|
|
|
@ -1,7 +1,11 @@ |
|
|
import sys |
|
|
import sys |
|
|
if sys.version_info >= (3, 5): |
|
|
if sys.version_info >= (3, 5): |
|
|
from engineio.async_tornado import get_tornado_handler as \ |
|
|
try: |
|
|
get_engineio_handler |
|
|
from engineio.async_drivers.tornado import get_tornado_handler as \ |
|
|
|
|
|
get_engineio_handler |
|
|
|
|
|
except ImportError: |
|
|
|
|
|
from engineio.async_tornado import get_tornado_handler as \ |
|
|
|
|
|
get_engineio_handler |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def get_tornado_handler(socketio_server): |
|
|
def get_tornado_handler(socketio_server): |
|
|