File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -12,6 +12,8 @@ python-ptrace 0.9.9
1212 Patch by fab1ano.
1313* Added RISCV (riscv32/riscv64) support.
1414 Patch by Andreas Schwab and vimer/yuzibo.
15+ * Fix stray exception raised by child processes terminating with exit code 255.
16+ Path by Duane Voth/duanev
1517
1618python-ptrace 0.9.8 (2021-03-17)
1719--------------------------------
Original file line number Diff line number Diff line change 11from ptrace .os_tools import RUNNING_LINUX
22if RUNNING_LINUX :
3- from ptrace .linux_proc import (ProcError , openProc ,
4- readProcessProcList , readProcessLink , readProcessStat )
5- from ptrace .signames import signalName # noqa
3+ from ptrace .linux_proc import (
4+ ProcError ,
5+ openProc ,
6+ readProcessLink ,
7+ readProcessProcList ,
8+ readProcessStat ,
9+ )
10+ from ptrace .signames import signalName # noqa
611from os import (
7- WIFSTOPPED , WSTOPSIG ,
8- WIFSIGNALED , WTERMSIG ,
9- WIFEXITED , WEXITSTATUS ,
10- WCOREDUMP )
12+ WCOREDUMP ,
13+ WEXITSTATUS ,
14+ WIFSIGNALED ,
15+ WIFSTOPPED ,
16+ WSTOPSIG ,
17+ WTERMSIG ,
18+ )
1119
1220
1321def dumpProcessInfo (log , pid , max_length = None ):
You can’t perform that action at this time.
0 commit comments