diff -r 1109854f15f9 -r dda7e43934dc src/eric7/RemoteServer/EricServer.py --- a/src/eric7/RemoteServer/EricServer.py Fri Mar 08 15:51:14 2024 +0100 +++ b/src/eric7/RemoteServer/EricServer.py Fri Mar 08 16:08:43 2024 +0100 @@ -202,7 +202,7 @@ return {} jsonStr = data.decode("utf8", "backslashreplace") - print("Eric Server Receive:", jsonStr) # for debugging + print("Eric Server Receive:", jsonStr) # for debugging # noqa: M801 try: return json.loads(jsonStr.strip()) except (TypeError, ValueError) as err: @@ -324,7 +324,6 @@ print(f"'eric-ide' connection from {address[0]}, port {address[1]}") # noqa: M801 self.__connection = connection - ##self.__connection.setblocking(False) data = types.SimpleNamespace( name="eric-ide", address=address, handler=self.__serviceIdeConnection )