
The previous run-twice logic only affected the stability checks but not the output. Now, we actually output the twice-formatted code.
15 lines
315 B
Python
15 lines
315 B
Python
if e1234123412341234.winerror not in (_winapi.ERROR_SEM_TIMEOUT,
|
|
_winapi.ERROR_PIPE_BUSY) or _check_timeout(t):
|
|
pass
|
|
|
|
# output
|
|
|
|
if (
|
|
e1234123412341234.winerror
|
|
not in (
|
|
_winapi.ERROR_SEM_TIMEOUT,
|
|
_winapi.ERROR_PIPE_BUSY,
|
|
)
|
|
or _check_timeout(t)
|
|
):
|
|
pass |