Browse Source

fix docstring typo: client/server mixup (#1163)

* fix docstring typo: client/server mixup

* fix docstring typo: client/server mixup
pull/1175/head
Sasja 2 years ago
committed by GitHub
parent
commit
598dd7e258
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      src/socketio/asyncio_client.py
  2. 6
      src/socketio/client.py

6
src/socketio/asyncio_client.py

@ -183,7 +183,7 @@ class AsyncClient(client.Client):
break break
async def emit(self, event, data=None, namespace=None, callback=None): async def emit(self, event, data=None, namespace=None, callback=None):
"""Emit a custom event to one or more connected clients. """Emit a custom event to the server.
:param event: The event name. It can be any string. The event names :param event: The event name. It can be any string. The event names
``'connect'``, ``'message'`` and ``'disconnect'`` are ``'connect'``, ``'message'`` and ``'disconnect'`` are
@ -229,7 +229,7 @@ class AsyncClient(client.Client):
packet.EVENT, namespace=namespace, data=[event] + data, id=id)) packet.EVENT, namespace=namespace, data=[event] + data, id=id))
async def send(self, data, namespace=None, callback=None): async def send(self, data, namespace=None, callback=None):
"""Send a message to one or more connected clients. """Send a message to the server.
This function emits an event with the name ``'message'``. Use This function emits an event with the name ``'message'``. Use
:func:`emit` to issue custom event names. :func:`emit` to issue custom event names.
@ -252,7 +252,7 @@ class AsyncClient(client.Client):
callback=callback) callback=callback)
async def call(self, event, data=None, namespace=None, timeout=60): async def call(self, event, data=None, namespace=None, timeout=60):
"""Emit a custom event to a client and wait for the response. """Emit a custom event to the server and wait for the response.
This method issues an emit with a callback and waits for the callback This method issues an emit with a callback and waits for the callback
to be invoked before returning. If the callback isn't invoked before to be invoked before returning. If the callback isn't invoked before

6
src/socketio/client.py

@ -365,7 +365,7 @@ class Client(object):
break break
def emit(self, event, data=None, namespace=None, callback=None): def emit(self, event, data=None, namespace=None, callback=None):
"""Emit a custom event to one or more connected clients. """Emit a custom event to the server.
:param event: The event name. It can be any string. The event names :param event: The event name. It can be any string. The event names
``'connect'``, ``'message'`` and ``'disconnect'`` are ``'connect'``, ``'message'`` and ``'disconnect'`` are
@ -409,7 +409,7 @@ class Client(object):
data=[event] + data, id=id)) data=[event] + data, id=id))
def send(self, data, namespace=None, callback=None): def send(self, data, namespace=None, callback=None):
"""Send a message to one or more connected clients. """Send a message to the server.
This function emits an event with the name ``'message'``. Use This function emits an event with the name ``'message'``. Use
:func:`emit` to issue custom event names. :func:`emit` to issue custom event names.
@ -430,7 +430,7 @@ class Client(object):
callback=callback) callback=callback)
def call(self, event, data=None, namespace=None, timeout=60): def call(self, event, data=None, namespace=None, timeout=60):
"""Emit a custom event to a client and wait for the response. """Emit a custom event to the server and wait for the response.
This method issues an emit with a callback and waits for the callback This method issues an emit with a callback and waits for the callback
to be invoked before returning. If the callback isn't invoked before to be invoked before returning. If the callback isn't invoked before

Loading…
Cancel
Save