diff --git a/src/netius/base/compat.py b/src/netius/base/compat.py index 55b90fdf..98e7ee2d 100644 --- a/src/netius/base/compat.py +++ b/src/netius/base/compat.py @@ -330,6 +330,8 @@ def _start_serving( ssl_handshake_timeout=None, ): # @TODO: this is pending proper Netius implementation + # to make it compatible with + # https://docs.python.org/3/library/asyncio-eventloop.html#asyncio.Server.start_serving self._add_reader( sock.fileno(), self._accept_connection, @@ -821,9 +823,6 @@ def _serve_stream_compat( :see: https://docs.python.org/3/library/asyncio-eventloop.html#asyncio.loop.create_server """ - # @TODO: implement this stuff meaning that the compat - # mode is the mode in which Netius runs compatible - # with the asyncio module from . import common loop = loop or common.get_loop()