diff options
Diffstat (limited to 'sandbox/stress.py')
-rw-r--r-- | sandbox/stress.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sandbox/stress.py b/sandbox/stress.py index 48e0a59..03f5b4f 100644 --- a/sandbox/stress.py +++ b/sandbox/stress.py @@ -8,4 +8,4 @@ for i in range(20000): datafile = os.popen('ps -p %s -o rss' % os.getpid()) line = datafile.readlines(2)[1].strip() datafile.close() - print str(i) + '\t' + line + print(str(i) + '\t' + line) |