We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1432dda + 456388b commit 2b4a86bCopy full SHA for 2b4a86b
memory_profiler.py
@@ -139,7 +139,7 @@ def ps_util_tool():
139
# .. cross-platform but but requires psutil ..
140
process = psutil.Process(pid)
141
try:
142
- # avoid useing get_memory_info since it does not exists
+ # avoid using get_memory_info since it does not exists
143
# in psutil > 2.0 and accessing it will cause exception.
144
meminfo_attr = 'memory_info' if hasattr(process, 'memory_info') \
145
else 'get_memory_info'
0 commit comments