--- a/src/eric7/DebugClients/Python/DebugClientBase.py Wed Apr 10 17:03:56 2024 +0200 +++ b/src/eric7/DebugClients/Python/DebugClientBase.py Wed May 15 10:45:50 2024 +0200 @@ -1167,7 +1167,7 @@ # immediate return if nothing is ready. try: - rrdy, wrdy, xrdy = select.select([self.readstream], wrdy, [], 0) + rrdy, wrdy, _xrdy = select.select([self.readstream], wrdy, [], 0) except (KeyboardInterrupt, OSError): return @@ -1835,7 +1835,7 @@ @param passive flag indicating a passive debugging session @type bool @param multiprocessSupport flag indicating to enable multiprocess - debugging support + debugging support (unused) @type bool """ if host is None: