Skip to content

Commit 2360aa4

Browse files
asyncio client
1 parent 63ddde0 commit 2360aa4

3 files changed

Lines changed: 399 additions & 4 deletions

File tree

socketio/__init__.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
from .tornado import get_tornado_handler
1313
if sys.version_info >= (3, 5): # pragma: no cover
1414
# from .asyncio_client import AsyncClient
15+
from .asyncio_client import AsyncClient
1516
from .asyncio_server import AsyncServer
1617
from .asyncio_manager import AsyncManager
1718
from .asyncio_namespace import AsyncNamespace, AsyncClientNamespace
@@ -29,6 +30,6 @@
2930
'KombuManager', 'RedisManager', 'ZmqManager', 'Namespace',
3031
'ClientNamespace', 'WSGIApp', 'Middleware']
3132
if AsyncServer is not None: # pragma: no cover
32-
__all__ += ['AsyncServer', 'AsyncNamespace', 'AsyncClientNamespace',
33-
'AsyncManager', 'AsyncRedisManager', 'ASGIApp',
34-
'get_tornado_handler']
33+
__all__ += ['AsyncClient', 'AsyncServer', 'AsyncNamespace',
34+
'AsyncClientNamespace', 'AsyncManager', 'AsyncRedisManager',
35+
'ASGIApp', 'get_tornado_handler']

0 commit comments

Comments
 (0)