nekto@darkstar:~/workspace/py3k$ time ./python test_first.py real 0m1.004s - Pastebin.com (original) (raw)

Guest User

Untitled

a guest

Mar 9th, 2011

575

0

Never

Not a member of Pastebin yet? Sign Up, it unlocks many cool features!

  1. nekto@darkstar:~/workspace/py3k$ time ./python test_first.py
  2. real 0m1.004s
  3. user 0m0.070s
  4. sys 0m0.030s
  5. nekto@darkstar:~/workspace/py3k$ time ./python test_first.py
  6. real 0m26.106s
  7. user 0m0.360s
  8. sys 0m1.050s
  9. nekto@darkstar:~/workspace/py3k$ cat test_first.py
  10. import os
  11. os.chdir('/tmp')
  12. for i, entry in enumerate(os.listdir('.')):
  13. if i == 1000:
  14. break