Browse Source

Remove unneeded arguments from super()

pull/1255/head
Miguel Grinberg 2 years ago
parent
commit
8da3c617a6
Failed to extract signature
  1. 2
      src/socketio/asyncio_pubsub_manager.py
  2. 3
      src/socketio/kafka_manager.py
  3. 6
      src/socketio/kombu_manager.py
  4. 8
      src/socketio/middleware.py
  5. 4
      src/socketio/namespace.py
  6. 9
      src/socketio/pubsub_manager.py
  7. 6
      src/socketio/redis_manager.py
  8. 4
      src/socketio/zmq_manager.py

2
src/socketio/asyncio_pubsub_manager.py

@ -83,7 +83,7 @@ class AsyncPubSubManager(AsyncManager):
async def disconnect(self, sid, namespace, **kwargs): async def disconnect(self, sid, namespace, **kwargs):
if kwargs.get('ignore_queue'): if kwargs.get('ignore_queue'):
return await super(AsyncPubSubManager, self).disconnect( return await super().disconnect(
sid, namespace=namespace) sid, namespace=namespace)
message = {'method': 'disconnect', 'sid': sid, message = {'method': 'disconnect', 'sid': sid,
'namespace': namespace or '/', 'host_id': self.host_id} 'namespace': namespace or '/', 'host_id': self.host_id}

3
src/socketio/kafka_manager.py

@ -43,8 +43,7 @@ class KafkaManager(PubSubManager): # pragma: no cover
'(Run "pip install kafka-python" in your ' '(Run "pip install kafka-python" in your '
'virtualenv).') 'virtualenv).')
super(KafkaManager, self).__init__(channel=channel, super().__init__(channel=channel, write_only=write_only)
write_only=write_only)
urls = [url] if isinstance(url, str) else url urls = [url] if isinstance(url, str) else url
self.kafka_urls = [url[8:] if url != 'kafka://' else 'localhost:9092' self.kafka_urls = [url[8:] if url != 'kafka://' else 'localhost:9092'

6
src/socketio/kombu_manager.py

@ -54,9 +54,7 @@ class KombuManager(PubSubManager): # pragma: no cover
raise RuntimeError('Kombu package is not installed ' raise RuntimeError('Kombu package is not installed '
'(Run "pip install kombu" in your ' '(Run "pip install kombu" in your '
'virtualenv).') 'virtualenv).')
super(KombuManager, self).__init__(channel=channel, super().__init__(channel=channel, write_only=write_only, logger=logger)
write_only=write_only,
logger=logger)
self.url = url self.url = url
self.connection_options = connection_options or {} self.connection_options = connection_options or {}
self.exchange_options = exchange_options or {} self.exchange_options = exchange_options or {}
@ -65,7 +63,7 @@ class KombuManager(PubSubManager): # pragma: no cover
self.publisher_connection = self._connection() self.publisher_connection = self._connection()
def initialize(self): def initialize(self):
super(KombuManager, self).initialize() super().initialize()
monkey_patched = True monkey_patched = True
if self.server.async_mode == 'eventlet': if self.server.async_mode == 'eventlet':

8
src/socketio/middleware.py

@ -29,14 +29,12 @@ class WSGIApp(engineio.WSGIApp):
""" """
def __init__(self, socketio_app, wsgi_app=None, static_files=None, def __init__(self, socketio_app, wsgi_app=None, static_files=None,
socketio_path='socket.io'): socketio_path='socket.io'):
super(WSGIApp, self).__init__(socketio_app, wsgi_app, super().__init__(socketio_app, wsgi_app, static_files=static_files,
static_files=static_files, engineio_path=socketio_path)
engineio_path=socketio_path)
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, def __init__(self, socketio_app, wsgi_app=None,
socketio_path='socket.io'): socketio_path='socket.io'):
super(Middleware, self).__init__(socketio_app, wsgi_app, super().__init__(socketio_app, wsgi_app, socketio_path=socketio_path)
socketio_path=socketio_path)

4
src/socketio/namespace.py

@ -31,7 +31,7 @@ class Namespace(BaseNamespace):
omitted, the default namespace is used. omitted, the default namespace is used.
""" """
def __init__(self, namespace=None): def __init__(self, namespace=None):
super(Namespace, self).__init__(namespace=namespace) super().__init__(namespace=namespace)
self.server = None self.server = None
def _set_server(self, server): def _set_server(self, server):
@ -166,7 +166,7 @@ class ClientNamespace(BaseNamespace):
omitted, the default namespace is used. omitted, the default namespace is used.
""" """
def __init__(self, namespace=None): def __init__(self, namespace=None):
super(ClientNamespace, self).__init__(namespace=namespace) super().__init__(namespace=namespace)
self.client = None self.client = None
def _set_client(self, client): def _set_client(self, client):

9
src/socketio/pubsub_manager.py

@ -24,14 +24,14 @@ class PubSubManager(BaseManager):
name = 'pubsub' name = 'pubsub'
def __init__(self, channel='socketio', write_only=False, logger=None): def __init__(self, channel='socketio', write_only=False, logger=None):
super(PubSubManager, self).__init__() super().__init__()
self.channel = channel self.channel = channel
self.write_only = write_only self.write_only = write_only
self.host_id = uuid.uuid4().hex self.host_id = uuid.uuid4().hex
self.logger = logger self.logger = logger
def initialize(self): def initialize(self):
super(PubSubManager, self).initialize() super().initialize()
if not self.write_only: if not self.write_only:
self.thread = self.server.start_background_task(self._thread) self.thread = self.server.start_background_task(self._thread)
self._get_logger().info(self.name + ' backend initialized.') self._get_logger().info(self.name + ' backend initialized.')
@ -47,7 +47,7 @@ class PubSubManager(BaseManager):
The parameters are the same as in :meth:`.Server.emit`. The parameters are the same as in :meth:`.Server.emit`.
""" """
if kwargs.get('ignore_queue'): if kwargs.get('ignore_queue'):
return super(PubSubManager, self).emit( return super().emit(
event, data, namespace=namespace, room=room, skip_sid=skip_sid, event, data, namespace=namespace, room=room, skip_sid=skip_sid,
callback=callback) callback=callback)
namespace = namespace or '/' namespace = namespace or '/'
@ -81,8 +81,7 @@ class PubSubManager(BaseManager):
def disconnect(self, sid, namespace=None, **kwargs): def disconnect(self, sid, namespace=None, **kwargs):
if kwargs.get('ignore_queue'): if kwargs.get('ignore_queue'):
return super(PubSubManager, self).disconnect( return super().disconnect(sid, namespace=namespace)
sid, namespace=namespace)
message = {'method': 'disconnect', 'sid': sid, message = {'method': 'disconnect', 'sid': sid,
'namespace': namespace or '/', 'host_id': self.host_id} 'namespace': namespace or '/', 'host_id': self.host_id}
self._handle_disconnect(message) # handle in this host self._handle_disconnect(message) # handle in this host

6
src/socketio/redis_manager.py

@ -48,12 +48,10 @@ class RedisManager(PubSubManager): # pragma: no cover
self.redis_url = url self.redis_url = url
self.redis_options = redis_options or {} self.redis_options = redis_options or {}
self._redis_connect() self._redis_connect()
super(RedisManager, self).__init__(channel=channel, super().__init__(channel=channel, write_only=write_only, logger=logger)
write_only=write_only,
logger=logger)
def initialize(self): def initialize(self):
super(RedisManager, self).initialize() super().initialize()
monkey_patched = True monkey_patched = True
if self.server.async_mode == 'eventlet': if self.server.async_mode == 'eventlet':

4
src/socketio/zmq_manager.py

@ -72,9 +72,7 @@ class ZmqManager(PubSubManager): # pragma: no cover
self.sink = sink self.sink = sink
self.sub = sub self.sub = sub
self.channel = channel self.channel = channel
super(ZmqManager, self).__init__(channel=channel, super().__init__(channel=channel, write_only=write_only, logger=logger)
write_only=write_only,
logger=logger)
def _publish(self, data): def _publish(self, data):
pickled_data = pickle.dumps( pickled_data = pickle.dumps(

Loading…
Cancel
Save