Took too long time to start before executing my first line of code

Steven Woody narkewoody at gmail.com
Thu Apr 23 23:01:04 EDT 2015


Hi,

I got a problem and hope your gurus can show me some clues.

I run python on an embedded ARM system.  Everything is fine except that it seems every program need 3s+ time to load -- I mean it took 3s before executing the first line of every program.

I run strace but cannot identify the true problem,  can you have a look at the below strace output and check is there anything unusual?  Thanks in advance.

---cut start---
10:59:51.615872 execve("./a.py", ["./a.py"], [/* 30 vars */]) = 0
10:59:51.629981 brk(0)                  = 0x16000
10:59:51.636587 uname({sys="Linux", node="FFC3", ...}) = 0
10:59:51.644010 access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory)
10:59:51.651538 open("/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3
10:59:51.652945 fstat64(3, {st_mode=S_IFREG|0644, st_size=25193, ...}) = 0
10:59:51.660953 mmap2(NULL, 25193, PROT_READ, MAP_PRIVATE, 3, 0) = 0x400ce000
10:59:51.662309 close(3)                = 0
10:59:51.663520 open("/lib/libgcc_s.so.1", O_RDONLY|O_CLOEXEC) = 3
10:59:51.664978 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0(\0\1\0\0\0(\320\0\0004\0\0\0"..., 512) = 512
10:59:51.671837 fstat64(3, {st_mode=S_IFREG|0755, st_size=133660, ...}) = 0
10:59:51.674480 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x40166000
10:59:51.676166 mmap2(NULL, 165176, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x401a5000
10:59:51.677422 mprotect(0x401c6000, 28672, PROT_NONE) = 0
10:59:51.678618 mmap2(0x401cd000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x20000) = 0x401cd000
10:59:51.679974 close(3)                = 0
10:59:51.686401 open("/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = 3
10:59:51.687826 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0(\0\1\0\0\0\274\201\1\0004\0\0\0"..., 512) = 512
10:59:51.689408 fstat64(3, {st_mode=S_IFREG|0755, st_size=1254532, ...}) = 0
10:59:51.697454 mmap2(NULL, 1295760, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x401ce000
10:59:51.698643 mprotect(0x402fd000, 32768, PROT_NONE) = 0
10:59:51.699771 mmap2(0x40305000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x12f000) = 0x40305000
10:59:51.706489 mmap2(0x40308000, 9616, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x40308000
10:59:51.707888 close(3)                = 0
10:59:51.709232 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x4007f000
10:59:51.715685 set_tls(0x4007f4c0, 0x4007fb98, 0x40112058, 0x4007f4c0, 0x40112058) = 0
10:59:51.718582 mprotect(0x40305000, 8192, PROT_READ) = 0
10:59:51.725269 mprotect(0x40111000, 4096, PROT_READ) = 0
10:59:51.726390 munmap(0x400ce000, 25193) = 0
10:59:51.729425 brk(0)                  = 0x16000
10:59:51.735659 brk(0x37000)            = 0x37000
10:59:51.737164 execve("/bin/python", ["python", "./a.py"], [/* 30 vars */]) = -1 ENOENT (No such file or directory)
10:59:51.746368 execve("/sbin/python", ["python", "./a.py"], [/* 30 vars */]) = -1 ENOENT (No such file or directory)
10:59:51.755206 execve("/usr/bin/python", ["python", "./a.py"], [/* 30 vars */]) = 0
10:59:51.762688 brk(0)                  = 0x11000
10:59:51.763926 uname({sys="Linux", node="FFC3", ...}) = 0
10:59:51.780735 access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory)
10:59:51.782585 open("/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3
10:59:51.784086 fstat64(3, {st_mode=S_IFREG|0644, st_size=25193, ...}) = 0
10:59:51.791800 mmap2(NULL, 25193, PROT_READ, MAP_PRIVATE, 3, 0) = 0x40094000
10:59:51.792826 close(3)                = 0
10:59:51.794020 open("/usr/lib/libpython2.7.so.1.0", O_RDONLY|O_CLOEXEC) = 3
10:59:51.801063 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0(\0\1\0\0\0\344\371\1\0004\0\0\0"..., 512) = 512
10:59:51.802651 fstat64(3, {st_mode=S_IFREG|0555, st_size=5496357, ...}) = 0
10:59:51.805532 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x40198000
10:59:51.806731 mmap2(NULL, 1492672, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x40251000
10:59:51.807986 mprotect(0x4039a000, 28672, PROT_NONE) = 0
10:59:51.809177 mmap2(0x403a1000, 77824, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x148000) = 0x403a1000
10:59:51.815967 mmap2(0x403b4000, 38592, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x403b4000
10:59:51.817451 close(3)                = 0
10:59:51.818641 open("/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = 3
10:59:51.819991 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0(\0\1\0\0\0lZ\0\0004\0\0\0"..., 512) = 512
10:59:51.826883 fstat64(3, {st_mode=S_IFREG|0755, st_size=127839, ...}) = 0
10:59:51.829478 mmap2(NULL, 131624, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x4005e000
10:59:51.830829 mprotect(0x40073000, 32768, PROT_NONE) = 0
10:59:51.832022 mmap2(0x4007b000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x15000) = 0x4007b000
10:59:51.833549 mmap2(0x4007d000, 4648, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x4007d000
10:59:51.834929 close(3)                = 0
10:59:51.841532 open("/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = 3
10:59:51.842964 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0(\0\1\0\0\0\330\n\0\0004\0\0\0"..., 512) = 512
10:59:51.844560 fstat64(3, {st_mode=S_IFREG|0755, st_size=18008, ...}) = 0
10:59:51.852483 mmap2(NULL, 49372, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x400ac000
10:59:51.853680 mprotect(0x400b0000, 28672, PROT_NONE) = 0
10:59:51.854812 mmap2(0x400b7000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x3000) = 0x400b7000
10:59:51.873934 close(3)                = 0
10:59:51.885271 open("/lib/libutil.so.1", O_RDONLY|O_CLOEXEC) = 3
10:59:51.886703 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0(\0\1\0\0\0\200\v\0\0004\0\0\0"..., 512) = 512
10:59:51.888299 fstat64(3, {st_mode=S_IFREG|0755, st_size=13944, ...}) = 0
10:59:51.901166 mmap2(NULL, 45264, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x40041000
10:59:51.902360 mprotect(0x40044000, 28672, PROT_NONE) = 0
10:59:51.903471 mmap2(0x4004b000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x4004b000
10:59:51.904935 close(3)                = 0
10:59:51.916299 open("/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = 3
10:59:51.917663 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0(\0\1\0\0\0\0>\0\0004\0\0\0"..., 512) = 512
10:59:51.919088 fstat64(3, {st_mode=S_IFREG|0755, st_size=632404, ...}) = 0
10:59:51.931764 mmap2(NULL, 663728, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x40199000
10:59:51.932796 mprotect(0x40233000, 28672, PROT_NONE) = 0
10:59:51.933931 mmap2(0x4023a000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x99000) = 0x4023a000
10:59:51.940760 close(3)                = 0
10:59:51.942052 open("/lib/libgcc_s.so.1", O_RDONLY|O_CLOEXEC) = 3
10:59:51.943580 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0(\0\1\0\0\0(\320\0\0004\0\0\0"..., 512) = 512
10:59:51.945513 fstat64(3, {st_mode=S_IFREG|0755, st_size=133660, ...}) = 0
10:59:51.952695 mmap2(NULL, 165176, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x40105000
10:59:51.953894 mprotect(0x40126000, 28672, PROT_NONE) = 0
10:59:51.965338 mmap2(0x4012d000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x20000) = 0x4012d000
10:59:51.966809 close(3)                = 0
10:59:51.968050 open("/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = 3
10:59:51.969479 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0(\0\1\0\0\0\274\201\1\0004\0\0\0"..., 512) = 512
10:59:51.981400 fstat64(3, {st_mode=S_IFREG|0755, st_size=1254532, ...}) = 0
10:59:51.983973 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x4007f000
10:59:51.990703 mmap2(NULL, 1295760, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x403be000
10:59:51.991975 mprotect(0x404ed000, 32768, PROT_NONE) = 0
10:59:51.993173 mmap2(0x404f5000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x12f000) = 0x404f5000
10:59:51.994788 mmap2(0x404f8000, 9616, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x404f8000
10:59:52.001830 close(3)                = 0
10:59:52.003467 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x400a6000
10:59:52.004785 set_tls(0x400a64c0, 0x400a6b98, 0x40104058, 0x400a64c0, 0x40104058) = 0
10:59:52.019136 mprotect(0x404f5000, 8192, PROT_READ) = 0
10:59:52.031126 mprotect(0x4023a000, 4096, PROT_READ) = 0
10:59:52.032551 mprotect(0x4004b000, 4096, PROT_READ) = 0
10:59:52.034079 mprotect(0x400b7000, 4096, PROT_READ) = 0
10:59:52.125865 mprotect(0x4007b000, 4096, PROT_READ) = 0
10:59:52.138885 mprotect(0x40103000, 4096, PROT_READ) = 0
10:59:52.140433 munmap(0x40094000, 25193) = 0
10:59:52.141710 set_tid_address(0x400a6068) = 585
10:59:52.142559 set_robust_list(0x400a6070, 12) = 0
10:59:52.143514 futex(0xbeb2a658, FUTEX_WAKE_PRIVATE, 1) = 0
10:59:52.144609 futex(0xbeb2a658, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 1, NULL, 400a64c0) = -1 EAGAIN (Resource temporarily unavailable)
10:59:52.152502 rt_sigaction(SIGRTMIN, {0x40063510, [], SA_SIGINFO|0x4000000}, NULL, 8) = 0
10:59:52.154524 rt_sigaction(SIGRT_1, {0x400633a4, [], SA_RESTART|SA_SIGINFO|0x4000000}, NULL, 8) = 0
10:59:52.156517 rt_sigprocmask(SIG_UNBLOCK, [RTMIN RT_1], NULL, 8) = 0
10:59:52.157893 getrlimit(RLIMIT_STACK, {rlim_cur=18014398505295872*1024, rlim_max=9223372037928924068}) = 0
10:59:52.166768 ioctl(0, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, {B38400 opost isig icanon echo ...}) = 0
10:59:52.169689 brk(0)                  = 0x11000
10:59:52.175582 brk(0x32000)            = 0x32000
10:59:52.177662 mmap2(NULL, 266240, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x4012e000
10:59:52.186930 open("/proc/meminfo", O_RDONLY|O_CLOEXEC) = 3
10:59:52.188614 fcntl64(3, F_GETFD)     = 0x1 (flags FD_CLOEXEC)
10:59:52.189947 fstat64(3, {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
10:59:52.192805 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x40034000
10:59:52.194001 read(3, "MemTotal:         125156 kB\nMemF"..., 1024) = 924
10:59:52.201908 close(3)                = 0
10:59:52.203061 munmap(0x40034000, 4096) = 0
10:59:52.307599 fstat64(0, {st_mode=S_IFCHR|0620, st_rdev=makedev(136, 0), ...}) = 0
10:59:52.315959 fstat64(0, {st_mode=S_IFCHR|0620, st_rdev=makedev(136, 0), ...}) = 0
10:59:52.318638 fstat64(1, {st_mode=S_IFREG|0644, st_size=10036, ...}) = 0
10:59:52.321577 fstat64(2, {st_mode=S_IFREG|0644, st_size=10111, ...}) = 0
10:59:52.330490 stat64("/bin/python", 0xbeb29448) = -1 ENOENT (No such file or directory)
10:59:52.331843 stat64("/sbin/python", 0xbeb29448) = -1 ENOENT (No such file or directory)
10:59:52.333249 stat64("/usr/bin/python", {st_mode=S_IFREG|0755, st_size=3820, ...}) = 0
10:59:52.341665 readlink("/usr/bin/python", "python2", 4096) = 7
10:59:52.343189 readlink("/usr/bin/python2", "python2.7", 4096) = 9
10:59:52.344770 readlink("/usr/bin/python2.7", 0xbeb29448, 4096) = -1 EINVAL (Invalid argument)
10:59:52.352667 stat64("/usr/bin/Modules/Setup", 0xbeb29448) = -1 ENOENT (No such file or directory)
10:59:52.354200 stat64("/usr/bin/lib/python2.7/os.py", 0xbeb29448) = -1 ENOENT (No such file or directory)
10:59:52.361159 stat64("/usr/bin/lib/python2.7/os.pyc", 0xbeb29448) = -1 ENOENT (No such file or directory)
10:59:52.362849 stat64("/usr/lib/python2.7/os.py", 0xbeb29448) = -1 ENOENT (No such file or directory)
10:59:52.364488 stat64("/usr/lib/python2.7/os.pyc", {st_mode=S_IFREG|0644, st_size=25451, ...}) = 0
10:59:52.367812 stat64("/usr/bin/Modules/Setup", 0xbeb283d8) = -1 ENOENT (No such file or directory)
10:59:52.369337 stat64("/usr/bin/lib/python2.7/lib-dynload", 0xbeb283d8) = -1 ENOENT (No such file or directory)
10:59:52.376348 stat64("/usr/lib/python2.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4176, ...}) = 0
10:59:52.436817 rt_sigaction(SIGPIPE, {SIG_IGN, [], 0x4000000 /* SA_??? */}, {SIG_DFL, [], 0}, 8) = 0
10:59:52.439224 rt_sigaction(SIGXFSZ, {SIG_IGN, [], 0x4000000 /* SA_??? */}, {SIG_DFL, [], 0}, 8) = 0
10:59:52.442631 rt_sigaction(SIGHUP, NULL, {SIG_DFL, [], 0}, 8) = 0
10:59:52.444317 rt_sigaction(SIGINT, NULL, {SIG_DFL, [], 0}, 8) = 0
10:59:52.452262 rt_sigaction(SIGQUIT, NULL, {SIG_DFL, [], 0}, 8) = 0
10:59:52.453949 rt_sigaction(SIGILL, NULL, {SIG_DFL, [], 0}, 8) = 0
10:59:52.461019 rt_sigaction(SIGTRAP, NULL, {SIG_DFL, [], 0}, 8) = 0
10:59:52.462705 rt_sigaction(SIGABRT, NULL, {SIG_DFL, [], 0}, 8) = 0
10:59:52.464314 rt_sigaction(SIGBUS, NULL, {SIG_DFL, [], 0}, 8) = 0
10:59:52.471259 rt_sigaction(SIGFPE, NULL, {SIG_DFL, [], 0}, 8) = 0
10:59:52.472955 rt_sigaction(SIGKILL, NULL, {SIG_DFL, [], 0}, 8) = 0
10:59:52.474729 rt_sigaction(SIGUSR1, NULL, {SIG_DFL, [], 0}, 8) = 0
10:59:52.476690 rt_sigaction(SIGSEGV, NULL, {SIG_DFL, [], 0}, 8) = 0
10:59:52.478300 rt_sigaction(SIGUSR2, NULL, {SIG_DFL, [], 0}, 8) = 0
10:59:52.479841 rt_sigaction(SIGPIPE, NULL, {SIG_IGN, [], 0x4000000 /* SA_??? */}, 8) = 0
10:59:52.486961 rt_sigaction(SIGALRM, NULL, {SIG_DFL, [], 0}, 8) = 0
10:59:52.488643 rt_sigaction(SIGTERM, NULL, {SIG_DFL, [], 0}, 8) = 0
10:59:52.490611 rt_sigaction(SIGSTKFLT, NULL, {SIG_DFL, [], 0}, 8) = 0
10:59:52.492234 rt_sigaction(SIGCHLD, NULL, {SIG_DFL, [], 0}, 8) = 0
10:59:52.493760 rt_sigaction(SIGCONT, NULL, {SIG_DFL, [], 0}, 8) = 0
10:59:52.500979 rt_sigaction(SIGSTOP, NULL, {SIG_DFL, [], 0}, 8) = 0
10:59:52.502674 rt_sigaction(SIGTSTP, NULL, {SIG_DFL, [], 0}, 8) = 0
10:59:52.504362 rt_sigaction(SIGTTIN, NULL, {SIG_DFL, [], 0}, 8) = 0
10:59:52.511371 rt_sigaction(SIGTTOU, NULL, {SIG_DFL, [], 0}, 8) = 0
10:59:52.513068 rt_sigaction(SIGURG, NULL, {SIG_DFL, [], 0}, 8) = 0
10:59:52.514760 rt_sigaction(SIGXCPU, NULL, {SIG_DFL, [], 0}, 8) = 0
10:59:52.521552 rt_sigaction(SIGXFSZ, NULL, {SIG_IGN, [], 0x4000000 /* SA_??? */}, 8) = 0
10:59:52.523259 rt_sigaction(SIGVTALRM, NULL, {SIG_DFL, [], 0}, 8) = 0
10:59:52.524937 rt_sigaction(SIGPROF, NULL, {SIG_DFL, [], 0}, 8) = 0
10:59:52.531960 rt_sigaction(SIGWINCH, NULL, {SIG_DFL, [], 0}, 8) = 0
10:59:52.533648 rt_sigaction(SIGIO, NULL, {SIG_DFL, [], 0}, 8) = 0
10:59:52.540444 rt_sigaction(SIGPWR, NULL, {SIG_DFL, [], 0}, 8) = 0
10:59:52.542135 rt_sigaction(SIGSYS, NULL, {SIG_DFL, [], 0}, 8) = 0
10:59:52.543826 rt_sigaction(SIGRT_2, NULL, {SIG_DFL, [], 0}, 8) = 0
10:59:52.551911 rt_sigaction(SIGRT_3, NULL, {SIG_DFL, [], 0}, 8) = 0
10:59:52.553620 rt_sigaction(SIGRT_4, NULL, {SIG_DFL, [], 0}, 8) = 0
10:59:52.555610 rt_sigaction(SIGRT_5, NULL, {SIG_DFL, [], 0}, 8) = 0
10:59:52.557325 rt_sigaction(SIGRT_6, NULL, {SIG_DFL, [], 0}, 8) = 0
10:59:52.559040 rt_sigaction(SIGRT_7, NULL, {SIG_DFL, [], 0}, 8) = 0
10:59:52.566080 rt_sigaction(SIGRT_8, NULL, {SIG_DFL, [], 0}, 8) = 0
10:59:52.567792 rt_sigaction(SIGRT_9, NULL, {SIG_DFL, [], 0}, 8) = 0
10:59:52.569501 rt_sigaction(SIGRT_10, NULL, {SIG_DFL, [], 0}, 8) = 0
10:59:52.576443 rt_sigaction(SIGRT_11, NULL, {SIG_DFL, [], 0}, 8) = 0
10:59:52.578014 rt_sigaction(SIGRT_12, NULL, {SIG_DFL, [], 0}, 8) = 0
10:59:52.579723 rt_sigaction(SIGRT_13, NULL, {SIG_DFL, [], 0}, 8) = 0
10:59:52.586560 rt_sigaction(SIGRT_14, NULL, {SIG_DFL, [], 0}, 8) = 0
10:59:52.588268 rt_sigaction(SIGRT_15, NULL, {SIG_DFL, [], 0}, 8) = 0
10:59:52.589983 rt_sigaction(SIGRT_16, NULL, {SIG_DFL, [], 0}, 8) = 0
10:59:52.597219 rt_sigaction(SIGRT_17, NULL, {SIG_DFL, [], 0}, 8) = 0
10:59:52.598933 rt_sigaction(SIGRT_18, NULL, {SIG_DFL, [], 0}, 8) = 0
10:59:52.605961 rt_sigaction(SIGRT_19, NULL, {SIG_DFL, [], 0}, 8) = 0
10:59:52.607670 rt_sigaction(SIGRT_20, NULL, {SIG_DFL, [], 0}, 8) = 0
10:59:52.609378 rt_sigaction(SIGRT_21, NULL, {SIG_DFL, [], 0}, 8) = 0
10:59:52.613447 rt_sigaction(SIGRT_22, NULL, {SIG_DFL, [], 0}, 8) = 0
10:59:52.620518 rt_sigaction(SIGRT_23, NULL, {SIG_DFL, [], 0}, 8) = 0
10:59:52.622231 rt_sigaction(SIGRT_24, NULL, {SIG_DFL, [], 0}, 8) = 0
10:59:52.623938 rt_sigaction(SIGRT_25, NULL, {SIG_DFL, [], 0}, 8) = 0
10:59:52.631166 rt_sigaction(SIGRT_26, NULL, {SIG_DFL, [], 0}, 8) = 0
10:59:52.632749 rt_sigaction(SIGRT_27, NULL, {SIG_DFL, [], 0}, 8) = 0
10:59:52.634359 rt_sigaction(SIGRT_28, NULL, {SIG_DFL, [], 0}, 8) = 0
10:59:52.641457 rt_sigaction(SIGRT_29, NULL, {SIG_DFL, [], 0}, 8) = 0
10:59:52.643174 rt_sigaction(SIGRT_30, NULL, {SIG_DFL, [], 0}, 8) = 0
10:59:52.644883 rt_sigaction(SIGRT_31, NULL, {SIG_DFL, [], 0}, 8) = 0
10:59:52.652979 rt_sigaction(SIGRT_32, NULL, {SIG_DFL, [], 0}, 8) = 0
10:59:52.654697 rt_sigaction(SIGINT, {0x40360fe8, [], 0x4000000 /* SA_??? */}, {SIG_DFL, [], 0}, 8) = 0
10:59:52.667000 stat64("/usr/lib/python27.zip", 0xbeb25198) = -1 ENOENT (No such file or directory)
10:59:52.668589 stat64("/usr/lib", {st_mode=S_IFDIR|0755, st_size=36464, ...}) = 0
10:59:52.677192 stat64("/usr/lib/python27.zip", 0xbeb26150) = -1 ENOENT (No such file or directory)
10:59:52.679055 stat64("/usr/lib/python2.7/", {st_mode=S_IFDIR|0755, st_size=16328, ...}) = 0
10:59:52.687407 stat64("/usr/lib/python2.7/", {st_mode=S_IFDIR|0755, st_size=16328, ...}) = 0
10:59:52.695694 stat64("/usr/lib/python2.7/site", 0xbeb26298) = -1 ENOENT (No such file or directory)
10:59:52.697409 open("/usr/lib/python2.7/site.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:52.699088 open("/usr/lib/python2.7/sitemodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:52.701355 open("/usr/lib/python2.7/site.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:52.702891 open("/usr/lib/python2.7/site.pyc", O_RDONLY|O_LARGEFILE) = 3
10:59:52.704535 fstat64(3, {st_mode=S_IFREG|0644, st_size=19815, ...}) = 0
10:59:52.712434 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x4016f000
10:59:52.713623 read(3, "\3\363\r\n\372\212\351Sc\0\0\0\0\0\0\0\0\3\0\0\0@\0\0\0sy\1\0\0d\0"..., 4096) = 4096
10:59:52.715643 fstat64(3, {st_mode=S_IFREG|0644, st_size=19815, ...}) = 0
10:59:52.718443 read(3, "dir\n    (especially for Guido :-"..., 12288) = 12288
10:59:52.725875 read(3, "\0\0\0C\0\0\0s&\0\0\0d\1\0}\0\0|\0\0d\1\0k\3\0r\"\0t\0"..., 4096) = 3431
10:59:52.727555 read(3, "", 4096)       = 0
10:59:52.743683 stat64("/usr/lib/python2.7/os", 0xbeb23fa0) = -1 ENOENT (No such file or directory)
10:59:52.751477 open("/usr/lib/python2.7/os.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:52.753110 open("/usr/lib/python2.7/osmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:52.754796 open("/usr/lib/python2.7/os.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:52.761840 open("/usr/lib/python2.7/os.pyc", O_RDONLY|O_LARGEFILE) = 4
10:59:52.763399 fstat64(4, {st_mode=S_IFREG|0644, st_size=25451, ...}) = 0
10:59:52.771312 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x4023c000
10:59:52.772455 read(4, "\3\363\r\n\372\212\351Sc\0\0\0\0\0\0\0\0\16\0\0\0@\0\0\0s\372\6\0\0d\0"..., 4096) = 4096
10:59:52.774039 fstat64(4, {st_mode=S_IFREG|0644, st_size=25451, ...}) = 0
10:59:52.779857 brk(0x58000)            = 0x58000
10:59:52.786546 read(4, "e.\n\n    N(\t\0\0\0R\t\0\0\0t\5\0\0\0splitt\6\0"..., 20480) = 20480
10:59:52.788644 read(4, "\0t\6\0\0\0extendR\31\0\0\0t\6\0\0\0ntpathR\32\0\0"..., 4096) = 875
10:59:52.795730 read(4, "", 4096)       = 0
10:59:52.804434 mmap2(NULL, 266240, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x404fb000
10:59:52.808060 brk(0x52000)            = 0x52000
10:59:52.846269 stat64("/usr/lib/python2.7/posixpath", 0xbeb21ca8) = -1 ENOENT (No such file or directory)
10:59:52.848009 open("/usr/lib/python2.7/posixpath.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:52.849810 open("/usr/lib/python2.7/posixpathmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:52.857030 open("/usr/lib/python2.7/posixpath.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:52.858641 open("/usr/lib/python2.7/posixpath.pyc", O_RDONLY|O_LARGEFILE) = 5
10:59:52.860754 fstat64(5, {st_mode=S_IFREG|0644, st_size=11148, ...}) = 0
10:59:52.863379 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x4062f000
10:59:52.864630 read(5, "\3\363\r\n\372\212\351Sc\0\0\0\0\0\0\0\0&\0\0\0@\0\0\0s\345\1\0\0d\0"..., 4096) = 4096
10:59:52.911769 fstat64(5, {st_mode=S_IFREG|0644, st_size=11148, ...}) = 0
10:59:52.914486 read(5, "(\0\0\0\0(\0\0\0\0s\37\0\0\0/usr/lib/python2."..., 4096) = 4096
10:59:52.925593 read(5, "\4\0D]k\0}\6\0|\6\0d\r\0k\6\0r\242\0q\212\0n\0\0|\6\0d\t"..., 4096) = 2956
10:59:52.927171 read(5, "", 4096)       = 0
10:59:52.943151 stat64("/usr/lib/python2.7/stat", 0xbeb1f9b0) = -1 ENOENT (No such file or directory)
10:59:52.944780 open("/usr/lib/python2.7/stat.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:52.951998 open("/usr/lib/python2.7/statmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:52.953825 open("/usr/lib/python2.7/stat.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:52.965536 open("/usr/lib/python2.7/stat.pyc", O_RDONLY|O_LARGEFILE) = 6
10:59:52.967174 fstat64(6, {st_mode=S_IFREG|0644, st_size=2731, ...}) = 0
10:59:52.969583 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x406d6000
10:59:52.990963 read(6, "\3\363\r\n\372\212\351Sc\0\0\0\0\0\0\0\0\1\0\0\0@\0\0\0s{\1\0\0d\0"..., 4096) = 2731
10:59:52.992772 fstat64(6, {st_mode=S_IFREG|0644, st_size=2731, ...}) = 0
10:59:53.000539 read(6, "", 4096)       = 0
10:59:53.003955 close(6)                = 0
10:59:53.020230 munmap(0x406d6000, 4096) = 0
10:59:53.021758 stat64("/usr/lib/python2.7/genericpath", 0xbeb1f9b0) = -1 ENOENT (No such file or directory)
10:59:53.023450 open("/usr/lib/python2.7/genericpath.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:53.040364 open("/usr/lib/python2.7/genericpathmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:53.042166 open("/usr/lib/python2.7/genericpath.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:53.043925 open("/usr/lib/python2.7/genericpath.pyc", O_RDONLY|O_LARGEFILE) = 6
10:59:53.060892 fstat64(6, {st_mode=S_IFREG|0644, st_size=3243, ...}) = 0
10:59:53.063442 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x400c6000
10:59:53.064644 read(6, "\3\363\r\n\372\212\351Sc\0\0\0\0\0\0\0\0\10\0\0\0@\0\0\0s\221\0\0\0d\0"..., 4096) = 3243
10:59:53.078541 fstat64(6, {st_mode=S_IFREG|0644, st_size=3243, ...}) = 0
10:59:53.086444 read(6, "", 4096)       = 0
10:59:53.089783 close(6)                = 0
10:59:53.106070 munmap(0x400c6000, 4096) = 0
10:59:53.107596 stat64("/usr/lib/python2.7/warnings", 0xbeb1f9b0) = -1 ENOENT (No such file or directory)
10:59:53.109100 open("/usr/lib/python2.7/warnings.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:53.125898 open("/usr/lib/python2.7/warningsmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:53.127693 open("/usr/lib/python2.7/warnings.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:53.129383 open("/usr/lib/python2.7/warnings.pyc", O_RDONLY|O_LARGEFILE) = 6
10:59:53.142326 fstat64(6, {st_mode=S_IFREG|0644, st_size=13104, ...}) = 0
10:59:53.144869 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x4004d000
10:59:53.191557 read(6, "\3\363\r\n\372\212\351Sc\0\0\0\0\0\0\0\0\7\0\0\0@\0\0\0sS\2\0\0d\0"..., 4096) = 4096
10:59:53.193198 fstat64(6, {st_mode=S_IFREG|0644, st_size=13104, ...}) = 0
10:59:53.201447 read(6, "efaults\6\0\0\0modules\4\0\0\0once(\7\0\0\0R"..., 8192) = 8192
10:59:53.203338 read(6, "pyt\10\0\0\0__exit__c\1\0\0s\10\0\0\0\0\1\t\1\23\1\17\1"..., 4096) = 816
10:59:53.204938 read(6, "", 4096)       = 0
10:59:53.211552 brk(0x7c000)            = 0x7c000
10:59:53.227447 stat64("/usr/lib/python2.7/linecache", 0xbeb1d6b8) = -1 ENOENT (No such file or directory)
10:59:53.229184 open("/usr/lib/python2.7/linecache.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:53.236098 open("/usr/lib/python2.7/linecachemodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:53.237963 open("/usr/lib/python2.7/linecache.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:53.239719 open("/usr/lib/python2.7/linecache.pyc", O_RDONLY|O_LARGEFILE) = 7
10:59:53.246944 fstat64(7, {st_mode=S_IFREG|0644, st_size=3199, ...}) = 0
10:59:53.249361 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x40170000
10:59:53.255782 read(7, "\3\363\r\n\372\212\351Sc\0\0\0\0\0\0\0\0\3\0\0\0@\0\0\0sp\0\0\0d\0"..., 4096) = 3199
10:59:53.257518 fstat64(7, {st_mode=S_IFREG|0644, st_size=3199, ...}) = 0
10:59:53.265459 read(7, "", 4096)       = 0
10:59:53.268494 close(7)                = 0
10:59:53.269607 munmap(0x40170000, 4096) = 0
10:59:53.271752 stat64("/usr/lib/python2.7/types", 0xbeb1d6b8) = -1 ENOENT (No such file or directory)
10:59:53.273517 open("/usr/lib/python2.7/types.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:53.275532 open("/usr/lib/python2.7/typesmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:53.281264 open("/usr/lib/python2.7/types.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:53.282960 open("/usr/lib/python2.7/types.pyc", O_RDONLY|O_LARGEFILE) = 7
10:59:53.284634 fstat64(7, {st_mode=S_IFREG|0644, st_size=2494, ...}) = 0
10:59:53.292394 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x400fc000
10:59:53.293643 read(7, "\3\363\r\n\372\212\351Sc\0\0\0\0\0\0\0\0\5\0\0\0@\0\0\0s/\2\0\0d\0"..., 4096) = 2494
10:59:53.300966 fstat64(7, {st_mode=S_IFREG|0644, st_size=2494, ...}) = 0
10:59:53.303594 read(7, "", 4096)       = 0
10:59:53.309327 close(7)                = 0
10:59:53.314029 munmap(0x400fc000, 4096) = 0
10:59:53.330734 close(6)                = 0
10:59:53.331861 munmap(0x4004d000, 4096) = 0
10:59:53.334110 close(5)                = 0
10:59:53.335369 munmap(0x4062f000, 4096) = 0
10:59:53.348052 stat64("/usr/lib/python2.7/UserDict", 0xbeb21ca8) = -1 ENOENT (No such file or directory)
10:59:53.349729 open("/usr/lib/python2.7/UserDict.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:53.352812 open("/usr/lib/python2.7/UserDictmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:53.354604 open("/usr/lib/python2.7/UserDict.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:53.361638 open("/usr/lib/python2.7/UserDict.pyc", O_RDONLY|O_LARGEFILE) = 5
10:59:53.363200 fstat64(5, {st_mode=S_IFREG|0644, st_size=8730, ...}) = 0
10:59:53.371123 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x400c9000
10:59:53.372322 read(5, "\3\363\r\n\371\212\351Sc\0\0\0\0\0\0\0\0\3\0\0\0@\0\0\0sb\0\0\0d\0"..., 4096) = 4096
10:59:53.374077 fstat64(5, {st_mode=S_IFREG|0644, st_size=8730, ...}) = 0
10:59:53.382040 read(5, "\0\1c\2\0\0\0\2\0\0\0\2\0\0\0C\0\0\0s\r\0\0\0|\1\0|\0\0j\0"..., 4096) = 4096
10:59:53.383673 read(5, "/UserDict.pyR\r\0\0\0\255\0\0\0s\n\0\0\0\0\1\f\1\4\1"..., 4096) = 538
10:59:53.385495 read(5, "", 4096)       = 0
10:59:53.410975 stat64("/usr/lib/python2.7/_abcoll", 0xbeb1f9b0) = -1 ENOENT (No such file or directory)
10:59:53.412655 open("/usr/lib/python2.7/_abcoll.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:53.414447 open("/usr/lib/python2.7/_abcollmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:53.416600 open("/usr/lib/python2.7/_abcoll.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:53.418046 open("/usr/lib/python2.7/_abcoll.pyc", O_RDONLY|O_LARGEFILE) = 6
10:59:53.419652 fstat64(6, {st_mode=S_IFREG|0644, st_size=21727, ...}) = 0
10:59:53.427736 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x40191000
10:59:53.428988 read(6, "\3\363\r\n\371\212\351Sc\0\0\0\0\0\0\0\0\20\0\0\0@\0\0\0sI\2\0\0d\0"..., 4096) = 4096
10:59:53.431046 fstat64(6, {st_mode=S_IFREG|0644, st_size=21727, ...}) = 0
10:59:53.433517 read(6, "C\0\0\0s&\0\0\0|\0\0t\0\0k\10\0r\"\0t\1\0|\1\0d\1\0\203\2"..., 16384) = 16384
10:59:53.435577 read(6, "\2\0\30<q\35\0Wd\0\0S(\3\0\0\0Ni\2\0\0\0i\1\0\0\0(\2\0\0"..., 4096) = 1247
10:59:53.441604 read(6, "", 4096)       = 0
10:59:53.461808 stat64("/usr/lib/python2.7/abc", 0xbeb1d6b8) = -1 ENOENT (No such file or directory)
10:59:53.463433 open("/usr/lib/python2.7/abc.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:53.465507 open("/usr/lib/python2.7/abcmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:53.467243 open("/usr/lib/python2.7/abc.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:53.468876 open("/usr/lib/python2.7/abc.pyc", O_RDONLY|O_LARGEFILE) = 7
10:59:53.475783 fstat64(7, {st_mode=S_IFREG|0644, st_size=6121, ...}) = 0
10:59:53.478324 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x4053c000
10:59:53.479594 read(7, "\3\363\r\n\371\212\351Sc\0\0\0\0\0\0\0\0\3\0\0\0@\0\0\0s}\0\0\0d\0"..., 4096) = 4096
10:59:53.481626 fstat64(7, {st_mode=S_IFREG|0644, st_size=6121, ...}) = 0
10:59:53.484343 read(7, "egisteri\0\0\0s\20\0\0\0\0\2\30\1\17\1\17\1\4\3\17\2\17\1\20\1"..., 4096) = 2025
10:59:53.491322 read(7, "", 4096)       = 0
10:59:53.495939 stat64("/usr/lib/python2.7/_weakrefset", 0xbeb1b3c0) = -1 ENOENT (No such file or directory)
10:59:53.497678 open("/usr/lib/python2.7/_weakrefset.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:53.499537 open("/usr/lib/python2.7/_weakrefsetmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:53.506733 open("/usr/lib/python2.7/_weakrefset.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:53.508479 open("/usr/lib/python2.7/_weakrefset.pyc", O_RDONLY|O_LARGEFILE) = 8
10:59:53.512431 fstat64(8, {st_mode=S_IFREG|0644, st_size=10190, ...}) = 0
10:59:53.515482 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x405bf000
10:59:53.516550 read(8, "\3\363\r\n\371\212\351Sc\0\0\0\0\0\0\0\0\3\0\0\0@\0\0\0sI\0\0\0d\0"..., 4096) = 4096
10:59:53.518306 fstat64(8, {st_mode=S_IFREG|0644, st_size=10190, ...}) = 0
10:59:53.526400 read(8, "\0\0\0C\0\0\0s0\0\0\0|\0\0j\0\0r\26\0|\0\0j\1\0\203\0\0\1n"..., 4096) = 4096
10:59:53.528026 read(8, "on2.7/_weakrefset.pys\t\0\0\0<genexp"..., 4096) = 1998
10:59:53.529531 read(8, "", 4096)       = 0
10:59:53.543663 close(8)                = 0
10:59:53.544738 munmap(0x405bf000, 4096) = 0
10:59:53.560391 close(7)                = 0
10:59:53.561459 munmap(0x4053c000, 4096) = 0
10:59:53.751994 close(6)                = 0
10:59:53.753125 munmap(0x40191000, 4096) = 0
10:59:53.762751 close(5)                = 0
10:59:53.763925 munmap(0x400c9000, 4096) = 0
10:59:53.772564 stat64("/usr/lib/python2.7/copy_reg", 0xbeb21ca8) = -1 ENOENT (No such file or directory)
10:59:53.774253 open("/usr/lib/python2.7/copy_reg.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:53.781073 open("/usr/lib/python2.7/copy_regmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:53.782693 open("/usr/lib/python2.7/copy_reg.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:53.784384 open("/usr/lib/python2.7/copy_reg.pyc", O_RDONLY|O_LARGEFILE) = 5
10:59:53.791370 fstat64(5, {st_mode=S_IFREG|0644, st_size=5091, ...}) = 0
10:59:53.793925 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x400fc000
10:59:53.800635 read(5, "\3\363\r\n\372\212\351Sc\0\0\0\0\0\0\0\0\5\0\0\0@\0\0\0s\326\0\0\0d\0"..., 4096) = 4096
10:59:53.802398 fstat64(5, {st_mode=S_IFREG|0644, st_size=5091, ...}) = 0
10:59:53.810409 read(5, "\0\0\0t\3\0\0\0intt\n\0\0\0ValueErrort\23\0\0\0_"..., 4096) = 995
10:59:53.812006 read(5, "", 4096)       = 0
10:59:53.825483 close(5)                = 0
10:59:53.826712 munmap(0x400fc000, 4096) = 0
10:59:53.828736 close(4)                = 0
10:59:53.829797 munmap(0x4023c000, 4096) = 0
10:59:53.836804 stat64("/usr/lib/python2.7/traceback", 0xbeb23fa0) = -1 ENOENT (No such file or directory)
10:59:53.838277 open("/usr/lib/python2.7/traceback.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:53.839932 open("/usr/lib/python2.7/tracebackmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:53.847299 open("/usr/lib/python2.7/traceback.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:53.848978 open("/usr/lib/python2.7/traceback.pyc", O_RDONLY|O_LARGEFILE) = 4
10:59:53.856003 fstat64(4, {st_mode=S_IFREG|0644, st_size=11583, ...}) = 0
10:59:53.858558 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x40018000
10:59:53.859750 read(4, "\3\363\r\n\372\212\351Sc\0\0\0\0\0\0\0\0\16\0\0\0@\0\0\0sB\1\0\0d\0"..., 4096) = 4096
10:59:53.866795 fstat64(4, {st_mode=S_IFREG|0644, st_size=11583, ...}) = 0
10:59:53.869550 read(4, "R!\0\0\0i\0\0\0\0i\1\0\0\0N(\20\0\0\0R\24\0\0\0R\"\0\0\0R"..., 4096) = 4096
10:59:53.885604 read(4, "Xd\1\0S(\2\0\0\0s\276\0\0\0Shorthand for 'pr"..., 4096) = 3391
10:59:53.887357 read(4, "", 4096)       = 0
10:59:53.927434 close(4)                = 0
10:59:53.931115 munmap(0x40018000, 4096) = 0
10:59:54.007254 geteuid32()             = 0
10:59:54.008458 getuid32()              = 0
10:59:54.009757 getegid32()             = 0
10:59:54.016058 getgid32()              = 0
10:59:54.017597 stat64("/usr/lib/python2.7", {st_mode=S_IFDIR|0755, st_size=16328, ...}) = 0
10:59:54.051064 stat64("/usr/lib/python2.7", {st_mode=S_IFDIR|0755, st_size=16328, ...}) = 0
10:59:54.054070 stat64("/usr/lib/python2.7/sysconfig", 0xbeb23c00) = -1 ENOENT (No such file or directory)
10:59:54.066047 open("/usr/lib/python2.7/sysconfig.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:54.067804 open("/usr/lib/python2.7/sysconfigmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:54.069608 open("/usr/lib/python2.7/sysconfig.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:54.083590 open("/usr/lib/python2.7/sysconfig.pyc", O_RDONLY|O_LARGEFILE) = 4
10:59:54.085542 fstat64(4, {st_mode=S_IFREG|0644, st_size=17639, ...}) = 0
10:59:54.088166 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x4003c000
10:59:54.089427 read(4, "\3\363\r\n\372\212\351Sc\0\0\0\0\0\0\0\0\10\0\0\0@\0\0\0s\252\4\0\0d\0"..., 4096) = 4096
10:59:54.101607 fstat64(4, {st_mode=S_IFREG|0644, st_size=17639, ...}) = 0
10:59:54.104225 read(4, "\20\2\35\1\17\1\25\1#\1c\0\0\0\0\0\0\0\0\2\0\0\0C\0\0\0s\32\0\0\0"..., 12288) = 12288
10:59:54.141395 read(4, "t\1\0\0\0it\1\0\0\0jt\4\0\0\0lookt\6\0\0\0osname"..., 4096) = 1255
10:59:54.143004 read(4, "", 4096)       = 0
10:59:54.163370 lstat64("/usr", {st_mode=S_IFDIR|0755, st_size=888, ...}) = 0
10:59:54.172462 lstat64("/usr/bin", {st_mode=S_IFDIR|0755, st_size=29640, ...}) = 0
10:59:54.176333 lstat64("/usr/bin/python", {st_mode=S_IFLNK|0777, st_size=7, ...}) = 0
10:59:54.179709 lstat64("/usr/bin/python", {st_mode=S_IFLNK|0777, st_size=7, ...}) = 0
10:59:54.188265 readlink("/usr/bin/python", "python2", 4096) = 7
10:59:54.192266 lstat64("/usr/bin/python2", {st_mode=S_IFLNK|0777, st_size=9, ...}) = 0
10:59:54.201256 readlink("/usr/bin/python2", "python2.7", 4096) = 9
10:59:54.203781 lstat64("/usr/bin/python2.7", {st_mode=S_IFREG|0755, st_size=3820, ...}) = 0
10:59:54.213086 lstat64("/usr", {st_mode=S_IFDIR|0755, st_size=888, ...}) = 0
10:59:54.221839 lstat64("/usr/bin", {st_mode=S_IFDIR|0755, st_size=29640, ...}) = 0
10:59:54.225890 lstat64("/usr/bin/python2.7", {st_mode=S_IFREG|0755, st_size=3820, ...}) = 0
10:59:54.236036 stat64("/usr/bin/Modules/Setup.dist", 0xbeb258e0) = -1 ENOENT (No such file or directory)
10:59:54.239046 stat64("/usr/bin/Modules/Setup.local", 0xbeb258e0) = -1 ENOENT (No such file or directory)
10:59:54.242133 close(4)                = 0
10:59:54.243247 munmap(0x4003c000, 4096) = 0
10:59:54.244746 stat64("/usr/lib/python2.7/re", 0xbeb239d0) = -1 ENOENT (No such file or directory)
10:59:54.251861 open("/usr/lib/python2.7/re.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:54.253536 open("/usr/lib/python2.7/remodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:54.260529 open("/usr/lib/python2.7/re.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:54.262207 open("/usr/lib/python2.7/re.pyc", O_RDONLY|O_LARGEFILE) = 4
10:59:54.263769 fstat64(4, {st_mode=S_IFREG|0644, st_size=13052, ...}) = 0
10:59:54.271628 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x40096000
10:59:54.272633 read(4, "\3\363\r\n\372\212\351Sc\0\0\0\0\0\0\0\0\27\0\0\0@\0\0\0s'\2\0\0d\0"..., 4096) = 4096
10:59:54.274339 fstat64(4, {st_mode=S_IFREG|0644, st_size=13052, ...}) = 0
10:59:54.282299 read(4, "  Match a regular expression pat"..., 8192) = 8192
10:59:54.283984 read(4, "\1(\4\0\0\0t\10\0\0\0__name__t\n\0\0\0__module"..., 4096) = 764
10:59:54.291730 read(4, "", 4096)       = 0
10:59:54.301882 stat64("/usr/lib/python2.7/sre_compile", 0xbeb216d8) = -1 ENOENT (No such file or directory)
10:59:54.303699 open("/usr/lib/python2.7/sre_compile.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:54.305883 open("/usr/lib/python2.7/sre_compilemodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:54.307734 open("/usr/lib/python2.7/sre_compile.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:54.309477 open("/usr/lib/python2.7/sre_compile.pyc", O_RDONLY|O_LARGEFILE) = 5
10:59:54.316530 fstat64(5, {st_mode=S_IFREG|0644, st_size=11029, ...}) = 0
10:59:54.319087 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x40179000
10:59:54.324158 read(5, "\3\363\r\n\372\212\351Sc\0\0\0\0\0\0\0\0\5\0\0\0@\0\0\0sn\1\0\0d\0"..., 4096) = 4096
10:59:54.330685 fstat64(5, {st_mode=S_IFREG|0644, st_size=11029, ...}) = 0
10:59:54.337740 read(5, "\1\f\1\21\1\f\1\16\1\f\0\n\1\20\1\r\2\26\1\f\1\f\1\n\1\24\1\16\1\27\1\f"..., 4096) = 4096
10:59:54.339442 read(5, "\4\0k\10\0rb\1|\t\0|\n\0|\v\0f\2\0\203\1\0\1q`\2|\n\0t\7"..., 4096) = 2837
10:59:54.341475 read(5, "", 4096)       = 0
10:59:54.353840 stat64("/usr/lib/python2.7/sre_parse", 0xbeb1f3e0) = -1 ENOENT (No such file or directory)
10:59:54.355866 open("/usr/lib/python2.7/sre_parse.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:54.357406 open("/usr/lib/python2.7/sre_parsemodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:54.359202 open("/usr/lib/python2.7/sre_parse.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:54.366269 open("/usr/lib/python2.7/sre_parse.pyc", O_RDONLY|O_LARGEFILE) = 6
10:59:54.368003 fstat64(6, {st_mode=S_IFREG|0644, st_size=19028, ...}) = 0
10:59:54.370899 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x4023c000
10:59:54.372077 read(6, "\3\363\r\n\372\212\351Sc\0\0\0\0\0\0\0\0\4\0\0\0@\0\0\0s\312\2\0\0d\0"..., 4096) = 4096
10:59:54.373829 fstat64(6, {st_mode=S_IFREG|0644, st_size=19028, ...}) = 0
10:59:54.382005 read(6, "\3\0\0\0\3\0\0\0\3\0\0\0C\0\0\0s\27\0\0\0|\0\0j\0\0j\1\0|\1"..., 12288) = 12288
10:59:54.384028 read(6, "q\234\1\4t\r\0k\n\0r\227\1\1\1\1t\16\0d\16\0\202\2\0q\234\1Xn\1\0"..., 4096) = 2644
10:59:54.391651 read(6, "", 4096)       = 0
10:59:54.394320 mmap2(NULL, 266240, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x4053c000
10:59:54.401276 munmap(0x4053c000, 266240) = 0
10:59:54.402561 brk(0xcf000)            = 0xcf000
10:59:54.408524 stat64("/usr/lib/python2.7/sre_constants", 0xbeb1d0e8) = -1 ENOENT (No such file or directory)
10:59:54.415617 open("/usr/lib/python2.7/sre_constants.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:54.417471 open("/usr/lib/python2.7/sre_constantsmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:54.419397 open("/usr/lib/python2.7/sre_constants.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:54.426419 open("/usr/lib/python2.7/sre_constants.pyc", O_RDONLY|O_LARGEFILE) = 7
10:59:54.428208 fstat64(7, {st_mode=S_IFREG|0644, st_size=6078, ...}) = 0
10:59:54.436079 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x400fc000
10:59:54.437275 read(7, "\3\363\r\n\372\212\351Sc\0\0\0\0\0\0\0\0 \0\0\0@\0\0\0s\357\4\0\0d\0"..., 4096) = 4096
10:59:54.439033 fstat64(7, {st_mode=S_IFREG|0644, st_size=6078, ...}) = 0
10:59:54.447172 read(7, "`\0\0\0t\7\0\0\0__doc__t\5\0\0\0MAGICt\t\0\0\0M"..., 4096) = 1982
10:59:54.448813 read(7, "", 4096)       = 0
10:59:54.461799 close(7)                = 0
10:59:54.462982 munmap(0x400fc000, 4096) = 0
10:59:54.474795 close(6)                = 0
10:59:54.481228 munmap(0x4023c000, 4096) = 0
10:59:54.484872 close(5)                = 0
10:59:54.492112 munmap(0x40179000, 4096) = 0
10:59:54.498876 close(4)                = 0
10:59:54.505385 munmap(0x40096000, 4096) = 0
10:59:54.696826 open("/usr/lib/python2.7/config/Makefile", O_RDONLY|O_LARGEFILE) = 4
10:59:54.698557 fstat64(4, {st_mode=S_IFREG|0644, st_size=47787, ...}) = 0
10:59:54.701798 fstat64(4, {st_mode=S_IFREG|0644, st_size=47787, ...}) = 0
10:59:54.704426 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x400cf000
10:59:54.710838 read(4, "# Generated automatically from M"..., 8192) = 8192
10:59:54.713778 read(4, "################################"..., 4096) = 4096
10:59:54.720458 read(4, "ODOBJS)\n\n#######################"..., 4096) = 4096
10:59:54.723309 read(4, "MEWORKDIR)/Versions/$(VERSION)/R"..., 4096) = 4096
10:59:54.724992 read(4, "(srcdir)/Objects/stringlib/parti"..., 4096) = 4096
10:59:54.733154 read(4, ":\tall platform\n\t\tif [ `arch` != "..., 4096) = 4096
10:59:54.734722 read(4, "true; \\\n\t\tfi; \\\n\tdone\n\t$(INSTALL"..., 4096) = 4096
10:59:54.742615 read(4, " $(RUNSHARED) \\\n\t\t$(PYTHON_FOR_B"..., 4096) = 4096
10:59:54.744379 read(4, "modules\n# This goes into $(exec_"..., 4096) = 4096
10:59:54.747375 read(4, "reindent on the library\nreindent"..., 4096) = 4096
10:59:54.748919 read(4, "ules appended by makedepend\n\nMod"..., 4096) = 2731
10:59:54.755687 read(4, "", 4096)       = 0
10:59:54.757805 close(4)                = 0
10:59:54.758920 munmap(0x400cf000, 4096) = 0
10:59:55.431812 open("/usr/lib/python2.7/config/pyconfig.h", O_RDONLY|O_LARGEFILE) = 4
10:59:55.433593 fstat64(4, {st_mode=S_IFREG|0644, st_size=35994, ...}) = 0
10:59:55.491235 fstat64(4, {st_mode=S_IFREG|0644, st_size=35994, ...}) = 0
10:59:55.493705 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x40004000
10:59:55.494955 read(4, "/* pyconfig.h.  Generated from p"..., 4096) = 4096
10:59:55.528775 read(4, "ES_IS_TERM_RESIZED 1\n\n/* Define "..., 4096) = 4096
10:59:55.567406 read(4, "AME_R_3_ARG */\n\n/* Define this i"..., 4096) = 4096
10:59:55.603537 read(4, "e. */\n#define HAVE_LINUX_NETLINK"..., 4096) = 4096
10:59:55.644366 read(4, " 1\n\n/* Define if you have the 's"..., 4096) = 4096
10:59:55.681463 read(4, "/\n\n/* Define to 1 if you have th"..., 4096) = 4096
10:59:55.718442 read(4, "* Define to 1 if you have the `u"..., 4096) = 4096
10:59:55.756324 read(4, "zeof. */\n#define SIZEOF_TIME_T 4"..., 4096) = 4096
10:59:55.786556 read(4, "*/\n/* #undef _OSF_SOURCE */\n\n/* "..., 4096) = 3226
10:59:55.808510 read(4, "", 4096)       = 0
10:59:55.811180 close(4)                = 0
10:59:55.812238 munmap(0x40004000, 4096) = 0
10:59:55.831166 stat64("/root/.local/lib/python2.7/site-packages", 0xbeb27e90) = -1 ENOENT (No such file or directory)
10:59:55.834696 stat64("/usr/lib/python2.7/site-packages", {st_mode=S_IFDIR|0755, st_size=1704, ...}) = 0
10:59:55.839712 openat(AT_FDCWD, "/usr/lib/python2.7/site-packages", O_RDONLY|O_NONBLOCK|O_LARGEFILE|O_DIRECTORY|O_CLOEXEC) = 4
10:59:55.841833 getdents64(4, /* 22 entries */, 32768) = 824
10:59:55.855717 getdents64(4, /* 0 entries */, 32768) = 0
10:59:55.856825 close(4)                = 0
10:59:55.859343 open("/usr/lib/python2.7/site-packages/easy-install.pth", O_RDONLY|O_LARGEFILE) = 4
10:59:55.861581 fstat64(4, {st_mode=S_IFREG|0644, st_size=208, ...}) = 0
10:59:55.864341 fstat64(4, {st_mode=S_IFREG|0644, st_size=208, ...}) = 0
10:59:55.867189 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x400fc000
10:59:55.868372 read(4, "import sys; sys.__plen = len(sys"..., 8192) = 208
10:59:55.869800 read(4, "", 4096)       = 0
10:59:55.878336 brk(0xf0000)            = 0xf0000
10:59:55.933875 stat64("/usr/lib/python2.7/site-packages/flup-1.0.2-py2.7.egg", {st_mode=S_IFDIR|0755, st_size=296, ...}) = 0
10:59:55.962937 read(4, "", 8192)       = 0
10:59:55.964264 close(4)                = 0
10:59:55.970733 munmap(0x400fc000, 4096) = 0
10:59:55.972520 open("/usr/lib/python2.7/site-packages/setuptools.pth", O_RDONLY|O_LARGEFILE) = 4
10:59:55.974351 fstat64(4, {st_mode=S_IFREG|0644, st_size=34, ...}) = 0
10:59:55.982277 fstat64(4, {st_mode=S_IFREG|0644, st_size=34, ...}) = 0
10:59:55.984772 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x4009c000
10:59:55.991290 read(4, "./setuptools-0.6c11-py2.7.egg-in"..., 8192) = 34
10:59:55.992841 read(4, "", 4096)       = 0
10:59:55.994166 read(4, "", 8192)       = 0
10:59:55.996936 stat64("/usr/lib/python2.7/site-packages/setuptools-0.6c11-py2.7.egg-info", {st_mode=S_IFREG|0644, st_size=144, ...}) = 0
10:59:56.006242 close(4)                = 0
10:59:56.007356 munmap(0x4009c000, 4096) = 0
10:59:56.008859 stat64("/usr/lib/site-python", 0xbeb27e90) = -1 ENOENT (No such file or directory)
10:59:56.014242 stat64("/usr/lib/python2.7/site-packages/flup-1.0.2-py2.7.egg", {st_mode=S_IFDIR|0755, st_size=296, ...}) = 0
10:59:56.023127 stat64("/usr/lib/python2.7/site-packages/flup-1.0.2-py2.7.egg", {st_mode=S_IFDIR|0755, st_size=296, ...}) = 0
10:59:56.032598 stat64("/usr/lib/python2.7/site-packages/flup-1.0.2-py2.7.egg/sitecustomize", 0xbeb23dd0) = -1 ENOENT (No such file or directory)
10:59:56.034773 open("/usr/lib/python2.7/site-packages/flup-1.0.2-py2.7.egg/sitecustomize.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:56.042392 open("/usr/lib/python2.7/site-packages/flup-1.0.2-py2.7.egg/sitecustomizemodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:56.044753 open("/usr/lib/python2.7/site-packages/flup-1.0.2-py2.7.egg/sitecustomize.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:56.092827 open("/usr/lib/python2.7/site-packages/flup-1.0.2-py2.7.egg/sitecustomize.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:56.095545 stat64("/usr/lib/python2.7/sitecustomize", 0xbeb23dd0) = -1 ENOENT (No such file or directory)
10:59:56.097297 open("/usr/lib/python2.7/sitecustomize.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:56.099082 open("/usr/lib/python2.7/sitecustomizemodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:56.101457 open("/usr/lib/python2.7/sitecustomize.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:56.103195 open("/usr/lib/python2.7/sitecustomize.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:56.105395 stat64("/usr/lib/python2.7/plat-linux2", {st_mode=S_IFDIR|0755, st_size=504, ...}) = 0
10:59:56.108429 stat64("/usr/lib/python2.7/plat-linux2", {st_mode=S_IFDIR|0755, st_size=504, ...}) = 0
10:59:56.111932 stat64("/usr/lib/python2.7/plat-linux2/sitecustomize", 0xbeb23dd0) = -1 ENOENT (No such file or directory)
10:59:56.113828 open("/usr/lib/python2.7/plat-linux2/sitecustomize.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:56.116021 open("/usr/lib/python2.7/plat-linux2/sitecustomizemodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:56.118032 open("/usr/lib/python2.7/plat-linux2/sitecustomize.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:56.119945 open("/usr/lib/python2.7/plat-linux2/sitecustomize.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:56.122193 stat64("/usr/lib/python2.7/lib-tk", 0xbeb22cd0) = -1 ENOENT (No such file or directory)
10:59:56.123689 stat64("/usr/lib/python2.7", {st_mode=S_IFDIR|0755, st_size=16328, ...}) = 0
10:59:56.127082 stat64("/usr/lib/python2.7/lib-tk", 0xbeb23c88) = -1 ENOENT (No such file or directory)
10:59:56.128841 stat64("/usr/lib/python2.7/lib-old", 0xbeb22cd0) = -1 ENOENT (No such file or directory)
10:59:56.130753 stat64("/usr/lib/python2.7", {st_mode=S_IFDIR|0755, st_size=16328, ...}) = 0
10:59:56.133790 stat64("/usr/lib/python2.7/lib-old", 0xbeb23c88) = -1 ENOENT (No such file or directory)
10:59:56.135703 stat64("/usr/lib/python2.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4176, ...}) = 0
10:59:56.138820 stat64("/usr/lib/python2.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4176, ...}) = 0
10:59:56.143192 stat64("/usr/lib/python2.7/lib-dynload/sitecustomize", 0xbeb23dd0) = -1 ENOENT (No such file or directory)
10:59:56.145632 open("/usr/lib/python2.7/lib-dynload/sitecustomize.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:56.147603 open("/usr/lib/python2.7/lib-dynload/sitecustomizemodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:56.149583 open("/usr/lib/python2.7/lib-dynload/sitecustomize.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:56.151992 open("/usr/lib/python2.7/lib-dynload/sitecustomize.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:56.154013 stat64("/usr/lib/python2.7/site-packages", {st_mode=S_IFDIR|0755, st_size=1704, ...}) = 0
10:59:56.157610 stat64("/usr/lib/python2.7/site-packages", {st_mode=S_IFDIR|0755, st_size=1704, ...}) = 0
10:59:56.161187 stat64("/usr/lib/python2.7/site-packages/sitecustomize", 0xbeb23dd0) = -1 ENOENT (No such file or directory)
10:59:56.163085 open("/usr/lib/python2.7/site-packages/sitecustomize.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:56.164871 open("/usr/lib/python2.7/site-packages/sitecustomizemodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:56.167283 open("/usr/lib/python2.7/site-packages/sitecustomize.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:56.169241 open("/usr/lib/python2.7/site-packages/sitecustomize.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:56.171628 stat64("/usr/lib/python2.7/site-packages/setuptools-0.6c11-py2.7.egg-info", {st_mode=S_IFREG|0644, st_size=144, ...}) = 0
10:59:56.175546 open("/usr/lib/python2.7/site-packages/setuptools-0.6c11-py2.7.egg-info", O_RDONLY|O_LARGEFILE) = 4
10:59:56.177805 fstat64(4, {st_mode=S_IFREG|0644, st_size=144, ...}) = 0
10:59:56.180521 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x400b9000
10:59:56.181774 fstat64(4, {st_mode=S_IFREG|0644, st_size=144, ...}) = 0
10:59:56.184463 _llseek(4, 0, [0], SEEK_SET) = 0
10:59:56.185993 read(4, "Metadata-Version: 1.0\nName: setu"..., 122) = 122
10:59:56.187760 read(4, " xxx\nDescription: xxx\n", 4096) = 22
10:59:56.189224 close(4)                = 0
10:59:56.190595 munmap(0x400b9000, 4096) = 0
10:59:56.191850 stat64("/usr/lib/python2.7/site-packages/setuptools-0.6c11-py2.7.egg-info", {st_mode=S_IFREG|0644, st_size=144, ...}) = 0
10:59:56.196664 stat64("/usr/lib/python2.7/site-packages/flup-1.0.2-py2.7.egg/usercustomize", 0xbeb23dd0) = -1 ENOENT (No such file or directory)
10:59:56.198912 open("/usr/lib/python2.7/site-packages/flup-1.0.2-py2.7.egg/usercustomize.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:56.201723 open("/usr/lib/python2.7/site-packages/flup-1.0.2-py2.7.egg/usercustomizemodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:56.204074 open("/usr/lib/python2.7/site-packages/flup-1.0.2-py2.7.egg/usercustomize.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:56.206477 open("/usr/lib/python2.7/site-packages/flup-1.0.2-py2.7.egg/usercustomize.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:56.208778 stat64("/usr/lib/python2.7/usercustomize", 0xbeb23dd0) = -1 ENOENT (No such file or directory)
10:59:56.210872 open("/usr/lib/python2.7/usercustomize.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:56.212603 open("/usr/lib/python2.7/usercustomizemodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:56.214451 open("/usr/lib/python2.7/usercustomize.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:56.216556 open("/usr/lib/python2.7/usercustomize.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:56.218333 stat64("/usr/lib/python2.7/plat-linux2/usercustomize", 0xbeb23dd0) = -1 ENOENT (No such file or directory)
10:59:56.220395 open("/usr/lib/python2.7/plat-linux2/usercustomize.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:56.222245 open("/usr/lib/python2.7/plat-linux2/usercustomizemodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:56.224258 open("/usr/lib/python2.7/plat-linux2/usercustomize.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:56.226521 open("/usr/lib/python2.7/plat-linux2/usercustomize.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:56.228719 stat64("/usr/lib/python2.7/lib-dynload/usercustomize", 0xbeb23dd0) = -1 ENOENT (No such file or directory)
10:59:56.231130 open("/usr/lib/python2.7/lib-dynload/usercustomize.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:56.233040 open("/usr/lib/python2.7/lib-dynload/usercustomizemodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:56.234826 open("/usr/lib/python2.7/lib-dynload/usercustomize.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:56.237098 open("/usr/lib/python2.7/lib-dynload/usercustomize.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:56.239046 stat64("/usr/lib/python2.7/site-packages/usercustomize", 0xbeb23dd0) = -1 ENOENT (No such file or directory)
10:59:56.242004 open("/usr/lib/python2.7/site-packages/usercustomize.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:56.243965 open("/usr/lib/python2.7/site-packages/usercustomizemodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:56.246552 open("/usr/lib/python2.7/site-packages/usercustomize.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:56.248348 open("/usr/lib/python2.7/site-packages/usercustomize.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:56.251717 close(3)                = 0
10:59:56.252845 munmap(0x4016f000, 4096) = 0
10:59:56.254964 stat64("/usr/lib/python2.7/site-packages/flup-1.0.2-py2.7.egg/encodings", 0xbeb26310) = -1 ENOENT (No such file or directory)
10:59:56.257447 open("/usr/lib/python2.7/site-packages/flup-1.0.2-py2.7.egg/encodings.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:56.259629 open("/usr/lib/python2.7/site-packages/flup-1.0.2-py2.7.egg/encodingsmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:56.262146 open("/usr/lib/python2.7/site-packages/flup-1.0.2-py2.7.egg/encodings.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:56.264228 open("/usr/lib/python2.7/site-packages/flup-1.0.2-py2.7.egg/encodings.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:56.266878 stat64("/usr/lib/python2.7/encodings", {st_mode=S_IFDIR|0755, st_size=8936, ...}) = 0
10:59:56.269928 stat64("/usr/lib/python2.7/encodings/__init__.py", 0xbeb26250) = -1 ENOENT (No such file or directory)
10:59:56.272081 stat64("/usr/lib/python2.7/encodings/__init__.pyc", {st_mode=S_IFREG|0644, st_size=4370, ...}) = 0
10:59:56.275884 stat64("/usr/lib/python2.7/encodings/__init__", 0xbeb252e0) = -1 ENOENT (No such file or directory)
10:59:56.277582 open("/usr/lib/python2.7/encodings/__init__.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:56.279539 open("/usr/lib/python2.7/encodings/__init__module.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:56.281836 open("/usr/lib/python2.7/encodings/__init__.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:56.283679 open("/usr/lib/python2.7/encodings/__init__.pyc", O_RDONLY|O_LARGEFILE) = 3
10:59:56.285828 fstat64(3, {st_mode=S_IFREG|0644, st_size=4370, ...}) = 0
10:59:56.288353 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x40010000
10:59:56.289537 read(3, "\3\363\r\n\372\212\351Sc\0\0\0\0\0\0\0\0\3\0\0\0@\0\0\0s\216\0\0\0d\0"..., 4096) = 4096
10:59:56.292030 fstat64(3, {st_mode=S_IFREG|0644, st_size=4370, ...}) = 0
10:59:56.297920 read(3, "\1$\1$\0016\0016\1\3\1\3\1\26\1\"\0015\1\22\3\n\4\3\1\20\1\r\1\4\2\r"..., 4096) = 274
10:59:56.299574 read(3, "", 4096)       = 0
10:59:56.302680 stat64("/usr/lib/python2.7/encodings", {st_mode=S_IFDIR|0755, st_size=8936, ...}) = 0
10:59:56.306075 stat64("/usr/lib/python2.7/encodings", {st_mode=S_IFDIR|0755, st_size=8936, ...}) = 0
10:59:56.309252 stat64("/usr/lib/python2.7/encodings/codecs", 0xbeb22fe8) = -1 ENOENT (No such file or directory)
10:59:56.316384 open("/usr/lib/python2.7/encodings/codecs.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:56.318151 open("/usr/lib/python2.7/encodings/codecsmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:56.319956 open("/usr/lib/python2.7/encodings/codecs.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:56.327146 open("/usr/lib/python2.7/encodings/codecs.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:56.329158 stat64("/usr/lib/python2.7/site-packages/flup-1.0.2-py2.7.egg/codecs", 0xbeb22fe8) = -1 ENOENT (No such file or directory)
10:59:56.336640 open("/usr/lib/python2.7/site-packages/flup-1.0.2-py2.7.egg/codecs.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:56.338769 open("/usr/lib/python2.7/site-packages/flup-1.0.2-py2.7.egg/codecsmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:56.346428 open("/usr/lib/python2.7/site-packages/flup-1.0.2-py2.7.egg/codecs.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:56.348506 open("/usr/lib/python2.7/site-packages/flup-1.0.2-py2.7.egg/codecs.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:56.356142 stat64("/usr/lib/python2.7/codecs", 0xbeb22fe8) = -1 ENOENT (No such file or directory)
10:59:56.357756 open("/usr/lib/python2.7/codecs.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:56.359494 open("/usr/lib/python2.7/codecsmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:56.366549 open("/usr/lib/python2.7/codecs.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:56.368239 open("/usr/lib/python2.7/codecs.pyc", O_RDONLY|O_LARGEFILE) = 4
10:59:56.369856 fstat64(4, {st_mode=S_IFREG|0644, st_size=36414, ...}) = 0
10:59:56.377775 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x40033000
10:59:56.378972 read(4, "\3\363\r\n\372\212\351Sc\0\0\0\0\0\0\0\0\30\0\0\0@\0\0\0s7\3\0\0d\0"..., 4096) = 4096
10:59:56.386048 fstat64(4, {st_mode=S_IFREG|0644, st_size=36414, ...}) = 0
10:59:56.388689 read(4, "d\1\0S(\2\0\0\0s\372\2\0\0 Decodes the objec"..., 28672) = 28672
10:59:56.395801 read(4, "c for the given encoding and ret"..., 4096) = 3646
10:59:56.397548 read(4, "", 4096)       = 0
10:59:56.439426 close(4)                = 0
10:59:56.441739 munmap(0x40033000, 4096) = 0
10:59:56.443206 stat64("/usr/lib/python2.7/encodings/encodings", 0xbeb22fe8) = -1 ENOENT (No such file or directory)
10:59:56.444801 open("/usr/lib/python2.7/encodings/encodings.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:56.452187 open("/usr/lib/python2.7/encodings/encodingsmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:56.454098 open("/usr/lib/python2.7/encodings/encodings.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:56.458556 open("/usr/lib/python2.7/encodings/encodings.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:56.461542 stat64("/usr/lib/python2.7/encodings/aliases", 0xbeb22fd0) = -1 ENOENT (No such file or directory)
10:59:56.463324 open("/usr/lib/python2.7/encodings/aliases.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:56.470530 open("/usr/lib/python2.7/encodings/aliasesmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:56.472318 open("/usr/lib/python2.7/encodings/aliases.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:56.474005 open("/usr/lib/python2.7/encodings/aliases.pyc", O_RDONLY|O_LARGEFILE) = 4
10:59:56.476116 fstat64(4, {st_mode=S_IFREG|0644, st_size=8768, ...}) = 0
10:59:56.478729 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x40001000
10:59:56.479989 read(4, "\3\363\r\n\372\212\351Sc\0\0\0\0\0\0\0\0\3\0\0\0@\0\0\0su\10\0\0d\0"..., 4096) = 4096
10:59:56.486895 fstat64(4, {st_mode=S_IFREG|0644, st_size=8768, ...}) = 0
10:59:56.489514 read(4, "ibm860t\6\0\0\0ibm860t\5\0\0\0cp861t\3\0\0\0"..., 4096) = 4096
10:59:56.496666 read(4, "\7\3\7\1\7\1\7\1\7\1\7\1\7\1\7\1\7\3\7\1\7\1\7\3\7\1\7\3\7\1\7\3"..., 4096) = 576
10:59:56.498338 read(4, "", 4096)       = 0
10:59:56.511824 close(4)                = 0
10:59:56.513013 munmap(0x40001000, 4096) = 0
10:59:56.514483 stat64("/usr/lib/python2.7/encodings/__builtin__", 0xbeb22fe8) = -1 ENOENT (No such file or directory)
10:59:56.516595 open("/usr/lib/python2.7/encodings/__builtin__.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:56.518494 open("/usr/lib/python2.7/encodings/__builtin__module.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:56.525866 open("/usr/lib/python2.7/encodings/__builtin__.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:56.527769 open("/usr/lib/python2.7/encodings/__builtin__.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:56.536842 close(3)                = 0
10:59:56.538021 munmap(0x40010000, 4096) = 0
10:59:56.541363 stat64("/usr/lib/python2.7/encodings/ascii", 0xbeb26108) = -1 ENOENT (No such file or directory)
10:59:56.542884 open("/usr/lib/python2.7/encodings/ascii.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:56.544646 open("/usr/lib/python2.7/encodings/asciimodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:56.552112 open("/usr/lib/python2.7/encodings/ascii.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
10:59:56.553905 open("/usr/lib/python2.7/encodings/ascii.pyc", O_RDONLY|O_LARGEFILE) = 3
10:59:56.560985 fstat64(3, {st_mode=S_IFREG|0644, st_size=2261, ...}) = 0
10:59:56.563530 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x40080000
10:59:56.564722 read(3, "\3\363\r\n\372\212\351Sc\0\0\0\0\0\0\0\0\3\0\0\0@\0\0\0s\273\0\0\0d\0"..., 4096) = 2261
10:59:56.570504 fstat64(3, {st_mode=S_IFREG|0644, st_size=2261, ...}) = 0
10:59:56.573106 read(3, "", 4096)       = 0
10:59:56.584506 close(3)                = 0
10:59:56.585874 munmap(0x40080000, 4096) = 0
10:59:56.588388 ioctl(0, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, {B38400 opost isig icanon echo ...}) = 0
10:59:56.595689 ioctl(1, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0xbeb2a43c) = -1 ENOTTY (Inappropriate ioctl for device)
10:59:56.596969 ioctl(2, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0xbeb2a43c) = -1 ENOTTY (Inappropriate ioctl for device)
10:59:56.598224 readlink("./a.py", 0xbeb27518, 4096) = -1 EINVAL (Invalid argument)
10:59:56.599506 getcwd("/root", 4096)   = 6
10:59:56.606038 lstat64("/root/a.py", {st_mode=S_IFREG|0755, st_size=47, ...}) = 0
10:59:56.609030 stat64("./a.py", {st_mode=S_IFREG|0755, st_size=47, ...}) = 0
10:59:56.617132 open("./a.py", O_RDONLY|O_LARGEFILE) = 3
10:59:56.618392 fstat64(3, {st_mode=S_IFREG|0755, st_size=47, ...}) = 0
10:59:56.626198 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x400fc000
10:59:56.627212 fstat64(3, {st_mode=S_IFREG|0755, st_size=47, ...}) = 0
10:59:56.629763 _llseek(3, 0, [0], SEEK_SET) = 0
10:59:56.636366 read(3, "#!/usr/bin/env python\n\npr", 25) = 25
10:59:56.638000 read(3, "int 'hello, python'\n\n\n", 4096) = 22
10:59:56.639472 close(3)                = 0
10:59:56.646136 munmap(0x400fc000, 4096) = 0
10:59:56.647464 stat64("./a.py", {st_mode=S_IFREG|0755, st_size=47, ...}) = 0
10:59:56.650748 open("./a.py", O_RDONLY|O_LARGEFILE) = 3
10:59:56.652072 fstat64(3, {st_mode=S_IFREG|0755, st_size=47, ...}) = 0
10:59:56.654611 ioctl(3, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0xbeb2a4a4) = -1 ENOTTY (Inappropriate ioctl for device)
10:59:56.656165 fstat64(3, {st_mode=S_IFREG|0755, st_size=47, ...}) = 0
10:59:56.658775 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x400c8000
10:59:56.665431 _llseek(3, 0, [0], SEEK_CUR) = 0
10:59:56.666664 read(3, "#!/usr/bin/env python\n\nprint 'he"..., 4096) = 47
10:59:56.668349 _llseek(3, 47, [47], SEEK_SET) = 0
10:59:56.675532 read(3, "", 4096)       = 0
10:59:56.676887 close(3)                = 0
10:59:56.677948 munmap(0x400c8000, 4096) = 0
10:59:56.679896 fstat64(1, {st_mode=S_IFREG|0644, st_size=65550, ...}) = 0
10:59:56.687964 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x4000a000
10:59:56.689764 rt_sigaction(SIGINT, {SIG_DFL, [], 0x4000000 /* SA_??? */}, {0x40360fe8, [], 0x4000000 /* SA_??? */}, 8) = 0
10:59:56.791674 write(1, "hello, python\n", 14hello, python
) = 14
10:59:56.804280 exit_group(0)           = ?
10:59:56.812284 +++ exited with 0 +++
---cut end---

-woody



More information about the Python-list mailing list