File tree Expand file tree Collapse file tree 3 files changed +1
-10
lines changed
Expand file tree Collapse file tree 3 files changed +1
-10
lines changed Original file line number Diff line number Diff line change 5353 "ParallelCallProcessError" ,
5454 "ExecHelperNoKillError" ,
5555 "ExecHelperTimeoutError" ,
56- # deprecated
57- "ParallelCallExceptions" ,
5856)
5957
6058__locals : dict [str , typing .Any ] = locals () # use mutable access for pure lazy loading
8482 "ParallelCallProcessError" : "exceptions" ,
8583 "ExecHelperNoKillError" : "exceptions" ,
8684 "ExecHelperTimeoutError" : "exceptions" ,
87- "ParallelCallExceptions" : "exceptions" ,
8885}
8986
90- _deprecated : dict [str , str ] = {"ParallelCallExceptions" : "ParallelCallExceptionsError" }
87+ _deprecated : dict [str , str ] = {}
9188
9289
9390def __getattr__ (name : str ) -> typing .Any :
Original file line number Diff line number Diff line change @@ -24,7 +24,6 @@ from .exceptions import ExecCalledProcessError
2424from .exceptions import ExecHelperError
2525from .exceptions import ExecHelperNoKillError
2626from .exceptions import ExecHelperTimeoutError
27- from .exceptions import ParallelCallExceptions
2827from .exceptions import ParallelCallExceptionsError
2928from .exceptions import ParallelCallProcessError
3029from .exec_result import ExecResult
@@ -62,8 +61,6 @@ __all__ = (
6261 "ParallelCallProcessError" ,
6362 "ExecHelperNoKillError" ,
6463 "ExecHelperTimeoutError" ,
65- # deprecated
66- "ParallelCallExceptions" ,
6764)
6865
6966_deprecated : dict [str , str ] = ...
Original file line number Diff line number Diff line change @@ -318,9 +318,6 @@ def __init__(
318318 self .exceptions : dict [tuple [str , int ], Exception ] = exceptions
319319
320320
321- ParallelCallExceptions = ParallelCallExceptionsError
322-
323-
324321class StopExecution (Exception ):
325322 """Stop execution without waiting for exit code."""
326323
You can’t perform that action at this time.
0 commit comments