summaryrefslogtreecommitdiff
path: root/hypodermic/memory.py
diff options
context:
space:
mode:
authorjakob <jakob@memeware.net>2017-09-08 20:36:11 -0400
committerjakob <jakob@memeware.net>2017-09-08 20:36:11 -0400
commit1a17f23fce09b8325e237a2a65a2227ecf1310b8 (patch)
tree3ee8bec5ea0feef74f43d72a9d69254c8664bb90 /hypodermic/memory.py
parent085f81c9ad630bff88cb4b1482760ec6ff95bc6a (diff)
parent26b602c9080572de54458768bf80ef879fb9e8f4 (diff)
Merge branch 'master' of https://github.com/TsarFox/hypodermic
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.