mirror of
https://github.com/ARM-software/devlib.git
synced 2025-01-31 02:00:45 +00:00
docs/overview: Fix python2 style print
This commit is contained in:
parent
b717deb8e4
commit
bae741dc81
@ -168,7 +168,7 @@ Process Control
|
|||||||
# PsEntry records.
|
# PsEntry records.
|
||||||
entries = t.ps()
|
entries = t.ps()
|
||||||
# e.g. print virtual memory sizes of all running sshd processes:
|
# e.g. print virtual memory sizes of all running sshd processes:
|
||||||
print ', '.join(str(e.vsize) for e in entries if e.name == 'sshd')
|
print(', '.join(str(e.vsize) for e in entries if e.name == 'sshd'))
|
||||||
|
|
||||||
|
|
||||||
More...
|
More...
|
||||||
|
Loading…
x
Reference in New Issue
Block a user