summaryrefslogtreecommitdiff
path: root/hypodermic/memory.py
diff options
context:
space:
mode:
authorJakob <jakob@memeware.net>2017-09-02 18:28:20 -0400
committerJakob <jakob@memeware.net>2017-09-02 18:28:20 -0400
commit42f581e3e19430c1458be1a86d6c1b74eb148f0e (patch)
tree1c199ee495187a82929c1f3f6aeeb68a965fa8a7 /hypodermic/memory.py
parent8b232076240dc7e6f8abdfca3d1634ae065c691b (diff)
Began to implement runtime manipulation utilities.
Diffstat (limited to 'hypodermic/memory.py')
-rw-r--r--hypodermic/memory.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/hypodermic/memory.py b/hypodermic/memory.py
index 6ffa5d1..0d86855 100644
--- a/hypodermic/memory.py
+++ b/hypodermic/memory.py
@@ -42,7 +42,7 @@ def parse_device(line: str) -> Device:
object.
Args:
- line(str): The line to parse.
+ line (str): The line to parse.
Returns:
The parsed Device object.
@@ -56,7 +56,7 @@ def parse_perms(line: str) -> Perms:
object.
Args:
- line(str): The line to parse.
+ line (str): The line to parse.
Returns:
The parsed Perms object.
@@ -69,7 +69,7 @@ def parse_region(line: str) -> Region:
object.
Args:
- line(str): The line to parse.
+ line (str): The line to parse.
Returns:
The parsed Region object.
@@ -90,7 +90,7 @@ def maps(pid: int) -> list:
Args:
pid (int): The pid of the process to get memory mapping
- information for.
+ information for.
Raises:
TypeError: If the pid argument is not an int.