Edit File: __init__.py
from ptrace.binding.func import ( # noqa HAS_PTRACE_SINGLESTEP, HAS_PTRACE_EVENTS, HAS_PTRACE_IO, HAS_PTRACE_SIGINFO, HAS_PTRACE_GETREGS, HAS_PTRACE_GETREGSET, REGISTER_NAMES, ptrace_attach, ptrace_traceme, ptrace_detach, ptrace_kill, ptrace_cont, ptrace_syscall, ptrace_setregs, ptrace_peektext, ptrace_poketext, ptrace_peekuser, ptrace_registers_t) if HAS_PTRACE_EVENTS: from ptrace.binding.func import (WPTRACEEVENT, # noqa PTRACE_EVENT_FORK, PTRACE_EVENT_VFORK, PTRACE_EVENT_CLONE, PTRACE_EVENT_EXEC, ptrace_setoptions, ptrace_geteventmsg) if HAS_PTRACE_SINGLESTEP: from ptrace.binding.func import ptrace_singlestep # noqa if HAS_PTRACE_SIGINFO: from ptrace.binding.func import ptrace_getsiginfo # noqa if HAS_PTRACE_IO: from ptrace.binding.func import ptrace_io # noqa from ptrace.binding.freebsd_struct import ( # noqa ptrace_io_desc, PIOD_READ_D, PIOD_WRITE_D, PIOD_READ_I, PIOD_WRITE_I) if HAS_PTRACE_GETREGS or HAS_PTRACE_GETREGSET: from ptrace.binding.func import ptrace_getregs # noqa