summaryrefslogtreecommitdiff
path: root/psutil/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'psutil/__init__.py')
-rw-r--r--psutil/__init__.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/psutil/__init__.py b/psutil/__init__.py
index 475059f2..ca2d9273 100644
--- a/psutil/__init__.py
+++ b/psutil/__init__.py
@@ -373,7 +373,7 @@ class Process(object):
raise NoSuchProcess(pid, msg='process PID not found')
else:
self._gone = True
- # This pair is supposed to indentify a Process instance
+ # This pair is supposed to identify a Process instance
# univocally over time (the PID alone is not enough as
# it might refer to a process whose PID has been reused).
# This will be used later in __eq__() and is_running().
@@ -1051,7 +1051,7 @@ class Process(object):
"""Return a namedtuple with variable fields depending on the
platform, representing memory information about the process.
- The "portable" fields available on all plaforms are `rss` and `vms`.
+ The "portable" fields available on all platforms are `rss` and `vms`.
All numbers are expressed in bytes.
"""
@@ -1205,7 +1205,7 @@ class Process(object):
def suspend(self):
"""Suspend process execution with SIGSTOP pre-emptively checking
whether PID has been reused.
- On Windows this has the effect ot suspending all process threads.
+ On Windows this has the effect of suspending all process threads.
"""
if POSIX:
self._send_signal(signal.SIGSTOP)