PyPy 与 Python 的一个小 timeit (一)


测试代码如下:

    

def fibonacci(n):
    if n < 2:
        return n
    return fibonacci(n - 2) + fibonacci(n - 1)

fibonacci(40)



中断Time测试如下:

[root@server ~]# time pypy demo.py

real    0m3.416s
user    0m2.947s
sys     0m0.468s

[root@server ~]# time python demo.py

real    0m57.459s
user    0m57.436s
sys     0m0.005s
[root@server ~]# vim demo.py


值得注意的不是Cpython 与 PyPy的执行效率对比,值得注意的是 time 的 sys时间,性能相差93.6倍。


Candy用strace追踪一以下两者的运行过程,具体日志如下:


Python:

execve("/usr/bin/python", ["python", "demo.py"], [/* 22 vars */]) = 0
brk(0)                                  = 0x187a000
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f408e4e0000
access("/etc/ld.so.preload", R_OK)      = -1 ENOENT (No such file or directory)
open("/etc/ld.so.cache", O_RDONLY)      = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=24721, ...}) = 0
mmap(NULL, 24721, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f408e4d9000
close(3)                                = 0
open("/usr/lib64/libpython2.6.so.1.0", O_RDONLY) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\300\310\3\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0555, st_size=1669840, ...}) = 0
mmap(NULL, 3823008, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f408df1c000
mprotect(0x7f408e079000, 2093056, PROT_NONE) = 0
mmap(0x7f408e278000, 245760, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x15c000) = 0x7f408e278000
mmap(0x7f408e2b4000, 54688, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f408e2b4000
close(3)                                = 0
open("/lib64/libpthread.so.0", O_RDONLY) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0000^\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=142688, ...}) = 0
mmap(NULL, 2212848, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f408dcff000
mprotect(0x7f408dd16000, 2097152, PROT_NONE) = 0
mmap(0x7f408df16000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x17000) = 0x7f408df16000
mmap(0x7f408df18000, 13296, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f408df18000
close(3)                                = 0
open("/lib64/libdl.so.2", O_RDONLY)     = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\340\r\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=19536, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f408e4d8000
mmap(NULL, 2109696, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f408dafb000
mprotect(0x7f408dafd000, 2097152, PROT_NONE) = 0
mmap(0x7f408dcfd000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f408dcfd000
close(3)                                = 0
open("/lib64/libutil.so.1", O_RDONLY)   = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\20\16\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=14584, ...}) = 0
mmap(NULL, 2105600, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f408d8f8000
mprotect(0x7f408d8fa000, 2093056, PROT_NONE) = 0
mmap(0x7f408daf9000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1000) = 0x7f408daf9000
close(3)                                = 0
open("/lib64/libm.so.6", O_RDONLY)      = 3
read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0p>\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=596272, ...}) = 0
mmap(NULL, 2633912, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f408d674000
mprotect(0x7f408d6f7000, 2093056, PROT_NONE) = 0
mmap(0x7f408d8f6000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x82000) = 0x7f408d8f6000
close(3)                                = 0
open("/lib64/libc.so.6", O_RDONLY)      = 3
read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0p\356\1\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=1920936, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f408e4d7000
mmap(NULL, 3750152, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f408d2e0000
mprotect(0x7f408d46a000, 2097152, PROT_NONE) = 0
mmap(0x7f408d66a000, 20480, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x18a000) = 0x7f408d66a000
mmap(0x7f408d66f000, 18696, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f408d66f000
close(3)                                = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f408e4d6000
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f408e4d5000
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f408e4d4000
arch_prctl(ARCH_SET_FS, 0x7f408e4d5700) = 0
mprotect(0x7f408d66a000, 16384, PROT_READ) = 0
mprotect(0x7f408d8f6000, 4096, PROT_READ) = 0
mprotect(0x7f408daf9000, 4096, PROT_READ) = 0
mprotect(0x7f408dcfd000, 4096, PROT_READ) = 0
mprotect(0x7f408df16000, 4096, PROT_READ) = 0
mprotect(0x7f408e4e1000, 4096, PROT_READ) = 0
munmap(0x7f408e4d9000, 24721)           = 0
set_tid_address(0x7f408e4d59d0)         = 1493
set_robust_list(0x7f408e4d59e0, 24)     = 0
futex(0x7ffec8978dcc, FUTEX_WAKE_PRIVATE, 1) = 0
futex(0x7ffec8978dcc, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 1, NULL, 7f408e4d5700) = -1 EAGAIN (Resource temporarily unavailable)
rt_sigaction(SIGRTMIN, {0x7f408dd04cb0, [], SA_RESTORER|SA_SIGINFO, 0x7f408dd0e7e0}, NULL, 8) = 0
rt_sigaction(SIGRT_1, {0x7f408dd04d40, [], SA_RESTORER|SA_RESTART|SA_SIGINFO, 0x7f408dd0e7e0}, NULL, 8) = 0
rt_sigprocmask(SIG_UNBLOCK, [RTMIN RT_1], NULL, 8) = 0
getrlimit(RLIMIT_STACK, {rlim_cur=10240*1024, rlim_max=RLIM64_INFINITY}) = 0
ioctl(0, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7ffec8978bd0) = -1 ENOTTY (Inappropriate ioctl for device)
brk(0)                                  = 0x187a000
brk(0x189b000)                          = 0x189b000
mmap(NULL, 266240, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f408e493000
open("/proc/meminfo", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f408e4df000
read(3, "MemTotal:        1906900 kB\nMemF"..., 1024) = 1024
close(3)                                = 0
munmap(0x7f408e4df000, 4096)            = 0
brk(0x18c4000)                          = 0x18c4000
fstat(0, {st_mode=S_IFCHR|0666, st_rdev=makedev(1, 3), ...}) = 0
fstat(0, {st_mode=S_IFCHR|0666, st_rdev=makedev(1, 3), ...}) = 0
fstat(1, {st_mode=S_IFREG|0644, st_size=6081, ...}) = 0
fstat(2, {st_mode=S_IFREG|0644, st_size=6137, ...}) = 0
stat("/usr/local/pypy/bin/python", 0x7ffec8975a20) = -1 ENOENT (No such file or directory)
stat("/usr/local/sbin/python", 0x7ffec8975a20) = -1 ENOENT (No such file or directory)
stat("/usr/local/bin/python", 0x7ffec8975a20) = -1 ENOENT (No such file or directory)
stat("/sbin/python", 0x7ffec8975a20)    = -1 ENOENT (No such file or directory)
stat("/bin/python", 0x7ffec8975a20)     = -1 ENOENT (No such file or directory)
stat("/usr/sbin/python", 0x7ffec8975a20) = -1 ENOENT (No such file or directory)
stat("/usr/bin/python", {st_mode=S_IFREG|0755, st_size=4864, ...}) = 0
readlink("/usr/bin/python", 0x7ffec8975ab0, 4096) = -1 EINVAL (Invalid argument)
stat("/usr/bin/Modules/Setup", 0x7ffec8975970) = -1 ENOENT (No such file or directory)
stat("/usr/bin/lib64/python2.6/os.py", 0x7ffec8975960) = -1 ENOENT (No such file or directory)
stat("/usr/bin/lib64/python2.6/os.pyc", 0x7ffec8975960) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/os.py", {st_mode=S_IFREG|0644, st_size=25802, ...}) = 0
stat("/usr/bin/Modules/Setup", 0x7ffec8975970) = -1 ENOENT (No such file or directory)
stat("/usr/bin/lib64/python2.6/lib-dynload", 0x7ffec8975a20) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
mmap(NULL, 266240, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f408e452000
rt_sigaction(SIGPIPE, {SIG_IGN, [], SA_RESTORER, 0x7f408dd0e7e0}, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGXFSZ, {SIG_IGN, [], SA_RESTORER, 0x7f408dd0e7e0}, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGHUP, NULL, {SIG_IGN, [], 0}, 8) = 0
rt_sigaction(SIGINT, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGQUIT, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGILL, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGTRAP, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGABRT, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGBUS, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGFPE, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGKILL, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGUSR1, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGSEGV, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGUSR2, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGPIPE, NULL, {SIG_IGN, [], SA_RESTORER, 0x7f408dd0e7e0}, 8) = 0
rt_sigaction(SIGALRM, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGTERM, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGSTKFLT, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGCHLD, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGCONT, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGSTOP, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGTSTP, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGTTIN, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGTTOU, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGURG, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGXCPU, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGXFSZ, NULL, {SIG_IGN, [], SA_RESTORER, 0x7f408dd0e7e0}, 8) = 0
rt_sigaction(SIGVTALRM, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGPROF, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGWINCH, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGIO, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGPWR, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGSYS, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_2, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_3, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_4, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_5, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_6, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_7, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_8, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_9, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_10, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_11, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_12, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_13, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_14, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_15, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_16, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_17, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_18, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_19, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_20, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_21, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_22, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_23, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_24, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_25, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_26, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_27, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_28, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_29, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_30, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_31, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_32, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGINT, {0x7f408e01f3f0, [], SA_RESTORER, 0x7f408dd0e7e0}, {SIG_DFL, [], 0}, 8) = 0
stat("/usr/lib64/python26.zip", 0x7ffec8971340) = -1 ENOENT (No such file or directory)
stat("/usr/lib64", {st_mode=S_IFDIR|0555, st_size=20480, ...}) = 0
stat("/usr/lib64/python26.zip", 0x7ffec89743c0) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/", {st_mode=S_IFDIR|0755, st_size=20480, ...}) = 0
stat("/usr/lib64/python2.6/", {st_mode=S_IFDIR|0755, st_size=20480, ...}) = 0
stat("/usr/lib64/python2.6/site", 0x7ffec8974740) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/sitemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site.py", O_RDONLY) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=19187, ...}) = 0
open("/usr/lib64/python2.6/site.pyc", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=18825, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f408e451000
read(4, "\321\362\r\n\247\332\352Lc\0\0\0\0\0\0\0\0\6\0\0\0@\0\0\0sT\1\0\0d\0"..., 4096) = 4096
fstat(4, {st_mode=S_IFREG|0644, st_size=18825, ...}) = 0
read(4, ".3st\20\0\0\0gettotalrefcounts\10\0\0\0-py"..., 12288) = 12288
read(4, "v for traceback(\t\0\0\0t\r\0\0\0usercus"..., 4096) = 2441
read(4, "", 4096)                       = 0
close(4)                                = 0
munmap(0x7f408e451000, 4096)            = 0
stat("/usr/lib64/python2.6/os", 0x7ffec8971130) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/os.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/osmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/os.py", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=25802, ...}) = 0
open("/usr/lib64/python2.6/os.pyc", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=25808, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f408e451000
read(5, "\321\362\r\n\247\332\352Lc\0\0\0\0\0\0\0\0\36\0\0\0@\0\0\0s.\7\0\0d\0"..., 4096) = 4096
fstat(5, {st_mode=S_IFREG|0644, st_size=25808, ...}) = 0
read(5, "t (not\n    just the rightmost) w"..., 20480) = 20480
read(5, "ke_statvfs_result\335\2\0\0s\2\0\0\0\0\1c\1\0\0"..., 4096) = 1232
read(5, "", 4096)                       = 0
close(5)                                = 0
munmap(0x7f408e451000, 4096)            = 0
brk(0x18e5000)                          = 0x18e5000
stat("/usr/lib64/python2.6/posixpath", 0x7ffec896db20) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/posixpath.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/posixpathmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/posixpath.py", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=13119, ...}) = 0
open("/usr/lib64/python2.6/posixpath.pyc", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=11188, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f408e451000
read(6, "\321\362\r\n\247\332\352Lc\0\0\0\0\0\0\0\0+\0\0\0@\0\0\0s\320\1\0\0d\0"..., 4096) = 4096
fstat(6, {st_mode=S_IFREG|0644, st_size=11188, ...}) = 0
read(6, "\0\0True(\2\0\0\0R0\0\0\0RB\0\0\0(\0\0\0\0(\0\0\0\0s"..., 4096) = 4096
read(6, "\0i\2\0d\3\0\203\1\0}\3\0|\3\0o+\0\1|\0\0i\2\0d\6\0\203\1\0"..., 4096) = 2996
read(6, "", 4096)                       = 0
close(6)                                = 0
munmap(0x7f408e451000, 4096)            = 0
stat("/usr/lib64/python2.6/stat", 0x7ffec896a510) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/stat.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/statmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/stat.py", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=1718, ...}) = 0
open("/usr/lib64/python2.6/stat.pyc", O_RDONLY) = 7
fstat(7, {st_mode=S_IFREG|0644, st_size=2703, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f408e451000
read(7, "\321\362\r\n\247\332\352Lc\0\0\0\0\0\0\0\0\1\0\0\0@\0\0\0so\1\0\0d\0"..., 4096) = 2703
fstat(7, {st_mode=S_IFREG|0644, st_size=2703, ...}) = 0
read(7, "", 4096)                       = 0
close(7)                                = 0
munmap(0x7f408e451000, 4096)            = 0
close(6)                                = 0
stat("/usr/lib64/python2.6/genericpath", 0x7ffec896a510) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/genericpath.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/genericpathmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/genericpath.py", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=3020, ...}) = 0
open("/usr/lib64/python2.6/genericpath.pyc", O_RDONLY) = 7
fstat(7, {st_mode=S_IFREG|0644, st_size=3292, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f408e451000
read(7, "\321\362\r\n\247\332\352Lc\0\0\0\0\0\0\0\0\n\0\0\0@\0\0\0s\221\0\0\0d\0"..., 4096) = 3292
fstat(7, {st_mode=S_IFREG|0644, st_size=3292, ...}) = 0
read(7, "", 4096)                       = 0
close(7)                                = 0
munmap(0x7f408e451000, 4096)            = 0
close(6)                                = 0
stat("/usr/lib64/python2.6/warnings", 0x7ffec896a510) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/warnings.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/warningsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/warnings.py", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=14172, ...}) = 0
open("/usr/lib64/python2.6/warnings.pyc", O_RDONLY) = 7
fstat(7, {st_mode=S_IFREG|0644, st_size=13042, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f408e451000
read(7, "\321\362\r\n\247\332\352Lc\0\0\0\0\0\0\0\0\r\0\0\0@\0\0\0s3\2\0\0d\0"..., 4096) = 4096
fstat(7, {st_mode=S_IFREG|0644, st_size=13042, ...}) = 0
read(7, "\0\1Wq\7\0\4t\1\0j\n\0o\34\0\1\1}\2\0\1t\2\0i\3\0\4d\1\0"..., 8192) = 8192
read(7, "\0\0\0__exit__i\1\0\0s\10\0\0\0\0\1\n\1\24\1\17\1N(\t\0"..., 4096) = 754
read(7, "", 4096)                       = 0
mmap(NULL, 200704, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f408e420000
close(7)                                = 0
munmap(0x7f408e451000, 4096)            = 0
stat("/usr/lib64/python2.6/linecache", 0x7ffec8966f00) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/linecache.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/linecachemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/linecache.py", O_RDONLY) = 7
fstat(7, {st_mode=S_IFREG|0644, st_size=4128, ...}) = 0
open("/usr/lib64/python2.6/linecache.pyc", O_RDONLY) = 8
fstat(8, {st_mode=S_IFREG|0644, st_size=3268, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f408e451000
read(8, "\321\362\r\n\247\332\352Lc\0\0\0\0\0\0\0\0\5\0\0\0@\0\0\0sp\0\0\0d\0"..., 4096) = 3268
fstat(8, {st_mode=S_IFREG|0644, st_size=3268, ...}) = 0
read(8, "", 4096)                       = 0
close(8)                                = 0
munmap(0x7f408e451000, 4096)            = 0
close(7)                                = 0
stat("/usr/lib64/python2.6/types", 0x7ffec8966f00) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/types.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/typesmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/types.py", O_RDONLY) = 7
fstat(7, {st_mode=S_IFREG|0644, st_size=2323, ...}) = 0
open("/usr/lib64/python2.6/types.pyc", O_RDONLY) = 8
fstat(8, {st_mode=S_IFREG|0644, st_size=2620, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f408e451000
read(8, "\321\362\r\n\247\332\352Lc\0\0\0\0\0\0\0\0\17\0\0\0@\0\0\0so\2\0\0d\0"..., 4096) = 2620
fstat(8, {st_mode=S_IFREG|0644, st_size=2620, ...}) = 0
read(8, "", 4096)                       = 0
close(8)                                = 0
munmap(0x7f408e451000, 4096)            = 0
close(7)                                = 0
close(6)                                = 0
close(5)                                = 0
stat("/usr/lib64/python2.6/UserDict", 0x7ffec896db20) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/UserDict.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/UserDictmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/UserDict.py", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=5778, ...}) = 0
open("/usr/lib64/python2.6/UserDict.pyc", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=8892, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f408e451000
read(6, "\321\362\r\n\247\332\352Lc\0\0\0\0\0\0\0\0\4\0\0\0@\0\0\0sb\0\0\0d\0"..., 4096) = 4096
fstat(6, {st_mode=S_IFREG|0644, st_size=8892, ...}) = 0
read(6, "\0\0(\0\0\0\0(\0\0\0\0s \0\0\0/usr/lib64/pyth"..., 4096) = 4096
read(6, "|\1\0t\2\0\203\2\0o\26\0\1t\3\0|\1\0i\4\0\203\0\0\203\1\0}\1\0n"..., 4096) = 700
read(6, "", 4096)                       = 0
close(6)                                = 0
munmap(0x7f408e451000, 4096)            = 0
stat("/usr/lib64/python2.6/_abcoll", 0x7ffec896a510) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_abcoll.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_abcollmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_abcoll.py", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=14242, ...}) = 0
open("/usr/lib64/python2.6/_abcoll.pyc", O_RDONLY) = 7
fstat(7, {st_mode=S_IFREG|0644, st_size=21591, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f408e451000
read(7, "\321\362\r\n\247\332\352Lc\0\0\0\0\0\0\0\0\22\0\0\0@\0\0\0sI\2\0\0d\0"..., 4096) = 4096
fstat(7, {st_mode=S_IFREG|0644, st_size=21591, ...}) = 0
read(7, "ll.pyt\f\0\0\0__contains__l\0\0\0s\2\0\0\0\0"..., 16384) = 16384
read(7, "\0\0\0x\33\0|\1\0D]\23\0}\2\0|\0\0i\0\0|\2\0\203\1\0\1q\7\0"..., 4096) = 1111
read(7, "", 4096)                       = 0
mmap(NULL, 266240, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f408e3df000
close(7)                                = 0
munmap(0x7f408e451000, 4096)            = 0
stat("/usr/lib64/python2.6/abc", 0x7ffec8966f00) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/abc.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/abcmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/abc.py", O_RDONLY) = 7
fstat(7, {st_mode=S_IFREG|0644, st_size=7034, ...}) = 0
open("/usr/lib64/python2.6/abc.pyc", O_RDONLY) = 8
fstat(8, {st_mode=S_IFREG|0644, st_size=6071, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f408e451000
read(8, "\321\362\r\n\247\332\352Lc\0\0\0\0\0\0\0\0\3\0\0\0@\0\0\0sa\0\0\0d\0"..., 4096) = 4096
fstat(8, {st_mode=S_IFREG|0644, st_size=6071, ...}) = 0
read(8, "\0\4d\1\0|\0\0i\0\0|\0\0i\1\0f\2\0\26\2IJ|\1\0\4d\2\0t"..., 4096) = 1975
read(8, "", 4096)                       = 0
close(8)                                = 0
munmap(0x7f408e451000, 4096)            = 0
close(7)                                = 0
close(6)                                = 0
close(5)                                = 0
brk(0x1906000)                          = 0x1906000
stat("/usr/lib64/python2.6/copy_reg", 0x7ffec896db20) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/copy_reg.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/copy_regmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/copy_reg.py", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=6800, ...}) = 0
open("/usr/lib64/python2.6/copy_reg.pyc", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=5178, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f408e451000
read(6, "\321\362\r\n\247\332\352Lc\0\0\0\0\0\0\0\0\10\0\0\0@\0\0\0s\330\0\0\0d\0"..., 4096) = 4096
fstat(6, {st_mode=S_IFREG|0644, st_size=5178, ...}) = 0
read(6, "already registered with code %ss"..., 4096) = 1082
read(6, "", 4096)                       = 0
close(6)                                = 0
munmap(0x7f408e451000, 4096)            = 0
close(5)                                = 0
close(4)                                = 0
geteuid()                               = 0
getuid()                                = 0
getegid()                               = 0
getgid()                                = 0
stat("/root/.local/lib/python2.6/site-packages", 0x7ffec8974fa0) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
open("/usr/lib64/python2.6/site-packages", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = 4
fcntl(4, F_GETFD)                       = 0x1 (flags FD_CLOEXEC)
getdents(4, /* 23 entries */, 32768)    = 840
getdents(4, /* 0 entries */, 32768)     = 0
close(4)                                = 0
stat("/usr/lib/python2.6/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
open("/usr/lib/python2.6/site-packages", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = 4
getdents(4, /* 11 entries */, 32768)    = 376
getdents(4, /* 0 entries */, 32768)     = 0
close(4)                                = 0
stat("/usr/lib/site-python", 0x7ffec8974fa0) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6", {st_mode=S_IFDIR|0755, st_size=20480, ...}) = 0
stat("/usr/lib64/python2.6", {st_mode=S_IFDIR|0755, st_size=20480, ...}) = 0
stat("/usr/lib64/python2.6/sitecustomize", 0x7ffec8970e50) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/sitecustomize.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/sitecustomizemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/sitecustomize.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/sitecustomize.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/plat-linux2", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python2.6/plat-linux2", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python2.6/plat-linux2/sitecustomize", 0x7ffec8970e50) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/sitecustomize.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/sitecustomizemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/sitecustomize.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/sitecustomize.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/lib-tk", 0x7ffec896da50) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6", {st_mode=S_IFDIR|0755, st_size=20480, ...}) = 0
stat("/usr/lib64/python2.6/lib-tk", 0x7ffec8970ad0) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/lib-old", 0x7ffec896da50) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6", {st_mode=S_IFDIR|0755, st_size=20480, ...}) = 0
stat("/usr/lib64/python2.6/lib-old", 0x7ffec8970ad0) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python2.6/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python2.6/lib-dynload/sitecustomize", 0x7ffec8970e50) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/sitecustomize.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/sitecustomizemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/sitecustomize.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/sitecustomize.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python2.6/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python2.6/site-packages/sitecustomize", 0x7ffec8970e50) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/sitecustomize.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/sitecustomizemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/sitecustomize.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/sitecustomize.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python2.6/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python2.6/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python2.6/site-packages/sitecustomize", 0x7ffec8970e50) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/sitecustomize.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/sitecustomizemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/sitecustomize.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/sitecustomize.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/usercustomize", 0x7ffec8970e50) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/usercustomize.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/usercustomizemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/usercustomize.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/usercustomize.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/plat-linux2/usercustomize", 0x7ffec8970e50) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/usercustomize.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/usercustomizemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/usercustomize.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/usercustomize.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/lib-dynload/usercustomize", 0x7ffec8970e50) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/usercustomize.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/usercustomizemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/usercustomize.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/usercustomize.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/usercustomize", 0x7ffec8970e50) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/usercustomize.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/usercustomizemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/usercustomize.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/usercustomize.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python2.6/site-packages/usercustomize", 0x7ffec8970e50) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/usercustomize.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/usercustomizemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/usercustomize.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/usercustomize.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
close(3)                                = 0
open("/usr/lib/locale/locale-archive", O_RDONLY) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=99158576, ...}) = 0
mmap(NULL, 99158576, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f408744f000
close(3)                                = 0
stat("/usr/lib64/python2.6/encodings", {st_mode=S_IFDIR|0755, st_size=16384, ...}) = 0
stat("/usr/lib64/python2.6/encodings/__init__.py", {st_mode=S_IFREG|0644, st_size=5638, ...}) = 0
stat("/usr/lib64/python2.6/encodings/__init__", 0x7ffec8973840) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/encodings/__init__.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/encodings/__init__module.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/encodings/__init__.py", O_RDONLY) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=5638, ...}) = 0
open("/usr/lib64/python2.6/encodings/__init__.pyc", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=4416, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f408e4df000
read(4, "\321\362\r\n\247\332\352Lc\0\0\0\0\0\0\0\0\6\0\0\0@\0\0\0s\216\0\0\0d\0"..., 4096) = 4096
fstat(4, {st_mode=S_IFREG|0644, st_size=4416, ...}) = 0
read(4, "\3\23\1\r\1\16\1\5\2\5\2\6\2\3\1\r\1\16\2\v\2\r\2\n\1\5\3\t\1\23\1$"..., 4096) = 320
read(4, "", 4096)                       = 0
close(4)                                = 0
munmap(0x7f408e4df000, 4096)            = 0
stat("/usr/lib64/python2.6/encodings", {st_mode=S_IFDIR|0755, st_size=16384, ...}) = 0
stat("/usr/lib64/python2.6/encodings", {st_mode=S_IFDIR|0755, st_size=16384, ...}) = 0
stat("/usr/lib64/python2.6/encodings/codecs", 0x7ffec8970230) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/encodings/codecs.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/encodings/codecsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/encodings/codecs.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/encodings/codecs.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/codecs", 0x7ffec8970230) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/codecs.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/codecsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/codecs.py", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=35266, ...}) = 0
open("/usr/lib64/python2.6/codecs.pyc", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=36721, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f408e4df000
read(5, "\321\362\r\n\247\332\352Lc\0\0\0\0\0\0\0\0\36\0\0\0@\0\0\0sA\3\0\0d\0"..., 4096) = 4096
fstat(5, {st_mode=S_IFREG|0644, st_size=36721, ...}) = 0
brk(0x1927000)                          = 0x1927000
read(5, "\0\0\0C\0\0\0s\n\0\0\0t\0\0\202\1\0d\1\0S(\2\0\0\0s\372\2\0\0"..., 28672) = 28672
read(5, " incremental encoder.\n\n    N(\4\0\0"..., 4096) = 3953
read(5, "", 4096)                       = 0
close(5)                                = 0
munmap(0x7f408e4df000, 4096)            = 0
close(4)                                = 0
stat("/usr/lib64/python2.6/encodings/encodings", 0x7ffec8970230) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/encodings/encodings.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/encodings/encodingsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/encodings/encodings.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/encodings/encodings.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/encodings/aliases", 0x7ffec8970220) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/encodings/aliases.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/encodings/aliasesmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/encodings/aliases.py", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=14721, ...}) = 0
open("/usr/lib64/python2.6/encodings/aliases.pyc", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=8701, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f408e4df000
read(5, "\321\362\r\n\247\332\352Lc\0\0\0\0\0\0\0\0\3\0\0\0@\0\0\0s`\10\0\0d\0"..., 4096) = 4096
fstat(5, {st_mode=S_IFREG|0644, st_size=8701, ...}) = 0
read(5, "ibm861t\5\0\0\0cp862t\3\0\0\000862t\22\0\0\0csp"..., 4096) = 4096
read(5, "\1\7\3\7\1\7\1\7\1\7\3\7\1\7\1\7\3\7\1\7\1\7\1\7\1\7\3\7\1\7\1\7"..., 4096) = 509
read(5, "", 4096)                       = 0
close(5)                                = 0
munmap(0x7f408e4df000, 4096)            = 0
close(4)                                = 0
stat("/usr/lib64/python2.6/encodings/__builtin__", 0x7ffec8970230) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/encodings/__builtin__.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/encodings/__builtin__module.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/encodings/__builtin__.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/encodings/__builtin__.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
close(3)                                = 0
stat("/usr/lib64/python2.6/encodings/utf_8", 0x7ffec8974560) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/encodings/utf_8.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/encodings/utf_8module.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/encodings/utf_8.py", O_RDONLY) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=1005, ...}) = 0
open("/usr/lib64/python2.6/encodings/utf_8.pyc", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=1966, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f408e4df000
read(4, "\321\362\r\n\247\332\352Lc\0\0\0\0\0\0\0\0\4\0\0\0@\0\0\0s\230\0\0\0d\0"..., 4096) = 1966
fstat(4, {st_mode=S_IFREG|0644, st_size=1966, ...}) = 0
read(4, "", 4096)                       = 0
close(4)                                = 0
munmap(0x7f408e4df000, 4096)            = 0
close(3)                                = 0
ioctl(0, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7ffec8978a00) = -1 ENOTTY (Inappropriate ioctl for device)
ioctl(1, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7ffec8978a00) = -1 ENOTTY (Inappropriate ioctl for device)
ioctl(2, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7ffec8978a00) = -1 ENOTTY (Inappropriate ioctl for device)
readlink("demo.py", 0x7ffec8976c10, 4096) = -1 EINVAL (Invalid argument)
getcwd("/root", 4096)                   = 6
lstat("/root/demo.py", {st_mode=S_IFREG|0644, st_size=110, ...}) = 0
stat("demo.py", {st_mode=S_IFREG|0644, st_size=110, ...}) = 0
open("demo.py", O_RDONLY)               = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=110, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f408e4df000
fstat(3, {st_mode=S_IFREG|0644, st_size=110, ...}) = 0
lseek(3, 0, SEEK_SET)                   = 0
read(3, "def fibonacci(n):\n    if n < 2:\n"..., 88) = 88
read(3, "(n - 1)\nfibonacci(40)\n", 4096) = 22
close(3)                                = 0
munmap(0x7f408e4df000, 4096)            = 0
stat("demo.py", {st_mode=S_IFREG|0644, st_size=110, ...}) = 0
open("demo.py", O_RDONLY)               = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=110, ...}) = 0
ioctl(3, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7ffec8978ba0) = -1 ENOTTY (Inappropriate ioctl for device)
fstat(3, {st_mode=S_IFREG|0644, st_size=110, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f408e4df000
lseek(3, 0, SEEK_CUR)                   = 0
read(3, "def fibonacci(n):\n    if n < 2:\n"..., 4096) = 110
lseek(3, 110, SEEK_SET)                 = 110
read(3, "", 4096)                       = 0
close(3)                                = 0
munmap(0x7f408e4df000, 4096)            = 0
rt_sigaction(SIGINT, {SIG_DFL, [], SA_RESTORER, 0x7f408dd0e7e0}, {0x7f408e01f3f0, [], SA_RESTORER, 0x7f408dd0e7e0}, 8) = 0
exit_group(0)                           = ?
+++ exited with 0 +++


PyPy:

execve("/usr/local/pypy/bin/pypy", ["pypy", "demo.py"], [/* 22 vars */]) = 0
brk(0)                                  = 0x17fd000
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f3b24584000
readlink("/proc/self/exe", "/usr/local/pypy/bin/pypy", 4096) = 24
access("/etc/ld.so.preload", R_OK)      = -1 ENOENT (No such file or directory)
open("/opt/prefix/lib/tls/x86_64/libpypy-c.so", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/opt/prefix/lib/tls/x86_64", 0x7fffdad252f0) = -1 ENOENT (No such file or directory)
open("/opt/prefix/lib/tls/libpypy-c.so", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/opt/prefix/lib/tls", 0x7fffdad252f0) = -1 ENOENT (No such file or directory)
open("/opt/prefix/lib/x86_64/libpypy-c.so", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/opt/prefix/lib/x86_64", 0x7fffdad252f0) = -1 ENOENT (No such file or directory)
open("/opt/prefix/lib/libpypy-c.so", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/opt/prefix/lib", 0x7fffdad252f0) = -1 ENOENT (No such file or directory)
open("/usr/local/pypy/bin/tls/x86_64/libpypy-c.so", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/bin/tls/x86_64", 0x7fffdad252f0) = -1 ENOENT (No such file or directory)
open("/usr/local/pypy/bin/tls/libpypy-c.so", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/bin/tls", 0x7fffdad252f0) = -1 ENOENT (No such file or directory)
open("/usr/local/pypy/bin/x86_64/libpypy-c.so", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/bin/x86_64", 0x7fffdad252f0) = -1 ENOENT (No such file or directory)
open("/usr/local/pypy/bin/libpypy-c.so", O_RDONLY) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\300\20y\1\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=75053160, ...}) = 0
mmap(NULL, 77295440, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f3b1f9af000
mprotect(0x7f3b22771000, 2097152, PROT_NONE) = 0
mmap(0x7f3b22971000, 27074560, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2dc2000) = 0x7f3b22971000
mmap(0x7f3b24343000, 143184, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f3b24343000
close(3)                                = 0
open("/usr/local/pypy/bin/libpthread.so.0", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/etc/ld.so.cache", O_RDONLY)      = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=24721, ...}) = 0
mmap(NULL, 24721, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f3b2457d000
close(3)                                = 0
open("/lib64/libpthread.so.0", O_RDONLY) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0000^\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=142688, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f3b2457c000
mmap(NULL, 2212848, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f3b1f792000
mprotect(0x7f3b1f7a9000, 2097152, PROT_NONE) = 0
mmap(0x7f3b1f9a9000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x17000) = 0x7f3b1f9a9000
mmap(0x7f3b1f9ab000, 13296, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f3b1f9ab000
close(3)                                = 0
open("/usr/local/pypy/bin/libc.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/lib64/libc.so.6", O_RDONLY)      = 3
read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0p\356\1\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=1920936, ...}) = 0
mmap(NULL, 3750152, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f3b1f3fe000
mprotect(0x7f3b1f588000, 2097152, PROT_NONE) = 0
mmap(0x7f3b1f788000, 20480, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x18a000) = 0x7f3b1f788000
mmap(0x7f3b1f78d000, 18696, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f3b1f78d000
close(3)                                = 0
open("/usr/local/pypy/bin/../lib/tls/x86_64/libutil.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/bin/../lib/tls/x86_64", 0x7fffdad250f0) = -1 ENOENT (No such file or directory)
open("/usr/local/pypy/bin/../lib/tls/libutil.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/bin/../lib/tls", 0x7fffdad250f0) = -1 ENOENT (No such file or directory)
open("/usr/local/pypy/bin/../lib/x86_64/libutil.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/bin/../lib/x86_64", 0x7fffdad250f0) = -1 ENOENT (No such file or directory)
open("/usr/local/pypy/bin/../lib/libutil.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/bin/../lib", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
open("/lib64/libutil.so.1", O_RDONLY)   = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\20\16\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=14584, ...}) = 0
mmap(NULL, 2105600, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f3b1f1fb000
mprotect(0x7f3b1f1fd000, 2093056, PROT_NONE) = 0
mmap(0x7f3b1f3fc000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1000) = 0x7f3b1f3fc000
close(3)                                = 0
open("/usr/local/pypy/bin/../lib/libz.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/lib64/libz.so.1", O_RDONLY)      = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0 !\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=88600, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f3b2457b000
mmap(NULL, 2183696, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f3b1efe5000
mprotect(0x7f3b1effa000, 2093056, PROT_NONE) = 0
mmap(0x7f3b1f1f9000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x14000) = 0x7f3b1f1f9000
close(3)                                = 0
open("/usr/local/pypy/bin/../lib/libssl.so.1.0.0", O_RDONLY) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\360\232\1\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0555, st_size=463352, ...}) = 0
mmap(NULL, 2558832, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f3b1ed74000
mprotect(0x7f3b1eddb000, 2093056, PROT_NONE) = 0
mmap(0x7f3b1efda000, 45056, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x66000) = 0x7f3b1efda000
close(3)                                = 0
open("/usr/local/pypy/bin/../lib/libcrypto.so.1.0.0", O_RDONLY) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0y\6\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0555, st_size=2425040, ...}) = 0
mmap(NULL, 4535360, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f3b1e920000
mprotect(0x7f3b1eb47000, 2097152, PROT_NONE) = 0
mmap(0x7f3b1ed47000, 167936, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x227000) = 0x7f3b1ed47000
mmap(0x7f3b1ed70000, 13376, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f3b1ed70000
close(3)                                = 0
open("/usr/local/pypy/bin/../lib/libbz2.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/lib64/libbz2.so.1", O_RDONLY)    = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0000\26\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=67592, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f3b2457a000
mmap(NULL, 2162768, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f3b1e70f000
mprotect(0x7f3b1e71f000, 2093056, PROT_NONE) = 0
mmap(0x7f3b1e91e000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xf000) = 0x7f3b1e91e000
close(3)                                = 0
open("/usr/local/pypy/bin/../lib/libdl.so.2", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/lib64/libdl.so.2", O_RDONLY)     = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\340\r\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=19536, ...}) = 0
mmap(NULL, 2109696, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f3b1e50b000
mprotect(0x7f3b1e50d000, 2097152, PROT_NONE) = 0
mmap(0x7f3b1e70d000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f3b1e70d000
close(3)                                = 0
open("/usr/local/pypy/bin/../lib/libexpat.so.1", O_RDONLY) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0000=\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0555, st_size=208168, ...}) = 0
mmap(NULL, 2303336, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f3b1e2d8000
mprotect(0x7f3b1e309000, 2093056, PROT_NONE) = 0
mmap(0x7f3b1e508000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x30000) = 0x7f3b1e508000
close(3)                                = 0
open("/usr/local/pypy/bin/../lib/librt.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/lib64/librt.so.1", O_RDONLY)     = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\240!\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=43944, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f3b24579000
mmap(NULL, 2128816, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f3b1e0d0000
mprotect(0x7f3b1e0d7000, 2093056, PROT_NONE) = 0
mmap(0x7f3b1e2d6000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x6000) = 0x7f3b1e2d6000
close(3)                                = 0
open("/usr/local/pypy/bin/../lib/libm.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/lib64/libm.so.6", O_RDONLY)      = 3
read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0p>\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=596272, ...}) = 0
mmap(NULL, 2633912, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f3b1de4c000
mprotect(0x7f3b1decf000, 2093056, PROT_NONE) = 0
mmap(0x7f3b1e0ce000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x82000) = 0x7f3b1e0ce000
close(3)                                = 0
open("/usr/local/pypy/bin/../lib/libcrypt.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/lib64/libcrypt.so.1", O_RDONLY)  = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\f\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=40400, ...}) = 0
mmap(NULL, 2318816, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f3b1dc15000
mprotect(0x7f3b1dc1c000, 2097152, PROT_NONE) = 0
mmap(0x7f3b1de1c000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x7000) = 0x7f3b1de1c000
mmap(0x7f3b1de1e000, 184800, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f3b1de1e000
close(3)                                = 0
open("/usr/local/pypy/bin/../lib/libffi.so.6", O_RDONLY) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\240\32\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0555, st_size=52528, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f3b24578000
mmap(NULL, 2148936, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f3b1da08000
mprotect(0x7f3b1da14000, 2097152, PROT_NONE) = 0
mmap(0x7f3b1dc14000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xc000) = 0x7f3b1dc14000
close(3)                                = 0
open("/usr/local/pypy/bin/../lib/libncurses.so.5", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/lib64/libncurses.so.5", O_RDONLY) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0000j\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=139784, ...}) = 0
mmap(NULL, 2235304, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f3b1d7e6000
mprotect(0x7f3b1d808000, 2093056, PROT_NONE) = 0
mmap(0x7f3b1da07000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x21000) = 0x7f3b1da07000
close(3)                                = 0
open("/usr/local/pypy/bin/libfreebl3.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/lib64/libfreebl3.so", O_RDONLY)  = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\220\n\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=10312, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f3b24577000
mmap(NULL, 2105520, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f3b1d5e3000
mprotect(0x7f3b1d5e5000, 2093056, PROT_NONE) = 0
mmap(0x7f3b1d7e4000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1000) = 0x7f3b1d7e4000
close(3)                                = 0
open("/usr/local/pypy/bin/libtinfo.so.5", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/lib64/libtinfo.so.5", O_RDONLY)  = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0@\310\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=132408, ...}) = 0
mmap(NULL, 2228832, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f3b1d3c2000
mprotect(0x7f3b1d3df000, 2093056, PROT_NONE) = 0
mmap(0x7f3b1d5de000, 16384, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1c000) = 0x7f3b1d5de000
mmap(0x7f3b1d5e2000, 608, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f3b1d5e2000
close(3)                                = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f3b24576000
mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f3b24574000
arch_prctl(ARCH_SET_FS, 0x7f3b24574740) = 0
mprotect(0x7f3b1d7e4000, 4096, PROT_READ) = 0
mprotect(0x7f3b1de1c000, 4096, PROT_READ) = 0
mprotect(0x7f3b1e0ce000, 4096, PROT_READ) = 0
mprotect(0x7f3b1e2d6000, 4096, PROT_READ) = 0
mprotect(0x7f3b1e70d000, 4096, PROT_READ) = 0
mprotect(0x7f3b1f1f9000, 4096, PROT_READ) = 0
mprotect(0x7f3b1f3fc000, 4096, PROT_READ) = 0
mprotect(0x7f3b1f788000, 16384, PROT_READ) = 0
mprotect(0x7f3b1f9a9000, 4096, PROT_READ) = 0
mprotect(0x7f3b24585000, 4096, PROT_READ) = 0
munmap(0x7f3b2457d000, 24721)           = 0
set_tid_address(0x7f3b24574a10)         = 1497
set_robust_list(0x7f3b24574a20, 24)     = 0
futex(0x7fffdad25bec, FUTEX_WAKE_PRIVATE, 1) = 0
futex(0x7fffdad25bec, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 1, NULL, 7f3b24574740) = -1 EAGAIN (Resource temporarily unavailable)
rt_sigaction(SIGRTMIN, {0x7f3b1f797cb0, [], SA_RESTORER|SA_SIGINFO, 0x7f3b1f7a17e0}, NULL, 8) = 0
rt_sigaction(SIGRT_1, {0x7f3b1f797d40, [], SA_RESTORER|SA_RESTART|SA_SIGINFO, 0x7f3b1f7a17e0}, NULL, 8) = 0
rt_sigprocmask(SIG_UNBLOCK, [RTMIN RT_1], NULL, 8) = 0
getrlimit(RLIMIT_STACK, {rlim_cur=10240*1024, rlim_max=RLIM64_INFINITY}) = 0
brk(0)                                  = 0x17fd000
brk(0x181e000)                          = 0x181e000
ioctl(2, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fffdad25a10) = -1 ENOTTY (Inappropriate ioctl for device)
mmap(NULL, 409600, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f3b24510000
uname({sys="Linux", node="server", ...}) = 0
open("/proc/cpuinfo", O_RDONLY)         = 3
read(3, "processor\t: 0\nvendor_id\t: Genuin"..., 4096) = 4060
read(3, "processor\t: 5\nvendor_id\t: Genuin"..., 4096) = 812
read(3, "", 4096)                       = 0
close(3)                                = 0
open("/proc/meminfo", O_RDONLY)         = 3
read(3, "MemTotal:        1906900 kB\nMemF"..., 4096) = 1170
close(3)                                = 0
munmap(0x7f3b24510000, 409600)          = 0
mmap(NULL, 6430720, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f3b1cda0000
stat("/usr/local/pypy/bin/pypy", {st_mode=S_IFREG|0755, st_size=4752, ...}) = 0
access("/usr/local/pypy/bin/pypy", X_OK) = 0
stat("/usr/local/pypy/bin/pypy", {st_mode=S_IFREG|0755, st_size=4752, ...}) = 0
access("/usr/local/pypy/bin/pypy", X_OK) = 0
lstat("/usr/local/pypy/bin/pypy", {st_mode=S_IFREG|0755, st_size=4752, ...}) = 0
stat("/usr/local/pypy/bin/lib-python/2.7", 0x1813290) = -1 ENOENT (No such file or directory)
lstat("/usr/local/pypy/bin", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/pypy/lib-python/2.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/local/pypy/lib_pypy", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
stat("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/pypy", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/pypy/lib_pypy", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/pypy/lib_pypy/__extensions__", 0x1813290) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/__extensions__", 0x1813290) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/__extensions__/os", 0x1813290) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/__extensions__/os.py", 0x1813290) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/__extensions__/os.pypy-41.so", 0x1813290) = -1 ENOENT (No such file or directory)
stat("/", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
stat("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/pypy", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/pypy/lib_pypy", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/pypy/lib_pypy", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/pypy/lib_pypy/os", 0x1813290) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/os.py", 0x1813290) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/os.pypy-41.so", 0x1813290) = -1 ENOENT (No such file or directory)
stat("/", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
stat("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/pypy", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/pypy/lib-python", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/pypy/lib-python/2.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/local/pypy/lib-python/2.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/local/pypy/lib-python/2.7/os", 0x1813290) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/os.py", {st_mode=S_IFREG|0644, st_size=25910, ...}) = 0
open("/usr/local/pypy/lib-python/2.7/os.py", O_RDONLY) = 3
read(3, "r\"\"\"OS routines for NT or Posix "..., 8192) = 8192
read(3, ", don't change the\n    current w"..., 8192) = 8192
read(3, "p(self, key, *args):\n           "..., 8192) = 8192
read(3, "sets the buffer size for the I/O"..., 8192) = 1334
read(3, "", 8192)                       = 0
read(3, "", 8192)                       = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=25910, ...}) = 0
open("/usr/local/pypy/lib-python/2.7/os.pyc", O_RDONLY) = 4
read(4, "\n\363\r\n\301F\34Wc\0\0\0\0\0\0\0\0\16\0\0\0\0\0\20\0s\371\6\0\0d\0"..., 8192) = 8192
read(4, "ibute of the exception object.\n\n"..., 8192) = 8192
read(4, "\n\nExecute file with arguments fr"..., 16384) = 7910
read(4, "", 32768)                      = 0
close(4)                                = 0
mmap(NULL, 528384, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f3b244f3000
stat("/usr/local/pypy/lib_pypy/__extensions__/posixpath", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/__extensions__/posixpath.py", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/__extensions__/posixpath.pypy-41.so", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/posixpath", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/posixpath.py", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/posixpath.pypy-41.so", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/posixpath", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/posixpath.py", {st_mode=S_IFREG|0644, st_size=13925, ...}) = 0
open("/usr/local/pypy/lib-python/2.7/posixpath.py", O_RDONLY) = 4
read(4, "\"\"\"Common operations on Posix pa"..., 8192) = 8192
read(4, "nsion.)\n\ndef expanduser(path):\n "..., 8192) = 5733
read(4, "", 8192)                       = 0
read(4, "", 8192)                       = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=13925, ...}) = 0
open("/usr/local/pypy/lib-python/2.7/posixpath.pyc", O_RDONLY) = 5
read(5, "\n\363\r\n\301F\34Wc\0\0\0\0\0\0\0\0&\0\0\0\0\0\20\0s\373\1\0\0d\0"..., 8192) = 8192
read(5, "\t\0k\3\0s\317\0|\3\0s\271\0|\5\0r\317\0|\5\0r\337\0|\5\0d\n\0"..., 8192) = 2491
read(5, "", 16384)                      = 0
close(5)                                = 0
stat("/usr/local/pypy/lib_pypy/__extensions__/stat", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/__extensions__/stat.py", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/__extensions__/stat.pypy-41.so", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/stat", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/stat.py", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/stat.pypy-41.so", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/stat", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/stat.py", {st_mode=S_IFREG|0644, st_size=1842, ...}) = 0
open("/usr/local/pypy/lib-python/2.7/stat.py", O_RDONLY) = 5
read(5, "\"\"\"Constants/functions for inter"..., 8192) = 1842
read(5, "", 8192)                       = 0
read(5, "", 8192)                       = 0
fstat(5, {st_mode=S_IFREG|0644, st_size=1842, ...}) = 0
open("/usr/local/pypy/lib-python/2.7/stat.pyc", O_RDONLY) = 6
read(6, "\n\363\r\n\301F\34Wc\0\0\0\0\0\0\0\0\1\0\0\0\0\0\20\0s{\1\0\0d\0"..., 8192) = 2509
read(6, "", 8192)                       = 0
close(6)                                = 0
close(5)                                = 0
stat("/usr/local/pypy/lib_pypy/__extensions__/genericpath", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/__extensions__/genericpath.py", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/__extensions__/genericpath.pypy-41.so", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/genericpath", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/genericpath.py", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/genericpath.pypy-41.so", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/genericpath", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/genericpath.py", {st_mode=S_IFREG|0644, st_size=3201, ...}) = 0
open("/usr/local/pypy/lib-python/2.7/genericpath.py", O_RDONLY) = 5
read(5, "\"\"\"\nPath operations common to mo"..., 8192) = 3201
read(5, "", 8192)                       = 0
read(5, "", 8192)                       = 0
fstat(5, {st_mode=S_IFREG|0644, st_size=3201, ...}) = 0
open("/usr/local/pypy/lib-python/2.7/genericpath.pyc", O_RDONLY) = 6
read(6, "\n\363\r\n\301F\34Wc\0\0\0\0\0\0\0\0\10\0\0\0\0\0\20\0s\305\0\0\0d\0"..., 8192) = 3181
read(6, "", 8192)                       = 0
close(6)                                = 0
close(5)                                = 0
stat("/usr/local/pypy/lib_pypy/__extensions__/warnings", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/__extensions__/warnings.py", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/__extensions__/warnings.pypy-41.so", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/warnings", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/warnings.py", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/warnings.pypy-41.so", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/warnings", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/warnings.py", {st_mode=S_IFREG|0644, st_size=14185, ...}) = 0
open("/usr/local/pypy/lib-python/2.7/warnings.py", O_RDONLY) = 5
read(5, "\"\"\"Python part of the warnings s"..., 8192) = 8192
read(5, "sage.__class__\n    else:\n       "..., 8192) = 5993
read(5, "", 8192)                       = 0
read(5, "", 8192)                       = 0
fstat(5, {st_mode=S_IFREG|0644, st_size=14185, ...}) = 0
open("/usr/local/pypy/lib-python/2.7/warnings.pyc", O_RDONLY) = 6
read(6, "\n\363\r\n\301F\34Wc\0\0\0\0\0\0\0\0\10\0\0\0\0\0\20\0sW\2\0\0d\0"..., 8192) = 8192
read(6, "R\2\0\0\0(\21\0\0\0R\v\0\0\0R\f\0\0\0R\23\0\0\0R\24\0\0\0R\""..., 8192) = 3999
read(6, "", 16384)                      = 0
close(6)                                = 0
stat("/usr/local/pypy/lib_pypy/__extensions__/linecache", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/__extensions__/linecache.py", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/__extensions__/linecache.pypy-41.so", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/linecache", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/linecache.py", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/linecache.pypy-41.so", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/linecache", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/linecache.py", {st_mode=S_IFREG|0644, st_size=4027, ...}) = 0
open("/usr/local/pypy/lib-python/2.7/linecache.py", O_RDONLY) = 6
read(6, "\"\"\"Cache lines from files.\n\nThis"..., 8192) = 4027
read(6, "", 8192)                       = 0
read(6, "", 8192)                       = 0
fstat(6, {st_mode=S_IFREG|0644, st_size=4027, ...}) = 0
open("/usr/local/pypy/lib-python/2.7/linecache.pyc", O_RDONLY) = 7
read(7, "\n\363\r\n\301F\34Wc\0\0\0\0\0\0\0\0\3\0\0\0\0\0\20\0sp\0\0\0d\0"..., 8192) = 3095
read(7, "", 8192)                       = 0
close(7)                                = 0
close(6)                                = 0
close(5)                                = 0
close(4)                                = 0
stat("/usr/local/pypy/lib_pypy/__extensions__/UserDict", 0x1813680) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/__extensions__/UserDict.py", 0x1813680) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/__extensions__/UserDict.pypy-41.so", 0x1813680) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/UserDict", 0x1813680) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/UserDict.py", 0x1813680) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/UserDict.pypy-41.so", 0x1813680) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/UserDict", 0x1813680) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/UserDict.py", {st_mode=S_IFREG|0644, st_size=5903, ...}) = 0
open("/usr/local/pypy/lib-python/2.7/UserDict.py", O_RDONLY) = 4
read(4, "\"\"\"A more or less complete user-"..., 8192) = 5903
read(4, "", 8192)                       = 0
read(4, "", 8192)                       = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=5903, ...}) = 0
open("/usr/local/pypy/lib-python/2.7/UserDict.pyc", O_RDONLY) = 5
read(5, "\n\363\r\n\301F\34Wc\0\0\0\0\0\0\0\0\5\0\0\0\0\0\20\0sz\0\0\0d\0"..., 8192) = 7433
read(5, "", 8192)                       = 0
close(5)                                = 0
close(4)                                = 0
stat("/usr/local/pypy/lib_pypy/__extensions__/copy_reg", 0x1813680) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/__extensions__/copy_reg.py", 0x1813680) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/__extensions__/copy_reg.pypy-41.so", 0x1813680) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/copy_reg", 0x1813680) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/copy_reg.py", 0x1813680) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/copy_reg.pypy-41.so", 0x1813680) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/copy_reg", 0x1813680) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/copy_reg.py", {st_mode=S_IFREG|0644, st_size=6800, ...}) = 0
open("/usr/local/pypy/lib-python/2.7/copy_reg.py", O_RDONLY) = 4
read(4, "\"\"\"Helper to provide extensibili"..., 8192) = 6800
read(4, "", 8192)                       = 0
read(4, "", 8192)                       = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=6800, ...}) = 0
open("/usr/local/pypy/lib-python/2.7/copy_reg.pyc", O_RDONLY) = 5
read(5, "\n\363\r\n\301F\34Wc\0\0\0\0\0\0\0\0\5\0\0\0\0\0\20\0s\326\0\0\0d\0"..., 8192) = 4747
read(5, "", 8192)                       = 0
close(5)                                = 0
close(4)                                = 0
close(3)                                = 0
ioctl(1, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fffdad254d0) = -1 ENOTTY (Inappropriate ioctl for device)
fcntl(1, F_GETFL)                       = 0x8001 (flags O_WRONLY|O_LARGEFILE)
fstat(1, {st_mode=S_IFREG|0644, st_size=29729, ...}) = 0
stat("/usr/local/pypy/lib_pypy/__extensions__/site", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/__extensions__/site.py", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/__extensions__/site.pypy-41.so", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/site", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/site.py", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/site.pypy-41.so", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/site", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/site.py", {st_mode=S_IFREG|0644, st_size=20777, ...}) = 0
open("/usr/local/pypy/lib-python/2.7/site.py", O_RDONLY) = 3
read(3, "\"\"\"Append module search paths fo"..., 8192) = 8192
read(3, "SER_SITE\n\n    from sysconfig imp"..., 8192) = 8192
read(3, "         codecs.lookup(enc)\n    "..., 8192) = 4393
read(3, "", 8192)                       = 0
read(3, "", 8192)                       = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=20777, ...}) = 0
open("/usr/local/pypy/lib-python/2.7/site.pyc", O_RDONLY) = 4
read(4, "\n\363\r\n\301F\34Wc\0\0\0\0\0\0\0\0\3\0\0\0\0\0\20\0sy\1\0\0d\0"..., 8192) = 8192
read(4, "\0\20\0s\256\1\0\0d\1\0t\0\0j\1\0k\6\0}\0\0g\0\0}\1\0t\2\0"..., 8192) = 8192
read(4, "\4\f\1\f\1\17\1c\0\0\0\0\1\0\0\0\3\0\0\0C\0\0\0s\266\0\0\0t\0\0"..., 16384) = 2050
read(4, "", 32768)                      = 0
close(4)                                = 0
stat("/usr/local/pypy/lib_pypy/__extensions__/traceback", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/__extensions__/traceback.py", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/__extensions__/traceback.pypy-41.so", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/traceback", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/traceback.py", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/traceback.pypy-41.so", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/traceback", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/traceback.py", {st_mode=S_IFREG|0644, st_size=11417, ...}) = 0
open("/usr/local/pypy/lib-python/2.7/traceback.py", O_RDONLY) = 4
read(4, "\"\"\"Extract, format and print inf"..., 8192) = 8192
read(4, "able %s object>' % type(value)._"..., 8192) = 3225
read(4, "", 8192)                       = 0
read(4, "", 8192)                       = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=11417, ...}) = 0
open("/usr/local/pypy/lib-python/2.7/traceback.pyc", O_RDONLY) = 5
read(5, "\n\363\r\n\301F\34Wc\0\0\0\0\0\0\0\0\16\0\0\0\0\0\20\0sN\1\0\0d\0"..., 8192) = 8192
read(5, "\0\0\0R\20\0\0\0R1\0\0\0R2\0\0\0R,\0\0\0(\0\0\0\0(\0\0\0"..., 8192) = 2860
read(5, "", 16384)                      = 0
close(5)                                = 0
close(4)                                = 0
stat("/usr/local/pypy/lib_pypy/__extensions__/encodings", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/__extensions__/encodings.py", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/__extensions__/encodings.pypy-41.so", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/encodings", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/encodings.py", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/encodings.pypy-41.so", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/encodings", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/pypy/lib-python/2.7/encodings/__init__.py", {st_mode=S_IFREG|0644, st_size=5698, ...}) = 0
stat("/usr/local/pypy/lib-python/2.7/encodings/__init__", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/encodings/__init__.py", {st_mode=S_IFREG|0644, st_size=5698, ...}) = 0
open("/usr/local/pypy/lib-python/2.7/encodings/__init__.py", O_RDONLY) = 4
read(4, "\"\"\" Standard \"encodings\" Package"..., 8192) = 5698
read(4, "", 8192)                       = 0
read(4, "", 8192)                       = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=5698, ...}) = 0
open("/usr/local/pypy/lib-python/2.7/encodings/__init__.pyc", O_RDONLY) = 5
read(5, "\n\363\r\n\301F\34Wc\0\0\0\0\0\0\0\0\3\0\0\0\0\0\20\0s\216\0\0\0d\0"..., 8192) = 4250
read(5, "", 8192)                       = 0
close(5)                                = 0
stat("/", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
stat("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/pypy", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/pypy/lib-python", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/pypy/lib-python/2.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/local/pypy/lib-python/2.7/encodings", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/pypy/lib-python/2.7/encodings", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/pypy/lib-python/2.7/encodings/codecs", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/encodings/codecs.py", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/encodings/codecs.pypy-41.so", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/__extensions__/codecs", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/__extensions__/codecs.py", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/__extensions__/codecs.pypy-41.so", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/codecs", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/codecs.py", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/codecs.pypy-41.so", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/codecs", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/codecs.py", {st_mode=S_IFREG|0644, st_size=35555, ...}) = 0
open("/usr/local/pypy/lib-python/2.7/codecs.py", O_RDONLY) = 5
read(5, "\"\"\" codecs -- Python Codec Regis"..., 8192) = 8192
read(5, " = errors\n\n    def decode(self, "..., 8192) = 8192
read(5, "es = self.decode(data[:exc.start"..., 8192) = 8192
read(5, "ers below\n    data_encoding = 'u"..., 8192) = 8192
read(5, "erator, encoding, errors='strict"..., 8192) = 2787
read(5, "", 8192)                       = 0
read(5, "", 8192)                       = 0
fstat(5, {st_mode=S_IFREG|0644, st_size=35555, ...}) = 0
open("/usr/local/pypy/lib-python/2.7/codecs.pyc", O_RDONLY) = 6
read(6, "\n\363\r\n\301F\34Wc\0\0\0\0\0\0\0\0+\0\0\0\0\0\20\0sp\3\0\0d\0"..., 8192) = 8192
read(6, " to the decode() method. The Inc"..., 8192) = 8192
read(6, "tegy meaning that\n            it"..., 16384) = 16384
read(6, "curs multiple\n        times, the"..., 32768) = 1067
read(6, "", 65536)                      = 0
close(6)                                = 0
close(5)                                = 0
stat("/usr/local/pypy/lib-python/2.7/encodings/encodings", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/encodings/encodings.py", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/encodings/encodings.pypy-41.so", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/encodings/aliases", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/encodings/aliases.py", {st_mode=S_IFREG|0644, st_size=14848, ...}) = 0
open("/usr/local/pypy/lib-python/2.7/encodings/aliases.py", O_RDONLY) = 5
read(5, "\"\"\" Encoding Aliases Support\n\n  "..., 8192) = 8192
read(5, "iso8859_10',\n\n    # iso8859_11 c"..., 8192) = 6656
read(5, "", 8192)                       = 0
read(5, "", 8192)                       = 0
fstat(5, {st_mode=S_IFREG|0644, st_size=14848, ...}) = 0
open("/usr/local/pypy/lib-python/2.7/encodings/aliases.pyc", O_RDONLY) = 6
read(6, "\n\363\r\n\301F\34Wc\0\0\0\0\0\0\0\0\3\0\0\0\0\0\20\0su\10\0\0d\0"..., 8192) = 8192
read(6, "\7\1\7\3\7\1\7\3\7\1\7\3\7\3\7\1\7\1\7\1\7\1\7\1\7\1\7\1\7\3\7\1"..., 8192) = 588
read(6, "", 16384)                      = 0
close(6)                                = 0
close(5)                                = 0
stat("/usr/local/pypy/lib-python/2.7/encodings/__builtin__", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/encodings/__builtin__.py", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/encodings/__builtin__.pypy-41.so", 0x1813360) = -1 ENOENT (No such file or directory)
close(4)                                = 0
geteuid()                               = 0
getuid()                                = 0
getegid()                               = 0
getgid()                                = 0
stat("/usr/local/pypy/lib_pypy/__extensions__/sysconfig", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/__extensions__/sysconfig.py", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/__extensions__/sysconfig.pypy-41.so", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/sysconfig", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/sysconfig.py", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/sysconfig.pypy-41.so", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/sysconfig", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/sysconfig.py", {st_mode=S_IFREG|0644, st_size=24143, ...}) = 0
open("/usr/local/pypy/lib-python/2.7/sysconfig.py", O_RDONLY) = 4
read(4, "\"\"\"Provide access to Python's co"..., 8192) = 8192
read(4, "yntaxes,\n    # like old-style Se"..., 8192) = 8192
read(4, "ame]\n\ndef get_config_vars(*args)"..., 8192) = 7759
read(4, "", 8192)                       = 0
read(4, "", 8192)                       = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=24143, ...}) = 0
open("/usr/local/pypy/lib-python/2.7/sysconfig.pyc", O_RDONLY) = 5
read(5, "\n\363\r\n\301F\34Wc\0\0\0\0\0\0\0\0\6\0\0\0\0\0\20\0sY\5\0\0d\0"..., 8192) = 8192
read(5, "d-time variables.i\377\377\377\377Ns.\0\0\0inva"..., 8192) = 8192
read(5, "t\2\0\203\0\0\1d\2\0Sd\3\0t\3\0\203\0\0\26GHd\4\0t\4\0\203\0\0"..., 16384) = 1134
read(5, "", 32768)                      = 0
close(5)                                = 0
lstat("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/pypy", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/pypy/bin", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local/pypy/bin/pypy", {st_mode=S_IFREG|0755, st_size=4752, ...}) = 0
stat("/usr/local/pypy/bin/Modules/Setup.dist", 0x18134b0) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/bin/Modules/Setup.local", 0x18134b0) = -1 ENOENT (No such file or directory)
close(4)                                = 0
stat("/usr/local/pypy/lib_pypy/__extensions__/re", 0x18134b0) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/__extensions__/re.py", 0x18134b0) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/__extensions__/re.pypy-41.so", 0x18134b0) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/re", 0x18134b0) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/re.py", 0x18134b0) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/re.pypy-41.so", 0x18134b0) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/re", 0x18134b0) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/re.py", {st_mode=S_IFREG|0644, st_size=13423, ...}) = 0
open("/usr/local/pypy/lib-python/2.7/re.py", O_RDONLY) = 4
read(4, "#\n# Secret Labs' Regular Express"..., 8192) = 8192
read(4, "it(string, maxsplit)\n\ndef findal"..., 8192) = 5231
read(4, "", 8192)                       = 0
read(4, "", 8192)                       = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=13423, ...}) = 0
open("/usr/local/pypy/lib-python/2.7/re.pyc", O_RDONLY) = 5
read(5, "\n\363\r\n\301F\34Wc\0\0\0\0\0\0\0\0\27\0\0\0\0\0\20\0sQ\2\0\0d\0"..., 8192) = 8192
read(5, "  Empty matches are included in "..., 8192) = 4680
read(5, "", 16384)                      = 0
close(5)                                = 0
stat("/usr/local/pypy/lib_pypy/__extensions__/sre_compile", 0x18134b0) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/__extensions__/sre_compile.py", 0x18134b0) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/__extensions__/sre_compile.pypy-41.so", 0x18134b0) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/sre_compile", 0x18134b0) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/sre_compile.py", 0x18134b0) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/sre_compile.pypy-41.so", 0x18134b0) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/sre_compile", 0x18134b0) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/sre_compile.py", {st_mode=S_IFREG|0644, st_size=19817, ...}) = 0
open("/usr/local/pypy/lib-python/2.7/sre_compile.py", O_RDONLY) = 5
read(5, "# -*- coding: utf-8 -*-\n#\n# Secr"..., 8192) = 8192
read(5, "mize_charset(charset, fixup, fix"..., 8192) = 8192
read(5, " LITERAL:\n                    ch"..., 8192) = 3433
read(5, "", 8192)                       = 0
read(5, "", 8192)                       = 0
fstat(5, {st_mode=S_IFREG|0644, st_size=19817, ...}) = 0
open("/usr/local/pypy/lib-python/2.7/sre_compile.pyc", O_RDONLY) = 6
read(6, "\n\363\r\n\301F\34Wc\0\0\0\0\0\0\0\0\5\0\0\0\0\0\20\0s\253\1\0\0d\0"..., 8192) = 8192
read(6, "t\v\0\0\0_BITS_TRANSR]\0\0\0R\16\0\0\0(\5\0\0\0t"..., 8192) = 3721
read(6, "", 16384)                      = 0
close(6)                                = 0
stat("/usr/local/pypy/lib_pypy/__extensions__/sre_parse", 0x18134b0) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/__extensions__/sre_parse.py", 0x18134b0) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/__extensions__/sre_parse.pypy-41.so", 0x18134b0) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/sre_parse", 0x18134b0) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/sre_parse.py", 0x18134b0) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/sre_parse.pypy-41.so", 0x18134b0) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/sre_parse", 0x18134b0) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/sre_parse.py", {st_mode=S_IFREG|0644, st_size=29067, ...}) = 0
open("/usr/local/pypy/lib-python/2.7/sre_parse.py", O_RDONLY) = 6
read(6, "#\n# Secret Labs' Regular Express"..., 8192) = 8192
read(6, "raise error, \"bogus escape: %s\" "..., 8192) = 8192
read(6, "max = 0, MAXREPEAT\n             "..., 8192) = 8192
read(6, "   subpatternappend((AT, AT_BEGI"..., 8192) = 4491
read(6, "", 8192)                       = 0
read(6, "", 8192)                       = 0
fstat(6, {st_mode=S_IFREG|0644, st_size=29067, ...}) = 0
open("/usr/local/pypy/lib-python/2.7/sre_parse.pyc", O_RDONLY) = 7
read(7, "\n\363\r\n\301F\34Wc\0\0\0\0\0\0\0\0\5\0\0\0\0\0\20\0s\23\3\0\0d\0"..., 8192) = 8192
read(7, "\0\0\311\1\0\312\0\0\27}\1\0q\313\0Wt\7\0t\10\0|\1\0d\1\0\37d\10\0"..., 8192) = 8192
read(7, "\v\0\203\1\0}\r\0|\r\0d\2\0k\0\0rB\1t\7\0d\f\0\202\2\0n\0\0"..., 16384) = 2730
read(7, "", 32768)                      = 0
close(7)                                = 0
stat("/usr/local/pypy/lib_pypy/__extensions__/sre_constants", 0x18134b0) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/__extensions__/sre_constants.py", 0x18134b0) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/__extensions__/sre_constants.pypy-41.so", 0x18134b0) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/sre_constants", 0x18134b0) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/sre_constants.py", 0x18134b0) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/sre_constants.pypy-41.so", 0x18134b0) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/sre_constants", 0x18134b0) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/sre_constants.py", {st_mode=S_IFREG|0644, st_size=7197, ...}) = 0
open("/usr/local/pypy/lib-python/2.7/sre_constants.py", O_RDONLY) = 7
read(7, "#\n# Secret Labs' Regular Express"..., 8192) = 7197
read(7, "", 8192)                       = 0
read(7, "", 8192)                       = 0
fstat(7, {st_mode=S_IFREG|0644, st_size=7197, ...}) = 0
open("/usr/local/pypy/lib-python/2.7/sre_constants.pyc", O_RDONLY) = 8
read(8, "\n\363\r\n\301F\34Wc\0\0\0\0\0\0\0\0 \0\0\0\0\0\20\0s*\5\0\0d\0"..., 8192) = 6059
read(8, "", 8192)                       = 0
close(8)                                = 0
close(7)                                = 0
close(6)                                = 0
close(5)                                = 0
close(4)                                = 0
stat("/root/.local/lib/pypy2.7/site-packages", 0x1813460) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/__extensions__/distutils", 0x1813460) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/__extensions__/distutils.py", 0x1813460) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/__extensions__/distutils.pypy-41.so", 0x1813460) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/distutils", 0x1813460) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/distutils.py", 0x1813460) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/distutils.pypy-41.so", 0x1813460) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/distutils", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/pypy/lib-python/2.7/distutils/__init__.py", {st_mode=S_IFREG|0644, st_size=338, ...}) = 0
stat("/usr/local/pypy/lib-python/2.7/distutils/__init__", 0x1813460) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/distutils/__init__.py", {st_mode=S_IFREG|0644, st_size=338, ...}) = 0
open("/usr/local/pypy/lib-python/2.7/distutils/__init__.py", O_RDONLY) = 4
read(4, "\"\"\"distutils\n\nThe main package f"..., 8192) = 338
read(4, "", 8192)                       = 0
read(4, "", 8192)                       = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=338, ...}) = 0
open("/usr/local/pypy/lib-python/2.7/distutils/__init__.pyc", O_RDONLY) = 5
read(5, "\n\363\r\n\301F\34Wc\0\0\0\0\0\0\0\0\1\0\0\0\0\0\20\0s\26\0\0\0d\0"..., 8192) = 396
read(5, "", 8192)                       = 0
close(5)                                = 0
close(4)                                = 0
stat("/", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
stat("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/pypy", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/pypy/lib-python", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/pypy/lib-python/2.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/local/pypy/lib-python/2.7/distutils", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/pypy/lib-python/2.7/distutils", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/pypy/lib-python/2.7/distutils/sysconfig", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/distutils/sysconfig.py", {st_mode=S_IFREG|0644, st_size=428, ...}) = 0
open("/usr/local/pypy/lib-python/2.7/distutils/sysconfig.py", O_RDONLY) = 4
read(4, "# The content of this file is re"..., 8192) = 428
read(4, "", 8192)                       = 0
read(4, "", 8192)                       = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=428, ...}) = 0
open("/usr/local/pypy/lib-python/2.7/distutils/sysconfig.pyc", O_RDONLY) = 5
read(5, "\n\363\r\n\301F\34Wc\0\0\0\0\0\0\0\0\3\0\0\0\0\0\0\0sU\0\0\0d\0"..., 8192) = 413
read(5, "", 8192)                       = 0
close(5)                                = 0
stat("/usr/local/pypy/lib-python/2.7/distutils/sys", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/distutils/sys.py", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/distutils/sys.pypy-41.so", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/distutils/distutils", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/distutils/distutils.py", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/distutils/distutils.pypy-41.so", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/distutils/sysconfig_pypy", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/distutils/sysconfig_pypy.py", {st_mode=S_IFREG|0644, st_size=4837, ...}) = 0
open("/usr/local/pypy/lib-python/2.7/distutils/sysconfig_pypy.py", O_RDONLY) = 5
read(5, "\"\"\"Provide access to Python's co"..., 8192) = 4837
read(5, "", 8192)                       = 0
read(5, "", 8192)                       = 0
fstat(5, {st_mode=S_IFREG|0644, st_size=4837, ...}) = 0
open("/usr/local/pypy/lib-python/2.7/distutils/sysconfig_pypy.pyc", O_RDONLY) = 6
read(6, "\n\363\r\n\234\245,Wc\0\0\0\0\0\0\0\0\5\0\0\0\0\0\20\0s\16\1\0\0d\0"..., 8192) = 5329
read(6, "", 8192)                       = 0
close(6)                                = 0
stat("/usr/local/pypy/lib-python/2.7/distutils/os", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/distutils/os.py", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/distutils/os.pypy-41.so", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/distutils/shlex", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/distutils/shlex.py", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/distutils/shlex.pypy-41.so", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/__extensions__/shlex", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/__extensions__/shlex.py", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/__extensions__/shlex.pypy-41.so", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/shlex", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/shlex.py", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/shlex.pypy-41.so", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/shlex", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/shlex.py", {st_mode=S_IFREG|0644, st_size=11137, ...}) = 0
open("/usr/local/pypy/lib-python/2.7/shlex.py", O_RDONLY) = 6
read(6, "# -*- coding: iso-8859-1 -*-\n\"\"\""..., 8192) = 8192
read(6, "     else:\n                     "..., 8192) = 2945
read(6, "", 8192)                       = 0
read(6, "", 8192)                       = 0
fstat(6, {st_mode=S_IFREG|0644, st_size=11137, ...}) = 0
open("/usr/local/pypy/lib-python/2.7/shlex.pyc", O_RDONLY) = 7
read(7, "\n\363\r\n\301F\34Wc\0\0\0\0\0\0\0\0\5\0\0\0\0\0\20\0s\26\1\0\0d\0"..., 8192) = 7173
read(7, "", 8192)                       = 0
close(7)                                = 0
stat("/usr/local/pypy/lib_pypy/__extensions__/collections", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/__extensions__/collections.py", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/__extensions__/collections.pypy-41.so", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/collections", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/collections.py", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/collections.pypy-41.so", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/collections", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/collections.py", {st_mode=S_IFREG|0644, st_size=29206, ...}) = 0
open("/usr/local/pypy/lib-python/2.7/collections.py", O_RDONLY) = 7
read(7, "__all__ = ['Counter', 'deque', '"..., 8192) = 8192
read(7, "ems(self):\n        'od.iteritems"..., 8192) = 8192
read(7, "################################"..., 8192) = 8192
read(7, "        else:\n                fo"..., 8192) = 4630
read(7, "", 8192)                       = 0
read(7, "", 8192)                       = 0
fstat(7, {st_mode=S_IFREG|0644, st_size=29206, ...}) = 0
open("/usr/local/pypy/lib-python/2.7/collections.pyc", O_RDONLY) = 8
read(8, "\n\363\r\n\301F\34Wc\0\0\0\0\0\0\0\0\5\0\0\0\0\0\0\0sG\3\0\0d\0"..., 8192) = 8192
read(8, "a (key, value) pair.\n        Pai"..., 8192) = 8192
read(8, "reate a new, empty Counter objec"..., 16384) = 9179
read(8, "", 32768)                      = 0
close(8)                                = 0
stat("/usr/local/pypy/lib_pypy/__extensions__/keyword", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/__extensions__/keyword.py", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/__extensions__/keyword.pypy-41.so", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/keyword", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/keyword.py", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/keyword.pypy-41.so", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/keyword", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/keyword.py", {st_mode=S_IFREG|0755, st_size=1996, ...}) = 0
open("/usr/local/pypy/lib-python/2.7/keyword.py", O_RDONLY) = 8
read(8, "#! /usr/bin/env python\n\n\"\"\"Keywo"..., 8192) = 1996
read(8, "", 8192)                       = 0
read(8, "", 8192)                       = 0
fstat(8, {st_mode=S_IFREG|0755, st_size=1996, ...}) = 0
open("/usr/local/pypy/lib-python/2.7/keyword.pyc", O_RDONLY) = 9
read(9, "\n\363\r\n\301F\34Wc\0\0\0\0\0\0\0\0\37\0\0\0\0\0\20\0s\247\0\0\0d\0"..., 8192) = 2086
read(9, "", 8192)                       = 0
close(9)                                = 0
close(8)                                = 0
stat("/usr/local/pypy/lib_pypy/__extensions__/heapq", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/__extensions__/heapq.py", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/__extensions__/heapq.pypy-41.so", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/heapq", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/heapq.py", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/heapq.pypy-41.so", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/heapq", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/heapq.py", {st_mode=S_IFREG|0644, st_size=18296, ...}) = 0
open("/usr/local/pypy/lib-python/2.7/heapq.py", O_RDONLY) = 8
read(8, "# -*- coding: latin-1 -*-\n\n\"\"\"He"..., 8192) = 8192
read(8, "= 2*j+1, this is\n    # (2*j+1-1)"..., 8192) = 8192
read(8, "key is None:\n        it = izip(i"..., 8192) = 1912
read(8, "", 8192)                       = 0
read(8, "", 8192)                       = 0
fstat(8, {st_mode=S_IFREG|0644, st_size=18296, ...}) = 0
open("/usr/local/pypy/lib-python/2.7/heapq.pyc", O_RDONLY) = 9
read(9, "\n\363\r\n\301F\34Wc\0\0\0\0\0\0\0\0\n\0\0\0\0\0\20\0s\321\1\0\0d\0"..., 8192) = 8192
read(9, "\0\0|\0\0\203\1\0}\1\0x+\0t\1\0t\2\0|\1\0d\1\0\32\203\1\0\203\1"..., 8192) = 5893
read(9, "", 16384)                      = 0
close(9)                                = 0
stat("/usr/local/pypy/lib_pypy/__extensions__/_heapq", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/__extensions__/_heapq.py", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/__extensions__/_heapq.pypy-41.so", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/_heapq", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/_heapq.py", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/_heapq.pypy-41.so", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/_heapq", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/_heapq.py", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/_heapq.pypy-41.so", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
stat("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/pypy", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/pypy/lib-python", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/pypy/lib-python/2.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/local/pypy/lib-python/2.7/lib-tk", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/pypy/lib-python/2.7/lib-tk", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/pypy/lib-python/2.7/lib-tk/_heapq", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/lib-tk/_heapq.py", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/lib-tk/_heapq.pypy-41.so", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
stat("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/pypy", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/pypy/lib-python", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/pypy/lib-python/2.7", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/local/pypy/lib-python/2.7/plat-linux2", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/pypy/lib-python/2.7/plat-linux2", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/pypy/lib-python/2.7/plat-linux2/_heapq", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/plat-linux2/_heapq.py", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/plat-linux2/_heapq.pypy-41.so", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/__extensions__/_heapq", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/__extensions__/_heapq.py", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/__extensions__/_heapq.pypy-41.so", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/_heapq", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/_heapq.py", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/_heapq.pypy-41.so", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/_heapq", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/_heapq.py", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/_heapq.pypy-41.so", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/lib-tk/_heapq", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/lib-tk/_heapq.py", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/lib-tk/_heapq.pypy-41.so", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/plat-linux2/_heapq", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/plat-linux2/_heapq.py", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/plat-linux2/_heapq.pypy-41.so", 0x1813470) = -1 ENOENT (No such file or directory)
close(8)                                = 0
close(7)                                = 0
close(6)                                = 0
stat("/usr/local/pypy/lib-python/2.7/distutils/distutils", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/distutils/distutils.py", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/distutils/distutils.pypy-41.so", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/distutils/errors", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/distutils/errors.py", {st_mode=S_IFREG|0644, st_size=3494, ...}) = 0
open("/usr/local/pypy/lib-python/2.7/distutils/errors.py", O_RDONLY) = 6
read(6, "\"\"\"distutils.errors\n\nProvides ex"..., 8192) = 3494
read(6, "", 8192)                       = 0
read(6, "", 8192)                       = 0
fstat(6, {st_mode=S_IFREG|0644, st_size=3494, ...}) = 0
open("/usr/local/pypy/lib-python/2.7/distutils/errors.pyc", O_RDONLY) = 7
read(7, "\n\363\r\n\301F\34Wc\0\0\0\0\0\0\0\0\3\0\0\0\0\0\20\0s\262\1\0\0d\0"..., 8192) = 5535
read(7, "", 8192)                       = 0
close(7)                                = 0
close(6)                                = 0
stat("/usr/local/pypy/lib-python/2.7/distutils/sysconfig_cpython", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/distutils/sysconfig_cpython.py", {st_mode=S_IFREG|0644, st_size=17163, ...}) = 0
open("/usr/local/pypy/lib-python/2.7/distutils/sysconfig_cpython.py", O_RDONLY) = 6
read(6, "\"\"\"Provide access to Python's co"..., 8192) = 8192
read(6, "iron:\n            ar = os.enviro"..., 8192) = 8192
read(6, "s used most places in the\n      "..., 8192) = 779
read(6, "", 8192)                       = 0
read(6, "", 8192)                       = 0
fstat(6, {st_mode=S_IFREG|0644, st_size=17163, ...}) = 0
open("/usr/local/pypy/lib-python/2.7/distutils/sysconfig_cpython.pyc", O_RDONLY) = 7
read(7, "\n\363\r\n\301F\34Wc\0\0\0\0\0\0\0\0\7\0\0\0\0\0\20\0s\235\2\0\0d\0"..., 8192) = 8192
read(7, "\312\0\0|\4\0|\v\0<n\v\0X|\f\0|\4\0|\v\0<|\5\0|\v\0=n"..., 8192) = 4392
read(7, "", 16384)                      = 0
close(7)                                = 0
stat("/usr/local/pypy/lib-python/2.7/distutils/re", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/distutils/re.py", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/distutils/re.pypy-41.so", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/distutils/string", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/distutils/string.py", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/distutils/string.pypy-41.so", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/__extensions__/string", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/__extensions__/string.py", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/__extensions__/string.pypy-41.so", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/string", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/string.py", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/string.pypy-41.so", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/string", 0x1813470) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/string.py", {st_mode=S_IFREG|0644, st_size=21609, ...}) = 0
open("/usr/local/pypy/lib-python/2.7/string.py", O_RDONLY) = 7
read(7, "\"\"\"A collection of string operat"..., 8192) = 8192
read(7, "case letters and UPPER CASE\ndef "..., 8192) = 8192
read(7, ", new[, maxreplace]) -> string\n\n"..., 8192) = 5225
read(7, "", 8192)                       = 0
read(7, "", 8192)                       = 0
fstat(7, {st_mode=S_IFREG|0644, st_size=21609, ...}) = 0
open("/usr/local/pypy/lib-python/2.7/string.pyc", O_RDONLY) = 8
read(8, "\n\363\r\n\301F\34Wc\0\0\0\0\0\0\0\0\5\0\0\0\0\0\20\0s\226\2\0\0d\0"..., 8192) = 8192
read(8, "chars]) -> string\n\n    Return a "..., 8192) = 8192
read(8, "ed_argst\6\0\0\0result(\0\0\0\0(\0\0\0\0R\n\0\0"..., 16384) = 2539
read(8, "", 32768)                      = 0
close(8)                                = 0
mmap(0xffffffffb0014000, 1048576, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f3b243f3000
brk(0x183f000)                          = 0x183f000
mmap(NULL, 528384, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f3b1cd1f000
brk(0x1865000)                          = 0x1865000
brk(0x18a3000)                          = 0x18a3000
brk(0x18d2000)                          = 0x18d2000
brk(0x18f8000)                          = 0x18f8000
brk(0x1922000)                          = 0x1922000
stat("/usr/local/pypy/lib_pypy/__extensions__/strop", 0x1813f30) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/__extensions__/strop.py", 0x1813f30) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/__extensions__/strop.pypy-41.so", 0x1813f30) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/strop", 0x1813f30) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/strop.py", 0x1813f30) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/strop.pypy-41.so", 0x1813f30) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/strop", 0x1813f30) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/strop.py", 0x1813f30) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/strop.pypy-41.so", 0x1813f30) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/lib-tk/strop", 0x1813f30) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/lib-tk/strop.py", 0x1813f30) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/lib-tk/strop.pypy-41.so", 0x1813f30) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/plat-linux2/strop", 0x1813f30) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/plat-linux2/strop.py", 0x1813f30) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/plat-linux2/strop.pypy-41.so", 0x1813f30) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/__extensions__/strop", 0x1813f30) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/__extensions__/strop.py", 0x1813f30) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/__extensions__/strop.pypy-41.so", 0x1813f30) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/strop", 0x1813f30) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/strop.py", 0x1813f30) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/strop.pypy-41.so", 0x1813f30) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/strop", 0x1813f30) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/strop.py", 0x1813f30) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/strop.pypy-41.so", 0x1813f30) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/lib-tk/strop", 0x1813f30) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/lib-tk/strop.py", 0x1813f30) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/lib-tk/strop.pypy-41.so", 0x1813f30) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/plat-linux2/strop", 0x1813f30) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/plat-linux2/strop.py", 0x1813f30) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/plat-linux2/strop.pypy-41.so", 0x1813f30) = -1 ENOENT (No such file or directory)
close(7)                                = 0
stat("/usr/local/pypy/bin/Modules/Setup.dist", 0x1813f30) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/bin/Modules/Setup.local", 0x1813f30) = -1 ENOENT (No such file or directory)
close(6)                                = 0
close(5)                                = 0
close(4)                                = 0
stat("/usr/local/pypy/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
open("/usr/local/pypy/site-packages", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = 4
fcntl(4, F_GETFD)                       = 0x1 (flags FD_CLOEXEC)
getdents(4, /* 14 entries */, 32768)    = 504
getdents(4, /* 0 entries */, 32768)     = 0
close(4)                                = 0
stat("/usr/local/pypy/lib_pypy/__extensions__/sitecustomize", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/__extensions__/sitecustomize.py", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/__extensions__/sitecustomize.pypy-41.so", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/sitecustomize", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/sitecustomize.py", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/sitecustomize.pypy-41.so", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/sitecustomize", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/sitecustomize.py", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/sitecustomize.pypy-41.so", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/lib-tk/sitecustomize", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/lib-tk/sitecustomize.py", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/lib-tk/sitecustomize.pypy-41.so", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/plat-linux2/sitecustomize", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/plat-linux2/sitecustomize.py", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/plat-linux2/sitecustomize.pypy-41.so", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
stat("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/pypy", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/pypy/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/pypy/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/local/pypy/site-packages/sitecustomize", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/site-packages/sitecustomize.py", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/site-packages/sitecustomize.pypy-41.so", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/__extensions__/sitecustomize", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/__extensions__/sitecustomize.py", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/__extensions__/sitecustomize.pypy-41.so", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/sitecustomize", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/sitecustomize.py", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/sitecustomize.pypy-41.so", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/sitecustomize", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/sitecustomize.py", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/sitecustomize.pypy-41.so", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/lib-tk/sitecustomize", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/lib-tk/sitecustomize.py", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/lib-tk/sitecustomize.pypy-41.so", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/plat-linux2/sitecustomize", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/plat-linux2/sitecustomize.py", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/plat-linux2/sitecustomize.pypy-41.so", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/site-packages/sitecustomize", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/site-packages/sitecustomize.py", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/site-packages/sitecustomize.pypy-41.so", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/__extensions__/usercustomize", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/__extensions__/usercustomize.py", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/__extensions__/usercustomize.pypy-41.so", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/usercustomize", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/usercustomize.py", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/usercustomize.pypy-41.so", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/usercustomize", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/usercustomize.py", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/usercustomize.pypy-41.so", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/lib-tk/usercustomize", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/lib-tk/usercustomize.py", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/lib-tk/usercustomize.pypy-41.so", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/plat-linux2/usercustomize", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/plat-linux2/usercustomize.py", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/plat-linux2/usercustomize.pypy-41.so", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/site-packages/usercustomize", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/site-packages/usercustomize.py", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/site-packages/usercustomize.pypy-41.so", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/__extensions__/usercustomize", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/__extensions__/usercustomize.py", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/__extensions__/usercustomize.pypy-41.so", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/usercustomize", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/usercustomize.py", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib_pypy/usercustomize.pypy-41.so", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/usercustomize", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/usercustomize.py", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/usercustomize.pypy-41.so", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/lib-tk/usercustomize", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/lib-tk/usercustomize.py", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/lib-tk/usercustomize.pypy-41.so", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/plat-linux2/usercustomize", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/plat-linux2/usercustomize.py", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/plat-linux2/usercustomize.pypy-41.so", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/site-packages/usercustomize", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/site-packages/usercustomize.py", 0x1813360) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/site-packages/usercustomize.pypy-41.so", 0x1813360) = -1 ENOENT (No such file or directory)
close(3)                                = 0
open("/usr/lib/locale/locale-archive", O_RDONLY) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=99158576, ...}) = 0
mmap(NULL, 99158576, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f3b16e8e000
close(3)                                = 0
stat("/usr/local/pypy/lib-python/2.7/encodings/utf_8", 0x18157a0) = -1 ENOENT (No such file or directory)
stat("/usr/local/pypy/lib-python/2.7/encodings/utf_8.py", {st_mode=S_IFREG|0644, st_size=1005, ...}) = 0
open("/usr/local/pypy/lib-python/2.7/encodings/utf_8.py", O_RDONLY) = 3
read(3, "\"\"\" Python 'utf-8' Codec\n\n\nWritt"..., 8192) = 1005
read(3, "", 8192)                       = 0
read(3, "", 8192)                       = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=1005, ...}) = 0
open("/usr/local/pypy/lib-python/2.7/encodings/utf_8.pyc", O_RDONLY) = 4
read(4, "\n\363\r\n\301F\34Wc\0\0\0\0\0\0\0\0\3\0\0\0\0\0\20\0s\230\0\0\0d\0"..., 8192) = 1703
read(4, "", 8192)                       = 0
close(4)                                = 0
close(3)                                = 0
ioctl(0, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fffdad250f0) = -1 ENOTTY (Inappropriate ioctl for device)
ioctl(1, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fffdad250f0) = -1 ENOTTY (Inappropriate ioctl for device)
ioctl(2, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fffdad250f0) = -1 ENOTTY (Inappropriate ioctl for device)
rt_sigaction(SIGINT, {0x7f3b223d76f0, [], SA_RESTORER, 0x7f3b1f7a17e0}, NULL, 8) = 0
rt_sigaction(SIGPIPE, {SIG_IGN, [], SA_RESTORER, 0x7f3b1f7a17e0}, NULL, 8) = 0
rt_sigaction(SIGXFSZ, {SIG_IGN, [], SA_RESTORER, 0x7f3b1f7a17e0}, NULL, 8) = 0
getcwd("/root", 256)                    = 6
lstat("/root/demo.py", {st_mode=S_IFREG|0644, st_size=110, ...}) = 0
stat("demo.py", {st_mode=S_IFREG|0644, st_size=110, ...}) = 0
open("demo.py", O_RDONLY)               = 3
lseek(3, -22, SEEK_END)                 = 88
lseek(3, 0, SEEK_CUR)                   = 88
read(3, "(n - 1)\nfibonacci(40)\n", 1024) = 22
read(3, "", 2048)                       = 0
lseek(3, 0, SEEK_CUR)                   = 110
lseek(3, 0, SEEK_SET)                   = 0
read(3, "def fibonacci(n):\n    if n < 2:\n"..., 1024) = 110
read(3, "", 2048)                       = 0
close(3)                                = 0
stat("demo.py", {st_mode=S_IFREG|0644, st_size=110, ...}) = 0
open("demo.py", O_RDONLY)               = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=110, ...}) = 0
read(3, "def fibonacci(n):\n    if n < 2:\n"..., 8192) = 110
read(3, "", 8192)                       = 0
read(3, "", 8192)                       = 0
close(3)                                = 0
brk(0x1943000)                          = 0x1943000
brk(0x1964000)                          = 0x1964000
brk(0x1985000)                          = 0x1985000
mmap(NULL, 528384, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f3b16e0d000
brk(0x19a6000)                          = 0x19a6000
brk(0x19c7000)                          = 0x19c7000
brk(0x19e8000)                          = 0x19e8000
brk(0x1a09000)                          = 0x1a09000
open("/proc/meminfo", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f3b24583000
read(3, "MemTotal:        1906900 kB\nMemF"..., 1024) = 1024
close(3)                                = 0
munmap(0x7f3b24583000, 4096)            = 0
mmap(NULL, 1515520, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f3b16c9b000
munmap(0x7f3b16c9b000, 1515520)         = 0
brk(0x1a2a000)                          = 0x1a2a000
brk(0x1abc000)                          = 0x1abc000
brk(0x1add000)                          = 0x1add000
brk(0x1afe000)                          = 0x1afe000
brk(0x1b1f000)                          = 0x1b1f000
brk(0x1b40000)                          = 0x1b40000
brk(0x1b61000)                          = 0x1b61000
brk(0x1b82000)                          = 0x1b82000
brk(0x1ba3000)                          = 0x1ba3000
brk(0x1bc4000)                          = 0x1bc4000
brk(0x1c46000)                          = 0x1c46000
brk(0x1c67000)                          = 0x1c67000
brk(0x1c88000)                          = 0x1c88000
brk(0x1ca9000)                          = 0x1ca9000
brk(0x1cca000)                          = 0x1cca000
brk(0x1ceb000)                          = 0x1ceb000
brk(0x1d0c000)                          = 0x1d0c000
brk(0x1d2d000)                          = 0x1d2d000
brk(0x1d4e000)                          = 0x1d4e000
brk(0x1d6f000)                          = 0x1d6f000
brk(0x1dfc000)                          = 0x1dfc000
brk(0x1e1d000)                          = 0x1e1d000
brk(0x1e3e000)                          = 0x1e3e000
brk(0x1e5f000)                          = 0x1e5f000
brk(0x1e80000)                          = 0x1e80000
brk(0x1ea1000)                          = 0x1ea1000
brk(0x1ec2000)                          = 0x1ec2000
brk(0x1ee3000)                          = 0x1ee3000
brk(0x1f04000)                          = 0x1f04000
brk(0x1f25000)                          = 0x1f25000
brk(0x1fb6000)                          = 0x1fb6000
brk(0x1fd7000)                          = 0x1fd7000
brk(0x1ff8000)                          = 0x1ff8000
brk(0x2019000)                          = 0x2019000
brk(0x203a000)                          = 0x203a000
brk(0x205b000)                          = 0x205b000
brk(0x207c000)                          = 0x207c000
brk(0x209d000)                          = 0x209d000
brk(0x20be000)                          = 0x20be000
brk(0x20df000)                          = 0x20df000
brk(0x216f000)                          = 0x216f000
brk(0x2190000)                          = 0x2190000
brk(0x21b1000)                          = 0x21b1000
brk(0x21d2000)                          = 0x21d2000
brk(0x21f3000)                          = 0x21f3000
brk(0x2214000)                          = 0x2214000
brk(0x2235000)                          = 0x2235000
brk(0x2256000)                          = 0x2256000
brk(0x2277000)                          = 0x2277000
brk(0x2298000)                          = 0x2298000
brk(0x2327000)                          = 0x2327000
brk(0x2348000)                          = 0x2348000
brk(0x2369000)                          = 0x2369000
brk(0x238a000)                          = 0x238a000
brk(0x23ab000)                          = 0x23ab000
brk(0x23cc000)                          = 0x23cc000
brk(0x23ed000)                          = 0x23ed000
brk(0x240e000)                          = 0x240e000
brk(0x242f000)                          = 0x242f000
brk(0x2450000)                          = 0x2450000
brk(0x24db000)                          = 0x24db000
brk(0x24fc000)                          = 0x24fc000
brk(0x251d000)                          = 0x251d000
brk(0x253e000)                          = 0x253e000
brk(0x255f000)                          = 0x255f000
brk(0x2580000)                          = 0x2580000
brk(0x25a1000)                          = 0x25a1000
brk(0x25c2000)                          = 0x25c2000
brk(0x25e3000)                          = 0x25e3000
brk(0x2604000)                          = 0x2604000
brk(0x2694000)                          = 0x2694000
brk(0x26b5000)                          = 0x26b5000
brk(0x26d6000)                          = 0x26d6000
brk(0x26f7000)                          = 0x26f7000
brk(0x2718000)                          = 0x2718000
brk(0x2739000)                          = 0x2739000
brk(0x275a000)                          = 0x275a000
brk(0x277b000)                          = 0x277b000
brk(0x279c000)                          = 0x279c000
brk(0x27bd000)                          = 0x27bd000
brk(0x284d000)                          = 0x284d000
brk(0x286e000)                          = 0x286e000
brk(0x288f000)                          = 0x288f000
brk(0x28b0000)                          = 0x28b0000
brk(0x28d1000)                          = 0x28d1000
brk(0x28f2000)                          = 0x28f2000
brk(0x2913000)                          = 0x2913000
brk(0x2934000)                          = 0x2934000
brk(0x2955000)                          = 0x2955000
brk(0x2976000)                          = 0x2976000
brk(0x2a07000)                          = 0x2a07000
brk(0x2a28000)                          = 0x2a28000
brk(0x2a49000)                          = 0x2a49000
brk(0x2a6a000)                          = 0x2a6a000
brk(0x2a8b000)                          = 0x2a8b000
brk(0x2aac000)                          = 0x2aac000
brk(0x2acd000)                          = 0x2acd000
brk(0x2aee000)                          = 0x2aee000
brk(0x2b0f000)                          = 0x2b0f000
brk(0x2b31000)                          = 0x2b31000
brk(0x2bbd000)                          = 0x2bbd000
brk(0x2bde000)                          = 0x2bde000
brk(0x2bff000)                          = 0x2bff000
brk(0x2c20000)                          = 0x2c20000
brk(0x2c41000)                          = 0x2c41000
brk(0x2c62000)                          = 0x2c62000
brk(0x2c83000)                          = 0x2c83000
brk(0x2ca4000)                          = 0x2ca4000
brk(0x2cc5000)                          = 0x2cc5000
brk(0x2ce6000)                          = 0x2ce6000
brk(0x2d70000)                          = 0x2d70000
brk(0x2d91000)                          = 0x2d91000
brk(0x2db2000)                          = 0x2db2000
brk(0x2dd3000)                          = 0x2dd3000
brk(0x2df4000)                          = 0x2df4000
brk(0x2e15000)                          = 0x2e15000
brk(0x2e36000)                          = 0x2e36000
brk(0x2e57000)                          = 0x2e57000
brk(0x2e78000)                          = 0x2e78000
brk(0x2e99000)                          = 0x2e99000
brk(0x2f2b000)                          = 0x2f2b000
brk(0x2f4c000)                          = 0x2f4c000
brk(0x2f6d000)                          = 0x2f6d000
brk(0x2f8e000)                          = 0x2f8e000
brk(0x2faf000)                          = 0x2faf000
brk(0x2fd0000)                          = 0x2fd0000
brk(0x2ff1000)                          = 0x2ff1000
brk(0x3012000)                          = 0x3012000
brk(0x3033000)                          = 0x3033000
brk(0x3054000)                          = 0x3054000
brk(0x30e4000)                          = 0x30e4000
brk(0x3105000)                          = 0x3105000
brk(0x3126000)                          = 0x3126000
brk(0x3147000)                          = 0x3147000
brk(0x3168000)                          = 0x3168000
brk(0x3189000)                          = 0x3189000
brk(0x31aa000)                          = 0x31aa000
brk(0x31cb000)                          = 0x31cb000
brk(0x31ec000)                          = 0x31ec000
brk(0x320d000)                          = 0x320d000
brk(0x329c000)                          = 0x329c000
brk(0x32bd000)                          = 0x32bd000
brk(0x32de000)                          = 0x32de000
brk(0x32ff000)                          = 0x32ff000
brk(0x3320000)                          = 0x3320000
brk(0x3341000)                          = 0x3341000
brk(0x3362000)                          = 0x3362000
brk(0x3383000)                          = 0x3383000
brk(0x33a4000)                          = 0x33a4000
brk(0x33c5000)                          = 0x33c5000
brk(0x3451000)                          = 0x3451000
brk(0x3472000)                          = 0x3472000
brk(0x3493000)                          = 0x3493000
brk(0x34b4000)                          = 0x34b4000
brk(0x34d5000)                          = 0x34d5000
brk(0x34f6000)                          = 0x34f6000
brk(0x3517000)                          = 0x3517000
brk(0x3538000)                          = 0x3538000
brk(0x3559000)                          = 0x3559000
brk(0x357a000)                          = 0x357a000
brk(0x360a000)                          = 0x360a000
brk(0x362b000)                          = 0x362b000
brk(0x364c000)                          = 0x364c000
brk(0x366d000)                          = 0x366d000
brk(0x368e000)                          = 0x368e000
brk(0x36af000)                          = 0x36af000
brk(0x36d0000)                          = 0x36d0000
brk(0x36f1000)                          = 0x36f1000
brk(0x3712000)                          = 0x3712000
brk(0x3733000)                          = 0x3733000
brk(0x37c3000)                          = 0x37c3000
brk(0x37e4000)                          = 0x37e4000
brk(0x3805000)                          = 0x3805000
brk(0x3826000)                          = 0x3826000
brk(0x3847000)                          = 0x3847000
brk(0x3868000)                          = 0x3868000
brk(0x3889000)                          = 0x3889000
brk(0x38aa000)                          = 0x38aa000
brk(0x38cb000)                          = 0x38cb000
brk(0x38ec000)                          = 0x38ec000
brk(0x3976000)                          = 0x3976000
brk(0x3997000)                          = 0x3997000
brk(0x39b8000)                          = 0x39b8000
brk(0x39d9000)                          = 0x39d9000
brk(0x39fa000)                          = 0x39fa000
brk(0x3a1c000)                          = 0x3a1c000
brk(0x3a3d000)                          = 0x3a3d000
brk(0x3a5e000)                          = 0x3a5e000
brk(0x3a7f000)                          = 0x3a7f000
brk(0x3aa0000)                          = 0x3aa0000
brk(0x3b33000)                          = 0x3b33000
brk(0x3b54000)                          = 0x3b54000
brk(0x3b75000)                          = 0x3b75000
brk(0x3b96000)                          = 0x3b96000
brk(0x3bb7000)                          = 0x3bb7000
brk(0x3bd8000)                          = 0x3bd8000
brk(0x3bf9000)                          = 0x3bf9000
brk(0x3c1a000)                          = 0x3c1a000
brk(0x3c3b000)                          = 0x3c3b000
exit_group(0)                           = ?
+++ exited with 0 +++


由于本人对底层不是很了解,留给一些大神做参考吧! 



你可能感兴趣的:(PyPy 与 Python 的一个小 timeit (一))