Fix docs (Process.open() -> Process(); remove trailing whitespace

test 0.1
Jan Petykiewicz 6 years ago
parent 96eea79bfc
commit 9f71883fbe

@ -33,7 +33,7 @@ class Process(metaclass=ABCMeta):
and use it to read and write to memory. Once you are done with the process, and use it to read and write to memory. Once you are done with the process,
use .close() to free up the process for access by other debuggers etc. use .close() to free up the process for access by other debuggers etc.
p = Process.open(1239) p = Process(1239)
p.close() p.close()
To read/write to memory, first create a buffer using ctypes: To read/write to memory, first create a buffer using ctypes:

Loading…
Cancel
Save