![]() |
stdout buffering - Printable Version +- Python Forum (https://python-forum.io) +-- Forum: Python Coding (https://python-forum.io/forum-7.html) +--- Forum: General Coding Help (https://python-forum.io/forum-8.html) +--- Thread: stdout buffering (/thread-10852.html) |
stdout buffering - Skaperen - Jun-10-2018 how can i set the buffering mode for stdout ? it is already open. i notice that in python3 i am getting line buffering and in python2 i am getting block buffering around the size of 12k, even if i call stdout.flush() between each line. this also seems to be the case with stderr .i wrote a script to read the output of the "ping" command and put a timestamp on the front of each line. it's getting the lines OK and putting the right timestamps on each line (incremented by about one second) but the output is buffered up to 140 lines at 87 characters per lines (about 12k). that's in python2. in python3 it gets line buffering. i'd like to have line buffering in all cases of output to a tty. if the solution also makes writing elsewhere (such as to a file) be line buffered, i don't care right now (i may care later) RE: stdout buffering - Larz60+ - Jun-10-2018 import sys sys.stdout = Unbuffered(sys.stdout) RE: stdout buffering - Skaperen - Jun-11-2018 is that safe to do? is that the same as line buffering? i guess the question to ask is whether python3 defaults to unbuffered or line buffered. ultimately, i want line buffered, so that printing a bunch of parts of a line get buffered until a newline. RE: stdout buffering - Skaperen - Jun-11-2018 NameError: global name 'Unbuffered' is not defined RE: stdout buffering - Larz60+ - Jun-11-2018 apparently it must be done differently: see: https://stackoverflow.com/questions/12827256/python-standard-idiom-to-set-sys-stdout-buffer-to-zero-doesnt-work-with-unicode RE: stdout buffering - Skaperen - Jun-12-2018 pycat.py: #!/usr/bin/env python # -*- coding: utf-8 -*- from __future__ import division, generators, print_function, with_statement import os from subprocess import call from sys import argv, stderr, stdin, stdout, version_info for line in stdin: line=line.rstrip() print('line =',repr(line),file=stdout) stdout.flush()pycnt.py: # -*- coding: utf-8 -*- from __future__ import division, generators, print_function, with_statement import os from subprocess import call from sys import argv, stderr, stdin, stdout, version_info from time import sleep for num in range(10000): sleep(1) print('num =',repr(num),file=stdout) stdout.flush()now i run 4 different commands: only one of the above commands has delayed out, and that's the first one (pycat.py run by python2). pycnt.py runs fine under both version of python and no buffering delay is seen. so this is suggesting that the stdin iterator (see the for statement) is the problem (and only under python2), since data created in the loop is not delayed when python2 is running pycnt.py. but strace shows that there really is a problem. see near the end when it is doing read syscalls with no write syscalls. i wonder why::[output]lt1/forums /home/forums 23> ping -c 10 127.0.0.1|strace python2 pycat.pyexecve("/usr/bin/python2", ["python2", "pycat.py"], [/* 98 vars */]) = 0 brk(NULL) = 0x2123000 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory) open("/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3 fstat(3, {st_mode=S_IFREG|0644, st_size=124178, ...}) = 0 mmap(NULL, 124178, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f9476eaf000 close(3) = 0 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) open("/lib/x86_64-linux-gnu/libpthread.so.0", O_RDONLY|O_CLOEXEC) = 3 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\260`\0\0\0\0\0\0"..., 832) = 832 fstat(3, {st_mode=S_IFREG|0755, st_size=138696, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f9476eae000 mmap(NULL, 2212904, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f9476a8c000 mprotect(0x7f9476aa4000, 2093056, PROT_NONE) = 0 mmap(0x7f9476ca3000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x17000) = 0x7f9476ca3000 mmap(0x7f9476ca5000, 13352, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f9476ca5000 close(3) = 0 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) open("/lib/x86_64-linux-gnu/libc.so.6", O_RDONLY|O_CLOEXEC) = 3 read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0P\t\2\0\0\0\0\0"..., 832) = 832 fstat(3, {st_mode=S_IFREG|0755, st_size=1868984, ...}) = 0 mmap(NULL, 3971488, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f94766c2000 mprotect(0x7f9476882000, 2097152, PROT_NONE) = 0 mmap(0x7f9476a82000, 24576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1c0000) = 0x7f9476a82000 mmap(0x7f9476a88000, 14752, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f9476a88000 close(3) = 0 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) open("/lib/x86_64-linux-gnu/libdl.so.2", O_RDONLY|O_CLOEXEC) = 3 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\240\r\0\0\0\0\0\0"..., 832) = 832 fstat(3, {st_mode=S_IFREG|0644, st_size=14608, ...}) = 0 mmap(NULL, 2109680, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f94764be000 mprotect(0x7f94764c1000, 2093056, PROT_NONE) = 0 mmap(0x7f94766c0000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f94766c0000 close(3) = 0 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) open("/lib/x86_64-linux-gnu/libutil.so.1", O_RDONLY|O_CLOEXEC) = 3 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0`\16\0\0\0\0\0\0"..., 832) = 832 fstat(3, {st_mode=S_IFREG|0644, st_size=10656, ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f9476ead000 mmap(NULL, 2105608, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f94762bb000 mprotect(0x7f94762bd000, 2093056, PROT_NONE) = 0 mmap(0x7f94764bc000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1000) = 0x7f94764bc000 close(3) = 0 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) open("/lib/x86_64-linux-gnu/libz.so.1", O_RDONLY|O_CLOEXEC) = 3 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\260\35\0\0\0\0\0\0"..., 832) = 832 fstat(3, {st_mode=S_IFREG|0644, st_size=104864, ...}) = 0 mmap(NULL, 2199848, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f94760a1000 mprotect(0x7f94760ba000, 2093056, PROT_NONE) = 0 mmap(0x7f94762b9000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x18000) = 0x7f94762b9000 close(3) = 0 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) open("/lib/x86_64-linux-gnu/libm.so.6", O_RDONLY|O_CLOEXEC) = 3 read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0V\0\0\0\0\0\0"..., 832) = 832 fstat(3, {st_mode=S_IFREG|0644, st_size=1088952, ...}) = 0 mmap(NULL, 3178744, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f9475d98000 mprotect(0x7f9475ea0000, 2093056, PROT_NONE) = 0 mmap(0x7f947609f000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x107000) = 0x7f947609f000 close(3) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f9476eac000 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f9476eab000 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f9476eaa000 arch_prctl(ARCH_SET_FS, 0x7f9476eab700) = 0 mprotect(0x7f9476a82000, 16384, PROT_READ) = 0 mprotect(0x7f947609f000, 4096, PROT_READ) = 0 mprotect(0x7f94762b9000, 4096, PROT_READ) = 0 mprotect(0x7f94764bc000, 4096, PROT_READ) = 0 mprotect(0x7f94766c0000, 4096, PROT_READ) = 0 mprotect(0x7f9476ca3000, 4096, PROT_READ) = 0 mprotect(0x8dd000, 4096, PROT_READ) = 0 mprotect(0x7f9476ece000, 4096, PROT_READ) = 0 munmap(0x7f9476eaf000, 124178) = 0 set_tid_address(0x7f9476eab9d0) = 20182 set_robust_list(0x7f9476eab9e0, 24) = 0 rt_sigaction(SIGRTMIN, {0x7f9476a91b50, [], SA_RESTORER|SA_SIGINFO, 0x7f9476a9d390}, NULL, 8) = 0 rt_sigaction(SIGRT_1, {0x7f9476a91be0, [], SA_RESTORER|SA_RESTART|SA_SIGINFO, 0x7f9476a9d390}, NULL, 8) = 0 rt_sigprocmask(SIG_UNBLOCK, [RTMIN RT_1], NULL, 8) = 0 getrlimit(RLIMIT_STACK, {rlim_cur=8192*1024, rlim_max=RLIM64_INFINITY}) = 0 ioctl(0, TCGETS, 0x7ffe192d7c90) = -1 ENOTTY (Inappropriate ioctl for device) brk(NULL) = 0x2123000 brk(0x2144000) = 0x2144000 mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f9476e6a000 brk(0x216c000) = 0x216c000 fstat(0, {st_mode=S_IFIFO|0600, st_size=0, ...}) = 0 fstat(0, {st_mode=S_IFIFO|0600, st_size=0, ...}) = 0 fstat(1, {st_mode=S_IFCHR|0620, st_rdev=makedev(136, 226), ...}) = 0 fstat(2, {st_mode=S_IFCHR|0620, st_rdev=makedev(136, 226), ...}) = 0 stat("/home/forums/.bin/python2", 0x7ffe192d6bc0) = -1 ENOENT (No such file or directory) stat("/home/forums/.cmd/python2", 0x7ffe192d6bc0) = -1 ENOENT (No such file or directory) stat("/home/forums/bin/python2", 0x7ffe192d6bc0) = -1 ENOENT (No such file or directory) stat("/home/forums/cmd/python2", 0x7ffe192d6bc0) = -1 ENOENT (No such file or directory) stat("/usr/local/cmd/python2", 0x7ffe192d6bc0) = -1 ENOENT (No such file or directory) stat("/usr/local/bin/python2", 0x7ffe192d6bc0) = -1 ENOENT (No such file or directory) stat("/usr/bin/python2", {st_mode=S_IFREG|0755, st_size=3492656, ...}) = 0 readlink("/usr/bin/python2", "python2.7", 4096) = 9 readlink("/usr/bin/python2.7", 0x7ffe192d6bc0, 4096) = -1 EINVAL (Invalid argument) stat("/usr/bin/Modules/Setup", 0x7ffe192d5af0) = -1 ENOENT (No such file or directory) stat("/usr/bin/lib/python2.7/os.py", 0x7ffe192d5ae0) = -1 ENOENT (No such file or directory) stat("/usr/bin/lib/python2.7/os.pyc", 0x7ffe192d5ae0) = -1 ENOENT (No such file or directory) stat("/usr/lib/python2.7/os.py", {st_mode=S_IFREG|0644, st_size=25910, ...}) = 0 stat("/usr/bin/pybuilddir.txt", 0x7ffe192d5af0) = -1 ENOENT (No such file or directory) stat("/usr/bin/lib/python2.7/lib-dynload", 0x7ffe192d5af0) = -1 ENOENT (No such file or directory) stat("/usr/lib/python2.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0 mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f9476e2a000 rt_sigaction(SIGPIPE, {SIG_IGN, [], SA_RESTORER, 0x7f9476a9d390}, {SIG_DFL, [], 0}, 8) = 0 rt_sigaction(SIGXFSZ, {SIG_IGN, [], SA_RESTORER, 0x7f9476a9d390}, {SIG_DFL, [], 0}, 8) = 0 rt_sigaction(SIGHUP, NULL, {SIG_DFL, [], 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, 0x7f9476a9d390}, 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, 0x7f9476a9d390}, 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, {0x534a20, [], SA_RESTORER, 0x7f9476a9d390}, {SIG_DFL, [], 0}, 8) = 0 stat("/usr/lib/python2.7/", {st_mode=S_IFDIR|0755, st_size=20480, ...}) = 0 stat("/usr/lib/python2.7/", {st_mode=S_IFDIR|0755, st_size=20480, ...}) = 0 stat("/usr/lib/python2.7/site", 0x7ffe192d6960) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site.x86_64-linux-gnu.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/sitemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/site.py", O_RDONLY) = 3 fstat(3, {st_mode=S_IFREG|0644, st_size=20370, ...}) = 0 open("/usr/lib/python2.7/site.pyc", O_RDONLY) = 4 fstat(4, {st_mode=S_IFREG|0644, st_size=19712, ...}) = 0 read(4, "\3\363\r\n\262\217%Zc\0\0\0\0\0\0\0\0\3\0\0\0@\0\0\0sp\1\0\0d\0"..., 4096) = 4096 fstat(4, {st_mode=S_IFREG|0644, st_size=19712, ...}) = 0 read(4, "\0(\0\0\0\0s\32\0\0\0/usr/lib/python2.7/si"..., 12288) = 12288 read(4, "s\24\0\0\0\0\4\17\1\30\1\20\1\17\1\3\1\21\1\r\1\f\1\20\1c\0\0\0\0\1\0"..., 4096) = 3328 read(4, "", 4096) = 0 close(4) = 0 stat("/usr/lib/python2.7/os", 0x7ffe192d6490) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/os.x86_64-linux-gnu.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/os.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/osmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/os.py", O_RDONLY) = 4 fstat(4, {st_mode=S_IFREG|0644, st_size=25910, ...}) = 0 open("/usr/lib/python2.7/os.pyc", O_RDONLY) = 5 fstat(5, {st_mode=S_IFREG|0644, st_size=25593, ...}) = 0 read(5, "\3\363\r\n\262\217%Zc\0\0\0\0\0\0\0\0\16\0\0\0@\0\0\0s\372\6\0\0d\0"..., 4096) = 4096 fstat(5, {st_mode=S_IFREG|0644, st_size=25593, ...}) = 0 read(5, " N(\t\0\0\0R\t\0\0\0t\5\0\0\0splitt\6\0\0\0exis"..., 20480) = 20480 read(5, "s\3\0\0\0os2s\2\0\0\0nt(X\0\0\0t\7\0\0\0__doc__"..., 4096) = 1017 read(5, "", 4096) = 0 close(5) = 0 brk(0x218d000) = 0x218d000 sysinfo({uptime=20622, loads=[2528, 5792, 9664], totalram=16742764544, freeram=4624867328, sharedram=2560671744, bufferram=275083264, totalswap=17179865088, freeswap=17179865088, procs=3512, totalhigh=0, freehigh=0, mem_unit=1}) = 0 mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f9476dea000 stat("/usr/lib/python2.7/posixpath", 0x7ffe192d5fc0) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/posixpath.x86_64-linux-gnu.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/posixpath.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/posixpathmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/posixpath.py", O_RDONLY) = 5 fstat(5, {st_mode=S_IFREG|0644, st_size=13925, ...}) = 0 open("/usr/lib/python2.7/posixpath.pyc", O_RDONLY) = 6 fstat(6, {st_mode=S_IFREG|0644, st_size=11374, ...}) = 0 read(6, "\3\363\r\n\262\217%Zc\0\0\0\0\0\0\0\0&\0\0\0@\0\0\0s\373\1\0\0d\0"..., 4096) = 4096 fstat(6, {st_mode=S_IFREG|0644, st_size=11374, ...}) = 0 read(6, "\0\0\0Test whether a path exists. "..., 4096) = 4096 read(6, "\4\0\0\0NoneRD\0\0\0t\6\0\0\0searcht\4\0\0\0spa"..., 4096) = 3182 read(6, "", 4096) = 0 close(6) = 0 stat("/usr/lib/python2.7/stat", 0x7ffe192d5af0) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/stat.x86_64-linux-gnu.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/stat.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/statmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/stat.py", O_RDONLY) = 6 fstat(6, {st_mode=S_IFREG|0644, st_size=1842, ...}) = 0 open("/usr/lib/python2.7/stat.pyc", O_RDONLY) = 7 fstat(7, {st_mode=S_IFREG|0644, st_size=2731, ...}) = 0 read(7, "\3\363\r\n\262\217%Zc\0\0\0\0\0\0\0\0\1\0\0\0@\0\0\0s{\1\0\0d\0"..., 4096) = 2731 fstat(7, {st_mode=S_IFREG|0644, st_size=2731, ...}) = 0 read(7, "", 4096) = 0 mmap(NULL, 200704, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f9476db9000 close(7) = 0 close(6) = 0 stat("/usr/lib/python2.7/genericpath", 0x7ffe192d5af0) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/genericpath.x86_64-linux-gnu.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/genericpath.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/genericpathmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/genericpath.py", O_RDONLY) = 6 fstat(6, {st_mode=S_IFREG|0644, st_size=3201, ...}) = 0 open("/usr/lib/python2.7/genericpath.pyc", O_RDONLY) = 7 fstat(7, {st_mode=S_IFREG|0644, st_size=3495, ...}) = 0 read(7, "\3\363\r\n\262\217%Zc\0\0\0\0\0\0\0\0\10\0\0\0@\0\0\0s\305\0\0\0d\0"..., 4096) = 3495 fstat(7, {st_mode=S_IFREG|0644, st_size=3495, ...}) = 0 read(7, "", 4096) = 0 close(7) = 0 close(6) = 0 stat("/usr/lib/python2.7/warnings", 0x7ffe192d5af0) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/warnings.x86_64-linux-gnu.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/warnings.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/warningsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/warnings.py", O_RDONLY) = 6 fstat(6, {st_mode=S_IFREG|0644, st_size=14748, ...}) = 0 open("/usr/lib/python2.7/warnings.pyc", O_RDONLY) = 7 fstat(7, {st_mode=S_IFREG|0644, st_size=13578, ...}) = 0 read(7, "\3\363\r\n\262\217%Zc\0\0\0\0\0\0\0\0\10\0\0\0@\0\0\0sY\2\0\0d\0"..., 4096) = 4096 fstat(7, {st_mode=S_IFREG|0644, st_size=13578, ...}) = 0 read(7, "f warnings filters (at the front"..., 8192) = 8192 read(7, "r/lib/python2.7/warnings.pyR\2\0\0\0"..., 4096) = 1290 read(7, "", 4096) = 0 close(7) = 0 stat("/usr/lib/python2.7/linecache", 0x7ffe192d5620) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/linecache.x86_64-linux-gnu.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/linecache.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/linecachemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/linecache.py", O_RDONLY) = 7 fstat(7, {st_mode=S_IFREG|0644, st_size=4027, ...}) = 0 open("/usr/lib/python2.7/linecache.pyc", O_RDONLY) = 8 fstat(8, {st_mode=S_IFREG|0644, st_size=3260, ...}) = 0 read(8, "\3\363\r\n\262\217%Zc\0\0\0\0\0\0\0\0\3\0\0\0@\0\0\0sp\0\0\0d\0"..., 4096) = 3260 fstat(8, {st_mode=S_IFREG|0644, st_size=3260, ...}) = 0 read(8, "", 4096) = 0 close(8) = 0 close(7) = 0 stat("/usr/lib/python2.7/types", 0x7ffe192d5620) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/types.x86_64-linux-gnu.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/types.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/typesmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/types.py", O_RDONLY) = 7 fstat(7, {st_mode=S_IFREG|0644, st_size=2094, ...}) = 0 open("/usr/lib/python2.7/types.pyc", O_RDONLY) = 8 fstat(8, {st_mode=S_IFREG|0644, st_size=2711, ...}) = 0 read(8, "\3\363\r\n\262\217%Zc\0\0\0\0\0\0\0\0\5\0\0\0@\0\0\0sH\2\0\0d\0"..., 4096) = 2711 fstat(8, {st_mode=S_IFREG|0644, st_size=2711, ...}) = 0 read(8, "", 4096) = 0 close(8) = 0 close(7) = 0 close(6) = 0 close(5) = 0 stat("/usr/lib/python2.7/UserDict", 0x7ffe192d5fc0) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/UserDict.x86_64-linux-gnu.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/UserDict.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/UserDictmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/UserDict.py", O_RDONLY) = 5 fstat(5, {st_mode=S_IFREG|0644, st_size=7060, ...}) = 0 open("/usr/lib/python2.7/UserDict.pyc", O_RDONLY) = 6 fstat(6, {st_mode=S_IFREG|0644, st_size=9621, ...}) = 0 read(6, "\3\363\r\n\262\217%Zc\0\0\0\0\0\0\0\0\3\0\0\0@\0\0\0sb\0\0\0d\0"..., 4096) = 4096 fstat(6, {st_mode=S_IFREG|0644, st_size=9621, ...}) = 0 read(6, "got %dR\1\0\0\0i\377\377\377\377s0\0\0\0Passing 'di"..., 4096) = 4096 read(6, "\0\0\261\0\0\0s\f\0\0\0\0\1\3\1\34\1\r\1\r\1\7\1c\2\0\0\0\5\0\0\0"..., 4096) = 1429 read(6, "", 4096) = 0 close(6) = 0 stat("/usr/lib/python2.7/_abcoll", 0x7ffe192d5af0) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/_abcoll.x86_64-linux-gnu.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/_abcoll.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/_abcollmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/_abcoll.py", O_RDONLY) = 6 fstat(6, {st_mode=S_IFREG|0644, st_size=18619, ...}) = 0 open("/usr/lib/python2.7/_abcoll.pyc", O_RDONLY) = 7 fstat(7, {st_mode=S_IFREG|0644, st_size=25474, ...}) = 0 read(7, "\3\363\r\n\262\217%Zc\0\0\0\0\0\0\0\0\20\0\0\0@\0\0\0s\224\2\0\0d\0"..., 4096) = 4096 fstat(7, {st_mode=S_IFREG|0644, st_size=25474, ...}) = 0 read(7, "\1\0Z\7\0RS(\2\0\0\0c\2\0\0\0\2\0\0\0\1\0\0\0C\0\0\0s\4\0"..., 20480) = 20480 read(7, "alue.\n Raise ValueErro"..., 4096) = 898 read(7, "", 4096) = 0 close(7) = 0 stat("/usr/lib/python2.7/abc", 0x7ffe192d5620) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/abc.x86_64-linux-gnu.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/abc.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/abcmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/abc.py", O_RDONLY) = 7 fstat(7, {st_mode=S_IFREG|0644, st_size=7145, ...}) = 0 open("/usr/lib/python2.7/abc.pyc", O_RDONLY) = 8 fstat(8, {st_mode=S_IFREG|0644, st_size=6121, ...}) = 0 read(8, "\3\363\r\n\262\217%Zc\0\0\0\0\0\0\0\0\3\0\0\0@\0\0\0s}\0\0\0d\0"..., 4096) = 4096 fstat(8, {st_mode=S_IFREG|0644, st_size=6121, ...}) = 0 read(8, "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 read(8, "", 4096) = 0 close(8) = 0 stat("/usr/lib/python2.7/_weakrefset", 0x7ffe192d5150) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/_weakrefset.x86_64-linux-gnu.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/_weakrefset.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/_weakrefsetmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/_weakrefset.py", O_RDONLY) = 8 fstat(8, {st_mode=S_IFREG|0644, st_size=5911, ...}) = 0 open("/usr/lib/python2.7/_weakrefset.pyc", O_RDONLY) = 9 fstat(9, {st_mode=S_IFREG|0644, st_size=9582, ...}) = 0 read(9, "\3\363\r\n\262\217%Zc\0\0\0\0\0\0\0\0\3\0\0\0@\0\0\0sI\0\0\0d\0"..., 4096) = 4096 fstat(9, {st_mode=S_IFREG|0644, st_size=9582, ...}) = 0 read(9, "efset.pyR\27\0\0\0q\0\0\0s\6\0\0\0\0\1\t\1\r\1c\2\0\0"..., 4096) = 4096 read(9, "\26\0\210\0\0j\1\0\203\0\0\1n\0\0\210\0\0|\1\0k\10\0r2\0\210\0\0j\2"..., 4096) = 1390 read(9, "", 4096) = 0 close(9) = 0 close(8) = 0 close(7) = 0 mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f9476d79000 munmap(0x7f9476d79000, 262144) = 0 mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f9476d79000 munmap(0x7f9476d79000, 262144) = 0 mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f9476d79000 close(6) = 0 close(5) = 0 stat("/usr/lib/python2.7/copy_reg", 0x7ffe192d5fc0) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/copy_reg.x86_64-linux-gnu.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/copy_reg.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/copy_regmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/copy_reg.py", O_RDONLY) = 5 fstat(5, {st_mode=S_IFREG|0644, st_size=6800, ...}) = 0 open("/usr/lib/python2.7/copy_reg.pyc", O_RDONLY) = 6 fstat(6, {st_mode=S_IFREG|0644, st_size=5091, ...}) = 0 read(6, "\3\363\r\n\262\217%Zc\0\0\0\0\0\0\0\0\5\0\0\0@\0\0\0s\326\0\0\0d\0"..., 4096) = 4096 fstat(6, {st_mode=S_IFREG|0644, st_size=5091, ...}) = 0 read(6, "\0\0\0t\3\0\0\0intt\n\0\0\0ValueErrort\23\0\0\0_"..., 4096) = 995 read(6, "", 4096) = 0 close(6) = 0 close(5) = 0 close(4) = 0 stat("/usr/lib/python2.7/traceback", 0x7ffe192d6490) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/traceback.x86_64-linux-gnu.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/traceback.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/tracebackmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/traceback.py", O_RDONLY) = 4 fstat(4, {st_mode=S_IFREG|0644, st_size=11285, ...}) = 0 open("/usr/lib/python2.7/traceback.pyc", O_RDONLY) = 5 fstat(5, {st_mode=S_IFREG|0644, st_size=11639, ...}) = 0 read(5, "\3\363\r\n\262\217%Zc\0\0\0\0\0\0\0\0\16\0\0\0@\0\0\0sB\1\0\0d\0"..., 4096) = 4096 fstat(5, {st_mode=S_IFREG|0644, st_size=11639, ...}) = 0 read(5, "!\0\0\0i\0\0\0\0i\1\0\0\0N(\20\0\0\0R\24\0\0\0R\"\0\0\0R\25"..., 4096) = 4096 read(5, "\0\203\0\0\\\3\0}\2\0}\3\0}\4\0t\4\0|\2\0|\3\0|\4\0|\0\0|"..., 4096) = 3447 read(5, "", 4096) = 0 close(5) = 0 close(4) = 0 geteuid() = 1005 getuid() = 1005 getegid() = 1005 getgid() = 1005 stat("/usr/lib/python2.7", {st_mode=S_IFDIR|0755, st_size=20480, ...}) = 0 stat("/usr/lib/python2.7", {st_mode=S_IFDIR|0755, st_size=20480, ...}) = 0 stat("/usr/lib/python2.7/sysconfig", 0x7ffe192d6010) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/sysconfig.x86_64-linux-gnu.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/sysconfig.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/sysconfigmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/sysconfig.py", O_RDONLY) = 4 fstat(4, {st_mode=S_IFREG|0644, st_size=25204, ...}) = 0 open("/usr/lib/python2.7/sysconfig.pyc", O_RDONLY) = 5 fstat(5, {st_mode=S_IFREG|0644, st_size=18673, ...}) = 0 read(5, "\3\363\r\n\262\217%Zc\0\0\0\0\0\0\0\0\7\0\0\0@\0\0\0s\217\5\0\0d\0"..., 4096) = 4096 fstat(5, {st_mode=S_IFREG|0644, st_size=18673, ...}) = 0 brk(0x21b0000) = 0x21b0000 read(5, "\3\0|\2\0k\6\0r7\0q\31\0n\0\0|\4\0|\0\0|\3\0<q\31\0Wd"..., 12288) = 12288 read(5, "\0\0005t\7\0\0\0solariss\5\0\0\0%d.%si\3\0\0\0i\2"..., 4096) = 2289 read(5, "", 4096) = 0 brk(0x21ac000) = 0x21ac000 close(5) = 0 lstat("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 lstat("/usr/bin", {st_mode=S_IFDIR|0755, st_size=86016, ...}) = 0 lstat("/usr/bin/python2", {st_mode=S_IFLNK|0777, st_size=9, ...}) = 0 readlink("/usr/bin/python2", "python2.7", 4096) = 9 lstat("/usr/bin/python2.7", {st_mode=S_IFREG|0755, st_size=3492656, ...}) = 0 stat("/usr/bin/Modules/Setup.dist", 0x7ffe192d6a80) = -1 ENOENT (No such file or directory) stat("/usr/bin/Modules/Setup.local", 0x7ffe192d6a80) = -1 ENOENT (No such file or directory) close(4) = 0 stat("/usr/lib/python2.7/re", 0x7ffe192d5cf0) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/re.x86_64-linux-gnu.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/re.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/remodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/re.py", O_RDONLY) = 4 fstat(4, {st_mode=S_IFREG|0644, st_size=13423, ...}) = 0 open("/usr/lib/python2.7/re.pyc", O_RDONLY) = 5 fstat(5, {st_mode=S_IFREG|0644, st_size=13371, ...}) = 0 read(5, "\3\363\r\n\262\217%Zc\0\0\0\0\0\0\0\0\27\0\0\0@\0\0\0sQ\2\0\0d\0"..., 4096) = 4096 fstat(5, {st_mode=S_IFREG|0644, st_size=13371, ...}) = 0 read(5, "ports the following functions:\n "..., 8192) = 8192 read(5, "\0|\10\0\203\1\0\1n\0\0|\7\0}\5\0q-\0W|\2\0|\1\0|\5\0\37f"..., 4096) = 1083 read(5, "", 4096) = 0 close(5) = 0 stat("/usr/lib/python2.7/sre_compile", 0x7ffe192d5820) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/sre_compile.x86_64-linux-gnu.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/sre_compile.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/sre_compilemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/sre_compile.py", O_RDONLY) = 5 fstat(5, {st_mode=S_IFREG|0644, st_size=19817, ...}) = 0 open("/usr/lib/python2.7/sre_compile.pyc", O_RDONLY) = 6 fstat(6, {st_mode=S_IFREG|0644, st_size=12529, ...}) = 0 read(6, "\3\363\r\n\262\217%Zc\0\0\0\0\0\0\0\0\16\0\0\0@\0\0\0s\317\1\0\0d\0"..., 4096) = 4096 fstat(6, {st_mode=S_IFREG|0644, st_size=12529, ...}) = 0 read(6, "_compilet\7\0\0\0SUCCESSt\7\0\0\0_simple"..., 8192) = 8192 read(6, "intRd\0\0\0Rf\0\0\0R'\0\0\0R\226\0\0\0t\7\0\0\0unic"..., 4096) = 241 read(6, "", 4096) = 0 close(6) = 0 stat("/usr/lib/python2.7/sre_parse", 0x7ffe192d5350) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/sre_parse.x86_64-linux-gnu.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/sre_parse.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/sre_parsemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/sre_parse.py", O_RDONLY) = 6 fstat(6, {st_mode=S_IFREG|0644, st_size=28911, ...}) = 0 open("/usr/lib/python2.7/sre_parse.pyc", O_RDONLY) = 7 fstat(7, {st_mode=S_IFREG|0644, st_size=19945, ...}) = 0 read(7, "\3\363\r\n\262\217%Zc\0\0\0\0\0\0\0\0\4\0\0\0@\0\0\0s\312\2\0\0d\0"..., 4096) = 4096 fstat(7, {st_mode=S_IFREG|0644, st_size=19945, ...}) = 0 read(7, "\0\0\3\0\0\0\3\0\0\0C\0\0\0s\21\0\0\0|\2\0|\0\0j\0\0|\1\0<"..., 12288) = 12288 read(7, "\2\0_\4\0t\5\0|\3\0|\2\0d\1\0\203\3\0}\4\0|\3\0j\6\0\203\0\0"..., 4096) = 3561 read(7, "", 4096) = 0 close(7) = 0 stat("/usr/lib/python2.7/sre_constants", 0x7ffe192d4e80) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/sre_constants.x86_64-linux-gnu.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/sre_constants.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/sre_constantsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/sre_constants.py", O_RDONLY) = 7 fstat(7, {st_mode=S_IFREG|0644, st_size=7197, ...}) = 0 open("/usr/lib/python2.7/sre_constants.pyc", O_RDONLY) = 8 fstat(8, {st_mode=S_IFREG|0644, st_size=6185, ...}) = 0 read(8, "\3\363\r\n\262\217%Zc\0\0\0\0\0\0\0\0 \0\0\0@\0\0\0s*\5\0\0d\0"..., 4096) = 4096 fstat(8, {st_mode=S_IFREG|0644, st_size=6185, ...}) = 0 read(8, "FIX %d\ns\34\0\0\0#define SRE_INFO_LIT"..., 4096) = 2089 read(8, "", 4096) = 0 close(8) = 0 close(7) = 0 close(6) = 0 close(5) = 0 mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f9476d39000 close(4) = 0 stat("/usr/lib/python2.7/_sysconfigdata", 0x7ffe192d5bd0) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/_sysconfigdata.x86_64-linux-gnu.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/_sysconfigdata.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/_sysconfigdatamodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/_sysconfigdata.py", O_RDONLY) = 4 fstat(4, {st_mode=S_IFREG|0644, st_size=126, ...}) = 0 open("/usr/lib/python2.7/_sysconfigdata.pyc", O_RDONLY) = 5 fstat(5, {st_mode=S_IFREG|0644, st_size=279, ...}) = 0 read(5, "\3\363\r\n\352{%Zc\0\0\0\0\0\0\0\0\3\0\0\0@\0\0\0s6\0\0\0d\0"..., 4096) = 279 fstat(5, {st_mode=S_IFREG|0644, st_size=279, ...}) = 0 read(5, "", 4096) = 0 close(5) = 0 stat("/usr/lib/python2.7/_sysconfigdata_nd", 0x7ffe192d5700) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/_sysconfigdata_nd.x86_64-linux-gnu.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/_sysconfigdata_nd.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/_sysconfigdata_ndmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/_sysconfigdata_nd.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/_sysconfigdata_nd.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib/python2.7/plat-x86_64-linux-gnu", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 stat("/usr/lib/python2.7/plat-x86_64-linux-gnu", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 stat("/usr/lib/python2.7/plat-x86_64-linux-gnu/_sysconfigdata_nd", 0x7ffe192d5700) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/plat-x86_64-linux-gnu/_sysconfigdata_nd.x86_64-linux-gnu.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/plat-x86_64-linux-gnu/_sysconfigdata_nd.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/plat-x86_64-linux-gnu/_sysconfigdata_ndmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/plat-x86_64-linux-gnu/_sysconfigdata_nd.py", O_RDONLY) = 5 fstat(5, {st_mode=S_IFREG|0644, st_size=17937, ...}) = 0 open("/usr/lib/python2.7/plat-x86_64-linux-gnu/_sysconfigdata_nd.pyc", O_RDONLY) = 6 fstat(6, {st_mode=S_IFREG|0644, st_size=20808, ...}) = 0 read(6, "\3\363\r\n\277\217%Zc\0\0\0\0\0\0\0\0\3\0\0\0@\0\0\0s)\17\0\0i)"..., 4096) = 4096 fstat(6, {st_mode=S_IFREG|0644, st_size=20808, ...}) = 0 brk(0x21cd000) = 0x21cd000 read(6, "er/asdl_c.pyt\r\0\0\0ASDLGEN_FILESs\25"..., 16384) = 16384 read(6, "\7\1\7\1\7\1\7\1\7\1\7\1\7\1\7\1\7\1\7\1\7\1\7\1\7\1\7\1\7\1\7\1"..., 4096) = 328 read(6, "", 4096) = 0 close(6) = 0 close(5) = 0 close(4) = 0 stat("/home/forums/.local/lib/python2.7/site-packages", 0x7ffe192d72b0) = -1 ENOENT (No such file or directory) stat("/home/forums/.local/local/lib/python2.7/dist-packages", 0x7ffe192d72b0) = -1 ENOENT (No such file or directory) stat("/home/forums/.local/lib/python2.7/dist-packages", 0x7ffe192d72b0) = -1 ENOENT (No such file or directory) stat("/usr/local/lib/python2.7/dist-packages", {st_mode=S_IFDIR|S_ISGID|0775, st_size=4096, ...}) = 0 open("/usr/local/lib/python2.7/dist-packages", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = 4 fstat(4, {st_mode=S_IFDIR|S_ISGID|0775, st_size=4096, ...}) = 0 getdents(4, /* 103 entries */, 32768) = 3800 getdents(4, /* 0 entries */, 32768) = 0 close(4) = 0 stat("/usr/lib/python2.7/dist-packages", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0 open("/usr/lib/python2.7/dist-packages", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = 4 fstat(4, {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0 getdents(4, /* 203 entries */, 32768) = 7944 getdents(4, /* 0 entries */, 32768) = 0 close(4) = 0 open("/usr/lib/python2.7/dist-packages/PILcompat.pth", O_RDONLY) = 4 fstat(4, {st_mode=S_IFREG|0644, st_size=10, ...}) = 0 fstat(4, {st_mode=S_IFREG|0644, st_size=10, ...}) = 0 read(4, "PILcompat\n", 8192) = 10 read(4, "", 4096) = 0 stat("/usr/lib/python2.7/dist-packages/PILcompat", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 read(4, "", 8192) = 0 close(4) = 0 open("/usr/lib/python2.7/dist-packages/logilab_common-1.1.0-nspkg.pth", O_RDONLY) = 4 fstat(4, {st_mode=S_IFREG|0644, st_size=308, ...}) = 0 fstat(4, {st_mode=S_IFREG|0644, st_size=308, ...}) = 0 read(4, "import sys, types, os;p = os.pat"..., 8192) = 308 read(4, "", 4096) = 0 brk(0x21f1000) = 0x21f1000 brk(0x21e9000) = 0x21e9000 stat("/usr/lib/python2.7/dist-packages/logilab/__init__.py", {st_mode=S_IFREG|0644, st_size=0, ...}) = 0 read(4, "", 8192) = 0 close(4) = 0 open("/usr/lib/python2.7/dist-packages/pygtk.pth", O_RDONLY) = 4 fstat(4, {st_mode=S_IFREG|0644, st_size=8, ...}) = 0 fstat(4, {st_mode=S_IFREG|0644, st_size=8, ...}) = 0 read(4, "gtk-2.0\n", 8192) = 8 read(4, "", 4096) = 0 stat("/usr/lib/python2.7/dist-packages/gtk-2.0", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 read(4, "", 8192) = 0 close(4) = 0 open("/usr/lib/python2.7/dist-packages/virtualenvwrapper-4.3.1-nspkg.pth", O_RDONLY) = 4 fstat(4, {st_mode=S_IFREG|0644, st_size=338, ...}) = 0 fstat(4, {st_mode=S_IFREG|0644, st_size=338, ...}) = 0 read(4, "import sys, types, os;p = os.pat"..., 8192) = 338 read(4, "", 4096) = 0 stat("/usr/lib/python2.7/dist-packages/virtualenvwrapper/__init__.py", {st_mode=S_IFREG|0644, st_size=0, ...}) = 0 read(4, "", 8192) = 0 close(4) = 0 open("/usr/lib/python2.7/dist-packages/zope.interface-4.3.2-nspkg.pth", O_RDONLY) = 4 fstat(4, {st_mode=S_IFREG|0644, st_size=545, ...}) = 0 fstat(4, {st_mode=S_IFREG|0644, st_size=545, ...}) = 0 read(4, "import sys, types, os;has_mfs = "..., 8192) = 545 read(4, "", 4096) = 0 read(4, "", 8192) = 0 close(4) = 0 stat("/usr/lib/python2.7/sitecustomize", 0x7ffe192d6250) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/sitecustomize.x86_64-linux-gnu.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/sitecustomize.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/sitecustomizemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/sitecustomize.py", O_RDONLY) = 4 fstat(4, {st_mode=S_IFREG|0644, st_size=155, ...}) = 0 open("/usr/lib/python2.7/sitecustomize.pyc", O_RDONLY) = 5 fstat(5, {st_mode=S_IFREG|0644, st_size=232, ...}) = 0 read(5, "\3\363\r\n\265\304\23Wc\0\0\0\0\0\0\0\0\5\0\0\0@\0\0\0s2\0\0\0y\20"..., 4096) = 232 fstat(5, {st_mode=S_IFREG|0644, st_size=232, ...}) = 0 read(5, "", 4096) = 0 close(5) = 0 stat("/usr/lib/python2.7/apport_python_hook", 0x7ffe192d5d80) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/apport_python_hook.x86_64-linux-gnu.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/apport_python_hook.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/apport_python_hookmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/apport_python_hook.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/apport_python_hook.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib/python2.7/plat-x86_64-linux-gnu/apport_python_hook", 0x7ffe192d5d80) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/plat-x86_64-linux-gnu/apport_python_hook.x86_64-linux-gnu.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/plat-x86_64-linux-gnu/apport_python_hook.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/plat-x86_64-linux-gnu/apport_python_hookmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/plat-x86_64-linux-gnu/apport_python_hook.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/plat-x86_64-linux-gnu/apport_python_hook.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib/python2.7/lib-tk", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 stat("/usr/lib/python2.7/lib-tk", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 stat("/usr/lib/python2.7/lib-tk/apport_python_hook", 0x7ffe192d5d80) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/lib-tk/apport_python_hook.x86_64-linux-gnu.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/lib-tk/apport_python_hook.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/lib-tk/apport_python_hookmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/lib-tk/apport_python_hook.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/lib-tk/apport_python_hook.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib/python2.7/lib-old", 0x7ffe192d4b10) = -1 ENOENT (No such file or directory) stat("/usr/lib/python2.7", {st_mode=S_IFDIR|0755, st_size=20480, ...}) = 0 stat("/usr/lib/python2.7/lib-old", 0x7ffe192d5af0) = -1 ENOENT (No such file or directory) stat("/usr/lib/python2.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0 stat("/usr/lib/python2.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0 stat("/usr/lib/python2.7/lib-dynload/apport_python_hook", 0x7ffe192d5d80) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/lib-dynload/apport_python_hook.x86_64-linux-gnu.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/lib-dynload/apport_python_hook.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/lib-dynload/apport_python_hookmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/lib-dynload/apport_python_hook.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/lib-dynload/apport_python_hook.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/local/lib/python2.7/dist-packages", {st_mode=S_IFDIR|S_ISGID|0775, st_size=4096, ...}) = 0 stat("/usr/local/lib/python2.7/dist-packages", {st_mode=S_IFDIR|S_ISGID|0775, st_size=4096, ...}) = 0 stat("/usr/local/lib/python2.7/dist-packages/apport_python_hook", 0x7ffe192d5d80) = -1 ENOENT (No such file or directory) open("/usr/local/lib/python2.7/dist-packages/apport_python_hook.x86_64-linux-gnu.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/local/lib/python2.7/dist-packages/apport_python_hook.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/local/lib/python2.7/dist-packages/apport_python_hookmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/local/lib/python2.7/dist-packages/apport_python_hook.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/local/lib/python2.7/dist-packages/apport_python_hook.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib/python2.7/dist-packages", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0 stat("/usr/lib/python2.7/dist-packages", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0 stat("/usr/lib/python2.7/dist-packages/apport_python_hook", 0x7ffe192d5d80) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/dist-packages/apport_python_hook.x86_64-linux-gnu.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/dist-packages/apport_python_hook.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/dist-packages/apport_python_hookmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/dist-packages/apport_python_hook.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/dist-packages/apport_python_hook.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib/python2.7/dist-packages/PILcompat", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 stat("/usr/lib/python2.7/dist-packages/PILcompat", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 stat("/usr/lib/python2.7/dist-packages/PILcompat/apport_python_hook", 0x7ffe192d5d80) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/dist-packages/PILcompat/apport_python_hook.x86_64-linux-gnu.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/dist-packages/PILcompat/apport_python_hook.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/dist-packages/PILcompat/apport_python_hookmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/dist-packages/PILcompat/apport_python_hook.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/dist-packages/PILcompat/apport_python_hook.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib/python2.7/dist-packages/gtk-2.0", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 stat("/usr/lib/python2.7/dist-packages/gtk-2.0", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 stat("/usr/lib/python2.7/dist-packages/gtk-2.0/apport_python_hook", 0x7ffe192d5d80) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/dist-packages/gtk-2.0/apport_python_hook.x86_64-linux-gnu.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/dist-packages/gtk-2.0/apport_python_hook.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/dist-packages/gtk-2.0/apport_python_hookmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/dist-packages/gtk-2.0/apport_python_hook.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/dist-packages/gtk-2.0/apport_python_hook.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) close(4) = 0 stat("/usr/lib/python2.7/usercustomize", 0x7ffe192d6250) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/usercustomize.x86_64-linux-gnu.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/usercustomize.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/usercustomizemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/usercustomize.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/usercustomize.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib/python2.7/plat-x86_64-linux-gnu/usercustomize", 0x7ffe192d6250) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/plat-x86_64-linux-gnu/usercustomize.x86_64-linux-gnu.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/plat-x86_64-linux-gnu/usercustomize.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/plat-x86_64-linux-gnu/usercustomizemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/plat-x86_64-linux-gnu/usercustomize.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/plat-x86_64-linux-gnu/usercustomize.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib/python2.7/lib-tk/usercustomize", 0x7ffe192d6250) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/lib-tk/usercustomize.x86_64-linux-gnu.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/lib-tk/usercustomize.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/lib-tk/usercustomizemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/lib-tk/usercustomize.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/lib-tk/usercustomize.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib/python2.7/lib-dynload/usercustomize", 0x7ffe192d6250) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/lib-dynload/usercustomize.x86_64-linux-gnu.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/lib-dynload/usercustomize.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/lib-dynload/usercustomizemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/lib-dynload/usercustomize.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/lib-dynload/usercustomize.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/local/lib/python2.7/dist-packages/usercustomize", 0x7ffe192d6250) = -1 ENOENT (No such file or directory) open("/usr/local/lib/python2.7/dist-packages/usercustomize.x86_64-linux-gnu.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/local/lib/python2.7/dist-packages/usercustomize.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/local/lib/python2.7/dist-packages/usercustomizemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/local/lib/python2.7/dist-packages/usercustomize.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/local/lib/python2.7/dist-packages/usercustomize.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib/python2.7/dist-packages/usercustomize", 0x7ffe192d6250) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/dist-packages/usercustomize.x86_64-linux-gnu.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/dist-packages/usercustomize.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/dist-packages/usercustomizemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/dist-packages/usercustomize.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/dist-packages/usercustomize.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib/python2.7/dist-packages/PILcompat/usercustomize", 0x7ffe192d6250) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/dist-packages/PILcompat/usercustomize.x86_64-linux-gnu.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/dist-packages/PILcompat/usercustomize.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/dist-packages/PILcompat/usercustomizemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/dist-packages/PILcompat/usercustomize.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/dist-packages/PILcompat/usercustomize.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib/python2.7/dist-packages/gtk-2.0/usercustomize", 0x7ffe192d6250) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/dist-packages/gtk-2.0/usercustomize.x86_64-linux-gnu.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/dist-packages/gtk-2.0/usercustomize.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/dist-packages/gtk-2.0/usercustomizemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/dist-packages/gtk-2.0/usercustomize.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/dist-packages/gtk-2.0/usercustomize.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) close(3) = 0 stat("/usr/lib/python2.7/encodings", {st_mode=S_IFDIR|0755, st_size=20480, ...}) = 0 stat("/usr/lib/python2.7/encodings/__init__.py", {st_mode=S_IFREG|0644, st_size=5698, ...}) = 0 stat("/usr/lib/python2.7/encodings/__init__", 0x7ffe192d6a50) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/encodings/__init__.x86_64-linux-gnu.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/encodings/__init__.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/encodings/__init__module.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/encodings/__init__.py", O_RDONLY) = 3 fstat(3, {st_mode=S_IFREG|0644, st_size=5698, ...}) = 0 open("/usr/lib/python2.7/encodings/__init__.pyc", O_RDONLY) = 4 fstat(4, {st_mode=S_IFREG|0644, st_size=4370, ...}) = 0 read(4, "\3\363\r\n\264\217%Zc\0\0\0\0\0\0\0\0\3\0\0\0@\0\0\0s\216\0\0\0d\0"..., 4096) = 4096 fstat(4, {st_mode=S_IFREG|0644, st_size=4370, ...}) = 0 read(4, "\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 read(4, "", 4096) = 0 close(4) = 0 stat("/usr/lib/python2.7/encodings", {st_mode=S_IFDIR|0755, st_size=20480, ...}) = 0 stat("/usr/lib/python2.7/encodings", {st_mode=S_IFDIR|0755, st_size=20480, ...}) = 0 stat("/usr/lib/python2.7/encodings/codecs", 0x7ffe192d6580) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/encodings/codecs.x86_64-linux-gnu.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/encodings/codecs.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/encodings/codecsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/encodings/codecs.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/encodings/codecs.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib/python2.7/codecs", 0x7ffe192d6580) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/codecs.x86_64-linux-gnu.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/codecs.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/codecsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/codecs.py", O_RDONLY) = 4 fstat(4, {st_mode=S_IFREG|0644, st_size=36095, ...}) = 0 open("/usr/lib/python2.7/codecs.pyc", O_RDONLY) = 5 fstat(5, {st_mode=S_IFREG|0644, st_size=36654, ...}) = 0 read(5, "\3\363\r\n\262\217%Zc\0\0\0\0\0\0\0\0+\0\0\0@\0\0\0sp\3\0\0d\0"..., 4096) = 4096 fstat(5, {st_mode=S_IFREG|0644, st_size=36654, ...}) = 0 read(5, "ndling.\n\n The method "..., 28672) = 28672 read(5, "oding cannot be found\n or"..., 4096) = 3886 read(5, "", 4096) = 0 close(5) = 0 close(4) = 0 stat("/usr/lib/python2.7/encodings/encodings", 0x7ffe192d6580) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/encodings/encodings.x86_64-linux-gnu.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/encodings/encodings.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/encodings/encodingsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/encodings/encodings.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/encodings/encodings.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib/python2.7/encodings/aliases", 0x7ffe192d6520) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/encodings/aliases.x86_64-linux-gnu.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/encodings/aliases.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/encodings/aliasesmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/encodings/aliases.py", O_RDONLY) = 4 fstat(4, {st_mode=S_IFREG|0644, st_size=14848, ...}) = 0 open("/usr/lib/python2.7/encodings/aliases.pyc", O_RDONLY) = 5 fstat(5, {st_mode=S_IFREG|0644, st_size=8768, ...}) = 0 read(5, "\3\363\r\n\264\217%Zc\0\0\0\0\0\0\0\0\3\0\0\0@\0\0\0su\10\0\0d\0"..., 4096) = 4096 fstat(5, {st_mode=S_IFREG|0644, st_size=8768, ...}) = 0 read(5, "ibm860t\6\0\0\0ibm860t\5\0\0\0cp861t\3\0\0\0"..., 4096) = 4096 read(5, "\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 read(5, "", 4096) = 0 close(5) = 0 close(4) = 0 stat("/usr/lib/python2.7/encodings/__builtin__", 0x7ffe192d6580) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/encodings/__builtin__.x86_64-linux-gnu.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/encodings/__builtin__.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/encodings/__builtin__module.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/encodings/__builtin__.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/encodings/__builtin__.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) close(3) = 0 stat("/usr/lib/python2.7/encodings/ascii", 0x7ffe192d67e0) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/encodings/ascii.x86_64-linux-gnu.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/encodings/ascii.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/encodings/asciimodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/encodings/ascii.py", O_RDONLY) = 3 fstat(3, {st_mode=S_IFREG|0644, st_size=1248, ...}) = 0 open("/usr/lib/python2.7/encodings/ascii.pyc", O_RDONLY) = 4 fstat(4, {st_mode=S_IFREG|0644, st_size=2261, ...}) = 0 read(4, "\3\363\r\n\264\217%Zc\0\0\0\0\0\0\0\0\3\0\0\0@\0\0\0s\273\0\0\0d\0"..., 4096) = 2261 fstat(4, {st_mode=S_IFREG|0644, st_size=2261, ...}) = 0 read(4, "", 4096) = 0 close(4) = 0 close(3) = 0 ioctl(0, TCGETS, 0x7ffe192d7af0) = -1 ENOTTY (Inappropriate ioctl for device) ioctl(1, TCGETS, {B38400 opost isig icanon echo ...}) = 0 ioctl(2, TCGETS, {B38400 opost isig icanon echo ...}) = 0 readlink("pycat.py", 0x7ffe192d4ce0, 4096) = -1 EINVAL (Invalid argument) getcwd("/home/forums", 4096) = 13 lstat("/home/forums/pycat.py", {st_mode=S_IFREG|0744, st_size=322, ...}) = 0 stat("pycat.py", {st_mode=S_IFREG|0744, st_size=322, ...}) = 0 open("pycat.py", O_RDONLY) = 3 fstat(3, {st_mode=S_IFREG|0744, st_size=322, ...}) = 0 fstat(3, {st_mode=S_IFREG|0744, st_size=322, ...}) = 0 lseek(3, 0, SEEK_SET) = 0 read(3, "#!/usr/bin/env python\n# -*- codi"..., 300) = 300 read(3, "t)\n stdout.flush()\n", 4096) = 22 close(3) = 0 stat("pycat.py", {st_mode=S_IFREG|0744, st_size=322, ...}) = 0 open("pycat.py", O_RDONLY) = 3 fstat(3, {st_mode=S_IFREG|0744, st_size=322, ...}) = 0 ioctl(3, TCGETS, 0x7ffe192d7c60) = -1 ENOTTY (Inappropriate ioctl for device) lseek(3, 0, SEEK_CUR) = 0 fstat(3, {st_mode=S_IFREG|0744, st_size=322, ...}) = 0 read(3, "#!/usr/bin/env python\n# -*- codi"..., 4096) = 322 lseek(3, 0, SEEK_SET) = 0 read(3, "#!/usr/bin/env python\n# -*- codi"..., 4096) = 322 read(3, "", 4096) = 0 close(3) = 0 stat("/home/forums", {st_mode=S_IFDIR|0755, st_size=36864, ...}) = 0 stat("/home/forums", {st_mode=S_IFDIR|0755, st_size=36864, ...}) = 0 stat("/home/forums/__future__", 0x7ffe192d6810) = -1 ENOENT (No such file or directory) open("/home/forums/__future__.x86_64-linux-gnu.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/home/forums/__future__.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/home/forums/__future__module.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/home/forums/__future__.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/home/forums/__future__.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib/python2.7/__future__", 0x7ffe192d6810) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/__future__.x86_64-linux-gnu.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/__future__.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/__future__module.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/__future__.py", O_RDONLY) = 3 fstat(3, {st_mode=S_IFREG|0644, st_size=4380, ...}) = 0 open("/usr/lib/python2.7/__future__.pyc", O_RDONLY) = 4 fstat(4, {st_mode=S_IFREG|0644, st_size=4216, ...}) = 0 read(4, "\3\363\r\n\262\217%Zc\0\0\0\0\0\0\0\0\7\0\0\0@\0\0\0s\355\0\0\0d\0"..., 4096) = 4096 fstat(4, {st_mode=S_IFREG|0644, st_size=4216, ...}) = 0 read(4, "/python2.7/__future__.pyt\10\0\0\0<mo"..., 4096) = 120 read(4, "", 4096) = 0 close(4) = 0 close(3) = 0 stat("/home/forums/subprocess", 0x7ffe192d6810) = -1 ENOENT (No such file or directory) open("/home/forums/subprocess.x86_64-linux-gnu.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/home/forums/subprocess.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/home/forums/subprocessmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/home/forums/subprocess.py", O_RDONLY) = -1 ENOENT (No such file or directory) open("/home/forums/subprocess.pyc", O_RDONLY) = -1 ENOENT (No such file or directory) stat("/usr/lib/python2.7/subprocess", 0x7ffe192d6810) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/subprocess.x86_64-linux-gnu.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/subprocess.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/subprocessmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/python2.7/subprocess.py", O_RDONLY) = 3 fstat(3, {st_mode=S_IFREG|0644, st_size=59886, ...}) = 0 open("/usr/lib/python2.7/subprocess.pyc", O_RDONLY) = 4 fstat(4, {st_mode=S_IFREG|0644, st_size=42012, ...}) = 0 read(4, "\3\363\r\n\262\217%Zc\0\0\0\0\0\0\0\0\t\0\0\0@\0\0\0s`\2\0\0d\0"..., 4096) = 4096 fstat(4, {st_mode=S_IFREG|0644, st_size=42012, ...}) = 0 read(4, "convention, '\\r', the Macintosh "..., 36864) = 36864 read(4, "OENTR\r\1\0\0R)\0\0\0Ru\0\0\0(\5\0\0\0t\5\0\0\0pli"..., 4096) = 1052 read(4, "", 4096) = 0 brk(0x220a000) = 0x220a000 close(4) = 0 open("/etc/localtime", O_RDONLY|O_CLOEXEC) = 4 fstat(4, {st_mode=S_IFREG|0644, st_size=3545, ...}) = 0 fstat(4, {st_mode=S_IFREG|0644, st_size=3545, ...}) = 0 read(4, "TZif2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\5\0\0\0\5\0\0\0\0"..., 4096) = 3545 lseek(4, -2261, SEEK_CUR) = 128 |