diff -r dee6e106b4d3 -r 15e30f0c76a8 src/eric7/DebugClients/Python/MultiProcessDebugExtension.py --- a/src/eric7/DebugClients/Python/MultiProcessDebugExtension.py Mon Feb 24 15:11:18 2025 +0100 +++ b/src/eric7/DebugClients/Python/MultiProcessDebugExtension.py Mon Feb 24 15:43:49 2025 +0100 @@ -259,7 +259,7 @@ Function replacing the 'fork_exec' functions of the _posixsubprocess module. """ - import _posixsubprocess # __IGNORE_WARNING_I103__ + import _posixsubprocess # __IGNORE_WARNING_I-103__ if _shallPatch(): args = patchArguments(_debugClient, args) @@ -363,9 +363,9 @@ or _winapi module. """ try: - import _subprocess # __IGNORE_WARNING_I10__ + import _subprocess # __IGNORE_WARNING_I-10__ except ImportError: - import _winapi as _subprocess # __IGNORE_WARNING_I10__ + import _winapi as _subprocess # __IGNORE_WARNING_I-10__ if _shallPatch(): cmdline = patchArgumentStringWindows(_debugClient, cmdline) return getattr(_subprocess, originalName)(appName, cmdline, *args) @@ -415,14 +415,14 @@ if isWindowsPlatform(): try: - import _subprocess # __IGNORE_WARNING_I10__ + import _subprocess # __IGNORE_WARNING_I-10__ except ImportError: - import _winapi as _subprocess # __IGNORE_WARNING_I10__ + import _winapi as _subprocess # __IGNORE_WARNING_I-10__ patchModule(_subprocess, "CreateProcess", createCreateProcess) else: patchModule(os, "fork", createFork) with contextlib.suppress(ImportError): - import _posixsubprocess # __IGNORE_WARNING_I10__ + import _posixsubprocess # __IGNORE_WARNING_I-10__ patchModule(_posixsubprocess, "fork_exec", createForkExec)