Created
December 5, 2012 01:44
-
-
Save lehrblogger/4211296 to your computer and use it in GitHub Desktop.
"[Errno 30] Read-only file system" from virtualenv in vagrant shared folder
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
vagrant@lucid32:/vagrant$ virtualenv test0 | |
New python executable in test0/bin/python | |
Traceback (most recent call last): | |
File "/usr/local/bin/virtualenv", line 9, in <module> | |
load_entry_point('virtualenv==1.8.4', 'console_scripts', 'virtualenv')() | |
File "/usr/local/lib/python2.6/dist-packages/virtualenv.py", line 964, in main | |
never_download=options.never_download) | |
File "/usr/local/lib/python2.6/dist-packages/virtualenv.py", line 1065, in create_environment | |
site_packages=site_packages, clear=clear)) | |
File "/usr/local/lib/python2.6/dist-packages/virtualenv.py", line 1485, in install_python | |
os.symlink(py_executable_base, full_pth) | |
OSError: [Errno 30] Read-only file system | |
vagrant@lucid32:/vagrant$ virtualenv --version | |
1.8.4 | |
vagrant@lucid32:/vagrant$ strace -f virtualenv test0 | |
execve("/usr/local/bin/virtualenv", ["virtualenv", "test0"], [/* 18 vars */]) = 0 | |
brk(0) = 0x83be000 | |
access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) | |
mmap2(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7725000 | |
access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory) | |
open("/etc/ld.so.cache", O_RDONLY) = 3 | |
fstat64(3, {st_mode=S_IFREG|0644, st_size=16158, ...}) = 0 | |
mmap2(NULL, 16158, PROT_READ, MAP_PRIVATE, 3, 0) = 0xb7721000 | |
close(3) = 0 | |
access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) | |
open("/lib/tls/i686/cmov/libpthread.so.0", O_RDONLY) = 3 | |
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0 J\0\0004\0\0\0"..., 512) = 512 | |
fstat64(3, {st_mode=S_IFREG|0755, st_size=117086, ...}) = 0 | |
mmap2(NULL, 98792, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xfe3000 | |
mmap2(0xff8000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x14) = 0xff8000 | |
mmap2(0xffa000, 4584, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0xffa000 | |
close(3) = 0 | |
access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) | |
open("/lib/tls/i686/cmov/libdl.so.2", O_RDONLY) = 3 | |
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0@\n\0\0004\0\0\0"..., 512) = 512 | |
fstat64(3, {st_mode=S_IFREG|0644, st_size=9736, ...}) = 0 | |
mmap2(NULL, 12408, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xab9000 | |
mmap2(0xabb000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1) = 0xabb000 | |
close(3) = 0 | |
access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) | |
open("/lib/tls/i686/cmov/libutil.so.1", O_RDONLY) = 3 | |
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\0\n\0\0004\0\0\0"..., 512) = 512 | |
fstat64(3, {st_mode=S_IFREG|0644, st_size=9748, ...}) = 0 | |
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7720000 | |
mmap2(NULL, 12424, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x57f000 | |
mmap2(0x581000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1) = 0x581000 | |
close(3) = 0 | |
access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) | |
open("/lib/i686/cmov/libssl.so.0.9.8", O_RDONLY) = 3 | |
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\20\314\0\0004\0\0\0"..., 512) = 512 | |
fstat64(3, {st_mode=S_IFREG|0644, st_size=294672, ...}) = 0 | |
mmap2(NULL, 297528, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xdda000 | |
mprotect(0xe1e000, 4096, PROT_NONE) = 0 | |
mmap2(0xe1f000, 16384, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x44) = 0xe1f000 | |
close(3) = 0 | |
access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) | |
open("/lib/i686/cmov/libcrypto.so.0.9.8", O_RDONLY) = 3 | |
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0@\334\3\0004\0\0\0"..., 512) = 512 | |
fstat64(3, {st_mode=S_IFREG|0644, st_size=1364764, ...}) = 0 | |
mmap2(NULL, 1380472, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x110000 | |
mmap2(0x248000, 90112, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x137) = 0x248000 | |
mmap2(0x25e000, 12408, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x25e000 | |
close(3) = 0 | |
access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) | |
open("/lib/libz.so.1", O_RDONLY) = 3 | |
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\240\31\0\0004\0\0\0"..., 512) = 512 | |
fstat64(3, {st_mode=S_IFREG|0644, st_size=79512, ...}) = 0 | |
mmap2(NULL, 82188, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xc20000 | |
mmap2(0xc33000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x12) = 0xc33000 | |
close(3) = 0 | |
access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) | |
open("/lib/tls/i686/cmov/libm.so.6", O_RDONLY) = 3 | |
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0`4\0\0004\0\0\0"..., 512) = 512 | |
fstat64(3, {st_mode=S_IFREG|0644, st_size=149392, ...}) = 0 | |
mmap2(NULL, 151680, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x6b3000 | |
mmap2(0x6d7000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x23) = 0x6d7000 | |
close(3) = 0 | |
access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) | |
open("/lib/tls/i686/cmov/libc.so.6", O_RDONLY) = 3 | |
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0000m\1\0004\0\0\0"..., 512) = 512 | |
fstat64(3, {st_mode=S_IFREG|0755, st_size=1405508, ...}) = 0 | |
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb771f000 | |
mmap2(NULL, 1411496, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x2df000 | |
mmap2(0x432000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x153) = 0x432000 | |
mmap2(0x435000, 10664, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x435000 | |
close(3) = 0 | |
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb771e000 | |
set_thread_area({entry_number:-1 -> 6, base_addr:0xb771e6c0, limit:1048575, seg_32bit:1, contents:0, read_exec_only:0, limit_in_pages:1, seg_not_present:0, useable:1}) = 0 | |
mprotect(0x432000, 8192, PROT_READ) = 0 | |
mprotect(0x6d7000, 4096, PROT_READ) = 0 | |
mprotect(0xc33000, 4096, PROT_READ) = 0 | |
mprotect(0x248000, 32768, PROT_READ) = 0 | |
mprotect(0xe1f000, 4096, PROT_READ) = 0 | |
mprotect(0x581000, 4096, PROT_READ) = 0 | |
mprotect(0xabb000, 4096, PROT_READ) = 0 | |
mprotect(0xff8000, 4096, PROT_READ) = 0 | |
mprotect(0x8228000, 4096, PROT_READ) = 0 | |
mprotect(0xa91000, 4096, PROT_READ) = 0 | |
munmap(0xb7721000, 16158) = 0 | |
set_tid_address(0xb771e728) = 1023 | |
set_robust_list(0xb771e730, 0xc) = 0 | |
futex(0xbff86de0, FUTEX_WAKE_PRIVATE, 1) = 0 | |
futex(0xbff86de0, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 1, NULL, bff86df0) = -1 EAGAIN (Resource temporarily unavailable) | |
rt_sigaction(SIGRTMIN, {0xfe7410, [], SA_SIGINFO}, NULL, 8) = 0 | |
rt_sigaction(SIGRT_1, {0xfe78f0, [], SA_RESTART|SA_SIGINFO}, NULL, 8) = 0 | |
rt_sigprocmask(SIG_UNBLOCK, [RTMIN RT_1], NULL, 8) = 0 | |
getrlimit(RLIMIT_STACK, {rlim_cur=8192*1024, rlim_max=RLIM_INFINITY}) = 0 | |
uname({sys="Linux", node="lucid32", ...}) = 0 | |
ioctl(0, SNDCTL_TMR_TIMEBASE or TCGETS, {B9600 opost isig icanon echo ...}) = 0 | |
brk(0) = 0x83be000 | |
brk(0x83df000) = 0x83df000 | |
mmap2(NULL, 266240, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb76dd000 | |
open("/proc/meminfo", O_RDONLY) = 3 | |
fstat64(3, {st_mode=S_IFREG|0444, st_size=0, ...}) = 0 | |
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7724000 | |
read(3, "MemTotal: 379840 kB\nMemF"..., 1024) = 1024 | |
close(3) = 0 | |
munmap(0xb7724000, 4096) = 0 | |
fstat64(0, {st_mode=S_IFCHR|0620, st_rdev=makedev(136, 0), ...}) = 0 | |
fstat64(0, {st_mode=S_IFCHR|0620, st_rdev=makedev(136, 0), ...}) = 0 | |
fstat64(1, {st_mode=S_IFCHR|0620, st_rdev=makedev(136, 0), ...}) = 0 | |
fstat64(2, {st_mode=S_IFCHR|0620, st_rdev=makedev(136, 0), ...}) = 0 | |
readlink("/usr/bin/python", "python2.6", 4096) = 9 | |
readlink("/usr/bin/python2.6", 0xbff84b8a, 4096) = -1 EINVAL (Invalid argument) | |
stat64("/usr/bin/Modules/Setup", 0xbff84b28) = -1 ENOENT (No such file or directory) | |
stat64("/usr/bin/lib/python2.6/os.py", 0xbff84a80) = -1 ENOENT (No such file or directory) | |
stat64("/usr/bin/lib/python2.6/os.pyc", 0xbff84a80) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/os.py", {st_mode=S_IFREG|0644, st_size=26338, ...}) = 0 | |
stat64("/usr/bin/Modules/Setup", 0xbff84b28) = -1 ENOENT (No such file or directory) | |
stat64("/usr/bin/lib/python2.6/lib-dynload", 0xbff84b28) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
rt_sigaction(SIGPIPE, {SIG_IGN, [], 0}, {SIG_DFL, [], 0}, 8) = 0 | |
rt_sigaction(SIGXFSZ, {SIG_IGN, [], 0}, {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, [], 0}, 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, [], 0}, 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, {0x810fde0, [], 0}, {SIG_DFL, [], 0}, 8) = 0 | |
stat64("/usr/lib/python2.6/", {st_mode=S_IFDIR|0755, st_size=16384, ...}) = 0 | |
stat64("/usr/lib/python2.6/", {st_mode=S_IFDIR|0755, st_size=16384, ...}) = 0 | |
stat64("/usr/lib/python2.6/site", 0xbff82968) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/site.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/sitemodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/site.py", O_RDONLY|O_LARGEFILE) = 3 | |
fstat64(3, {st_mode=S_IFREG|0644, st_size=18712, ...}) = 0 | |
open("/usr/lib/python2.6/site.pyc", O_RDONLY|O_LARGEFILE) = 4 | |
fstat64(4, {st_mode=S_IFREG|0644, st_size=18238, ...}) = 0 | |
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7724000 | |
read(4, "\321\362\r\n'm\310Kc\0\0\0\0\0\0\0\0\6\0\0\0@\0\0\0sK\1\0\0d\0"..., 4096) = 4096 | |
fstat64(4, {st_mode=S_IFREG|0644, st_size=18238, ...}) = 0 | |
read(4, "\0\0\0\3\0\0\0\6\0\0\0C\0\0\0st\0\0\0t\0\0\203\0\0}\0\0xd\0"..., 12288) = 12288 | |
read(4, "\0\0R\t\0\0\0R]\0\0\0Rh\0\0\0Rz\0\0\0R\240\0\0\0R\245\0\0\0"..., 4096) = 1854 | |
read(4, "", 4096) = 0 | |
brk(0x8400000) = 0x8400000 | |
close(4) = 0 | |
munmap(0xb7724000, 4096) = 0 | |
stat64("/usr/lib/python2.6/os", 0xbff7f4f8) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/os.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/osmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/os.py", O_RDONLY|O_LARGEFILE) = 4 | |
fstat64(4, {st_mode=S_IFREG|0644, st_size=26338, ...}) = 0 | |
open("/usr/lib/python2.6/os.pyc", O_RDONLY|O_LARGEFILE) = 5 | |
fstat64(5, {st_mode=S_IFREG|0644, st_size=26303, ...}) = 0 | |
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7724000 | |
read(5, "\321\362\r\n\21m\310Kc\0\0\0\0\0\0\0\0\36\0\0\0@\0\0\0sH\7\0\0d\0"..., 4096) = 4096 | |
fstat64(5, {st_mode=S_IFREG|0644, st_size=26303, ...}) = 0 | |
read(5, "intermediate path segment (not\n "..., 20480) = 20480 | |
read(5, "\0S(\1\0\0\0N(\2\0\0\0R\256\0\0\0R\263\0\0\0(\3\0\0\0R\257\0\0"..., 4096) = 1727 | |
read(5, "", 4096) = 0 | |
close(5) = 0 | |
munmap(0xb7724000, 4096) = 0 | |
mmap2(NULL, 266240, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb769c000 | |
stat64("/usr/lib/python2.6/posixpath", 0xbff7c088) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/posixpath.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/posixpathmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/posixpath.py", O_RDONLY|O_LARGEFILE) = 5 | |
fstat64(5, {st_mode=S_IFREG|0644, st_size=13030, ...}) = 0 | |
open("/usr/lib/python2.6/posixpath.pyc", O_RDONLY|O_LARGEFILE) = 6 | |
fstat64(6, {st_mode=S_IFREG|0644, st_size=11115, ...}) = 0 | |
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb769b000 | |
read(6, "\321\362\r\n\21m\310Kc\0\0\0\0\0\0\0\0+\0\0\0@\0\0\0s\320\1\0\0d\0"..., 4096) = 4096 | |
fstat64(6, {st_mode=S_IFREG|0644, st_size=11115, ...}) = 0 | |
read(6, "\0\0\0(\0\0\0\0(\0\0\0\0s\37\0\0\0/usr/lib/pytho"..., 4096) = 4096 | |
read(6, "\0\1|\0\0i\3\0d\3\0\203\1\0}\4\0g\0\0}\5\0x}\0|\4\0D]u"..., 4096) = 2923 | |
read(6, "", 4096) = 0 | |
close(6) = 0 | |
munmap(0xb769b000, 4096) = 0 | |
stat64("/usr/lib/python2.6/stat", 0xbff78c18) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/stat.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/statmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/stat.py", O_RDONLY|O_LARGEFILE) = 6 | |
fstat64(6, {st_mode=S_IFREG|0644, st_size=1718, ...}) = 0 | |
open("/usr/lib/python2.6/stat.pyc", O_RDONLY|O_LARGEFILE) = 7 | |
fstat64(7, {st_mode=S_IFREG|0644, st_size=2683, ...}) = 0 | |
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb769b000 | |
read(7, "\321\362\r\n\21m\310Kc\0\0\0\0\0\0\0\0\1\0\0\0@\0\0\0so\1\0\0d\0"..., 4096) = 2683 | |
fstat64(7, {st_mode=S_IFREG|0644, st_size=2683, ...}) = 0 | |
read(7, "", 4096) = 0 | |
close(7) = 0 | |
munmap(0xb769b000, 4096) = 0 | |
close(6) = 0 | |
stat64("/usr/lib/python2.6/genericpath", 0xbff78c18) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/genericpath.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/genericpathmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/genericpath.py", O_RDONLY|O_LARGEFILE) = 6 | |
fstat64(6, {st_mode=S_IFREG|0644, st_size=3020, ...}) = 0 | |
open("/usr/lib/python2.6/genericpath.pyc", O_RDONLY|O_LARGEFILE) = 7 | |
fstat64(7, {st_mode=S_IFREG|0644, st_size=3272, ...}) = 0 | |
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb769b000 | |
read(7, "\321\362\r\n\21m\310Kc\0\0\0\0\0\0\0\0\n\0\0\0@\0\0\0s\221\0\0\0d\0"..., 4096) = 3272 | |
fstat64(7, {st_mode=S_IFREG|0644, st_size=3272, ...}) = 0 | |
read(7, "", 4096) = 0 | |
close(7) = 0 | |
munmap(0xb769b000, 4096) = 0 | |
close(6) = 0 | |
stat64("/usr/lib/python2.6/warnings", 0xbff78c18) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/warnings.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/warningsmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/warnings.py", O_RDONLY|O_LARGEFILE) = 6 | |
fstat64(6, {st_mode=S_IFREG|0644, st_size=14173, ...}) = 0 | |
open("/usr/lib/python2.6/warnings.pyc", O_RDONLY|O_LARGEFILE) = 7 | |
fstat64(7, {st_mode=S_IFREG|0644, st_size=12996, ...}) = 0 | |
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb769b000 | |
read(7, "\321\362\r\n\21m\310Kc\0\0\0\0\0\0\0\0\r\0\0\0@\0\0\0s3\2\0\0d\0"..., 4096) = 4096 | |
fstat64(7, {st_mode=S_IFREG|0644, st_size=12996, ...}) = 0 | |
read(7, "\34\0\1\1}\2\0\1t\2\0i\3\0\4d\1\0\2I\4|\2\0\2IJq\7\0\1X"..., 8192) = 8192 | |
read(7, "\0\0R6\0\0\0R\215\0\0\0R\10\0\0\0R\207\0\0\0R\222\0\0\0R\230\0\0\0"..., 4096) = 708 | |
read(7, "", 4096) = 0 | |
close(7) = 0 | |
munmap(0xb769b000, 4096) = 0 | |
stat64("/usr/lib/python2.6/linecache", 0xbff757a8) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/linecache.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/linecachemodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/linecache.py", O_RDONLY|O_LARGEFILE) = 7 | |
fstat64(7, {st_mode=S_IFREG|0644, st_size=4209, ...}) = 0 | |
open("/usr/lib/python2.6/linecache.pyc", O_RDONLY|O_LARGEFILE) = 8 | |
fstat64(8, {st_mode=S_IFREG|0644, st_size=3234, ...}) = 0 | |
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb769b000 | |
read(8, "\321\362\r\n\21m\310Kc\0\0\0\0\0\0\0\0\5\0\0\0@\0\0\0sp\0\0\0d\0"..., 4096) = 3234 | |
fstat64(8, {st_mode=S_IFREG|0644, st_size=3234, ...}) = 0 | |
read(8, "", 4096) = 0 | |
brk(0x8426000) = 0x8426000 | |
close(8) = 0 | |
munmap(0xb769b000, 4096) = 0 | |
close(7) = 0 | |
stat64("/usr/lib/python2.6/types", 0xbff757a8) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/types.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/typesmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/types.py", O_RDONLY|O_LARGEFILE) = 7 | |
fstat64(7, {st_mode=S_IFREG|0644, st_size=2323, ...}) = 0 | |
open("/usr/lib/python2.6/types.pyc", O_RDONLY|O_LARGEFILE) = 8 | |
fstat64(8, {st_mode=S_IFREG|0644, st_size=2608, ...}) = 0 | |
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb769b000 | |
read(8, "\321\362\r\n\21m\310Kc\0\0\0\0\0\0\0\0\17\0\0\0@\0\0\0so\2\0\0d\0"..., 4096) = 2608 | |
fstat64(8, {st_mode=S_IFREG|0644, st_size=2608, ...}) = 0 | |
read(8, "", 4096) = 0 | |
close(8) = 0 | |
munmap(0xb769b000, 4096) = 0 | |
close(7) = 0 | |
close(6) = 0 | |
close(5) = 0 | |
stat64("/usr/lib/python2.6/UserDict", 0xbff7c088) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/UserDict.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/UserDictmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/UserDict.py", O_RDONLY|O_LARGEFILE) = 5 | |
fstat64(5, {st_mode=S_IFREG|0644, st_size=5778, ...}) = 0 | |
open("/usr/lib/python2.6/UserDict.pyc", O_RDONLY|O_LARGEFILE) = 6 | |
fstat64(6, {st_mode=S_IFREG|0644, st_size=8802, ...}) = 0 | |
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb769b000 | |
read(6, "\321\362\r\n\20m\310Kc\0\0\0\0\0\0\0\0\4\0\0\0@\0\0\0sb\0\0\0d\0"..., 4096) = 4096 | |
fstat64(6, {st_mode=S_IFREG|0644, st_size=8802, ...}) = 0 | |
read(6, "Dict.pyR*\0\0\0C\0\0\0s\2\0\0\0\0\1c\2\0\0\0\2\0\0\0"..., 4096) = 4096 | |
read(6, "\v\0\0\0R7\0\0\0R\6\0\0\0R\35\0\0\0R\f\0\0\0(\2\0\0\0R\5\0"..., 4096) = 610 | |
read(6, "", 4096) = 0 | |
close(6) = 0 | |
munmap(0xb769b000, 4096) = 0 | |
stat64("/usr/lib/python2.6/_abcoll", 0xbff78c18) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/_abcoll.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/_abcollmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/_abcoll.py", O_RDONLY|O_LARGEFILE) = 6 | |
fstat64(6, {st_mode=S_IFREG|0644, st_size=13645, ...}) = 0 | |
open("/usr/lib/python2.6/_abcoll.pyc", O_RDONLY|O_LARGEFILE) = 7 | |
fstat64(7, {st_mode=S_IFREG|0644, st_size=21456, ...}) = 0 | |
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb769b000 | |
read(7, "\321\362\r\n\20m\310Kc\0\0\0\0\0\0\0\0\22\0\0\0@\0\0\0s@\2\0\0d\0"..., 4096) = 4096 | |
fstat64(7, {st_mode=S_IFREG|0644, st_size=21456, ...}) = 0 | |
read(7, "__contains___\0\0\0s\2\0\0\0\0\2c\2\0\0\0\2\0\0\0"..., 16384) = 16384 | |
read(7, "yt\6\0\0\0extend\"\2\0\0s\6\0\0\0\0\1\7\0\6\1i\377\377\377\377"..., 4096) = 976 | |
read(7, "", 4096) = 0 | |
close(7) = 0 | |
munmap(0xb769b000, 4096) = 0 | |
stat64("/usr/lib/python2.6/abc", 0xbff757a8) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/abc.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/abcmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/abc.py", O_RDONLY|O_LARGEFILE) = 7 | |
fstat64(7, {st_mode=S_IFREG|0644, st_size=6862, ...}) = 0 | |
open("/usr/lib/python2.6/abc.pyc", O_RDONLY|O_LARGEFILE) = 8 | |
fstat64(8, {st_mode=S_IFREG|0644, st_size=5833, ...}) = 0 | |
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb769b000 | |
read(8, "\321\362\r\n\20m\310Kc\0\0\0\0\0\0\0\0\3\0\0\0@\0\0\0s?\0\0\0d\0"..., 4096) = 4096 | |
fstat64(8, {st_mode=S_IFREG|0644, st_size=5833, ...}) = 0 | |
read(8, "the ABC registry.s\f\0\0\0Class: %s."..., 4096) = 1737 | |
read(8, "", 4096) = 0 | |
close(8) = 0 | |
munmap(0xb769b000, 4096) = 0 | |
close(7) = 0 | |
close(6) = 0 | |
close(5) = 0 | |
stat64("/usr/lib/python2.6/copy_reg", 0xbff7c088) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/copy_reg.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/copy_regmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/copy_reg.py", O_RDONLY|O_LARGEFILE) = 5 | |
fstat64(5, {st_mode=S_IFREG|0644, st_size=6800, ...}) = 0 | |
open("/usr/lib/python2.6/copy_reg.pyc", O_RDONLY|O_LARGEFILE) = 6 | |
fstat64(6, {st_mode=S_IFREG|0644, st_size=5156, ...}) = 0 | |
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb769b000 | |
read(6, "\321\362\r\n\20m\310Kc\0\0\0\0\0\0\0\0\10\0\0\0@\0\0\0s\330\0\0\0d\0"..., 4096) = 4096 | |
fstat64(6, {st_mode=S_IFREG|0644, st_size=5156, ...}) = 0 | |
read(6, "ered with code %ss$\0\0\0code %s is"..., 4096) = 1060 | |
read(6, "", 4096) = 0 | |
close(6) = 0 | |
munmap(0xb769b000, 4096) = 0 | |
close(5) = 0 | |
close(4) = 0 | |
geteuid32() = 1000 | |
getuid32() = 1000 | |
getegid32() = 1000 | |
getgid32() = 1000 | |
stat64("/home/vagrant/.local/lib/python2.6/site-packages", 0xbff8344c) = -1 ENOENT (No such file or directory) | |
stat64("/home/vagrant/.local/lib/python2.6/dist-packages", 0xbff8344c) = -1 ENOENT (No such file or directory) | |
stat64("/home/vagrant/.local/local/lib/python2.6/dist-packages", 0xbff8344c) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/dist-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
open("/usr/lib/python2.6/dist-packages", O_RDONLY|O_NONBLOCK|O_LARGEFILE|O_DIRECTORY|O_CLOEXEC) = 4 | |
fcntl64(4, F_GETFD) = 0x1 (flags FD_CLOEXEC) | |
getdents64(4, /* 33 entries */, 32768) = 1232 | |
getdents64(4, /* 0 entries */, 32768) = 0 | |
close(4) = 0 | |
open("/usr/lib/python2.6/dist-packages/python-support.pth", O_RDONLY|O_LARGEFILE) = 4 | |
fstat64(4, {st_mode=S_IFREG|0644, st_size=29, ...}) = 0 | |
fstat64(4, {st_mode=S_IFREG|0644, st_size=29, ...}) = 0 | |
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb769b000 | |
read(4, "/usr/lib/pymodules/python2.6\n", 8192) = 29 | |
read(4, "", 4096) = 0 | |
stat64("/usr/lib/pymodules/python2.6", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
read(4, "", 8192) = 0 | |
close(4) = 0 | |
munmap(0xb769b000, 4096) = 0 | |
open("/usr/lib/python2.6/dist-packages/setuptools.pth", O_RDONLY|O_LARGEFILE) = 4 | |
fstat64(4, {st_mode=S_IFREG|0644, st_size=27, ...}) = 0 | |
fstat64(4, {st_mode=S_IFREG|0644, st_size=27, ...}) = 0 | |
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb769b000 | |
read(4, "setuptools-0.6c11.egg-info\n", 8192) = 27 | |
read(4, "", 4096) = 0 | |
stat64("/usr/lib/python2.6/dist-packages/setuptools-0.6c11.egg-info", 0xbff8316c) = -1 ENOENT (No such file or directory) | |
read(4, "", 8192) = 0 | |
close(4) = 0 | |
munmap(0xb769b000, 4096) = 0 | |
stat64("/usr/local/lib/python2.6/dist-packages", {st_mode=S_IFDIR|S_ISGID|0775, st_size=4096, ...}) = 0 | |
open("/usr/local/lib/python2.6/dist-packages", O_RDONLY|O_NONBLOCK|O_LARGEFILE|O_DIRECTORY|O_CLOEXEC) = 4 | |
brk(0x8447000) = 0x8447000 | |
getdents64(4, /* 6 entries */, 32768) = 216 | |
getdents64(4, /* 0 entries */, 32768) = 0 | |
brk(0x843f000) = 0x843f000 | |
close(4) = 0 | |
stat64("/usr/lib/dist-python", 0xbff8344c) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6", {st_mode=S_IFDIR|0755, st_size=16384, ...}) = 0 | |
stat64("/usr/lib/python2.6", {st_mode=S_IFDIR|0755, st_size=16384, ...}) = 0 | |
stat64("/usr/lib/python2.6/sitecustomize", 0xbff7f338) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/sitecustomize.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/sitecustomizemodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/sitecustomize.py", O_RDONLY|O_LARGEFILE) = 4 | |
fstat64(4, {st_mode=S_IFREG|0644, st_size=155, ...}) = 0 | |
open("/usr/lib/python2.6/sitecustomize.pyc", O_RDONLY|O_LARGEFILE) = 5 | |
fstat64(5, {st_mode=S_IFREG|0644, st_size=234, ...}) = 0 | |
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb769b000 | |
read(5, "\321\362\r\n\17m\310Kc\0\0\0\0\0\0\0\0\5\0\0\0@\0\0\0s4\0\0\0y\20"..., 4096) = 234 | |
fstat64(5, {st_mode=S_IFREG|0644, st_size=234, ...}) = 0 | |
read(5, "", 4096) = 0 | |
close(5) = 0 | |
munmap(0xb769b000, 4096) = 0 | |
stat64("/usr/lib/python2.6/apport_python_hook", 0xbff7bec8) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/apport_python_hook.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/apport_python_hookmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/apport_python_hook.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/apport_python_hook.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/plat-linux2", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
stat64("/usr/lib/python2.6/plat-linux2", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
stat64("/usr/lib/python2.6/plat-linux2/apport_python_hook", 0xbff7bec8) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/plat-linux2/apport_python_hook.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/plat-linux2/apport_python_hookmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/plat-linux2/apport_python_hook.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/plat-linux2/apport_python_hook.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/lib-tk", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
stat64("/usr/lib/python2.6/lib-tk", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
stat64("/usr/lib/python2.6/lib-tk/apport_python_hook", 0xbff7bec8) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/lib-tk/apport_python_hook.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/lib-tk/apport_python_hookmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/lib-tk/apport_python_hook.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/lib-tk/apport_python_hook.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/lib-old", 0xbff78c94) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6", {st_mode=S_IFDIR|0755, st_size=16384, ...}) = 0 | |
stat64("/usr/lib/python2.6/lib-old", 0xbff7bccc) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
stat64("/usr/lib/python2.6/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
stat64("/usr/lib/python2.6/lib-dynload/apport_python_hook", 0xbff7bec8) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/lib-dynload/apport_python_hook.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/lib-dynload/apport_python_hookmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/lib-dynload/apport_python_hook.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/lib-dynload/apport_python_hook.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/dist-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
stat64("/usr/lib/python2.6/dist-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
stat64("/usr/lib/python2.6/dist-packages/apport_python_hook", 0xbff7bec8) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/dist-packages/apport_python_hook.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/dist-packages/apport_python_hookmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/dist-packages/apport_python_hook.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/dist-packages/apport_python_hook.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/pymodules/python2.6", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
stat64("/usr/lib/pymodules/python2.6", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
stat64("/usr/lib/pymodules/python2.6/apport_python_hook", 0xbff7bec8) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/pymodules/python2.6/apport_python_hook.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/pymodules/python2.6/apport_python_hookmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/pymodules/python2.6/apport_python_hook.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/pymodules/python2.6/apport_python_hook.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/local/lib/python2.6/dist-packages", {st_mode=S_IFDIR|S_ISGID|0775, st_size=4096, ...}) = 0 | |
stat64("/usr/local/lib/python2.6/dist-packages", {st_mode=S_IFDIR|S_ISGID|0775, st_size=4096, ...}) = 0 | |
stat64("/usr/local/lib/python2.6/dist-packages/apport_python_hook", 0xbff7bec8) = -1 ENOENT (No such file or directory) | |
open("/usr/local/lib/python2.6/dist-packages/apport_python_hook.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/lib/python2.6/dist-packages/apport_python_hookmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/lib/python2.6/dist-packages/apport_python_hook.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/lib/python2.6/dist-packages/apport_python_hook.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
close(4) = 0 | |
stat64("/usr/lib/python2.6/usercustomize", 0xbff7f338) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/usercustomize.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/usercustomizemodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/usercustomize.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/usercustomize.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/plat-linux2/usercustomize", 0xbff7f338) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/plat-linux2/usercustomize.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/plat-linux2/usercustomizemodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/plat-linux2/usercustomize.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/plat-linux2/usercustomize.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/lib-tk/usercustomize", 0xbff7f338) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/lib-tk/usercustomize.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/lib-tk/usercustomizemodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/lib-tk/usercustomize.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/lib-tk/usercustomize.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/lib-dynload/usercustomize", 0xbff7f338) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/lib-dynload/usercustomize.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/lib-dynload/usercustomizemodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/lib-dynload/usercustomize.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/lib-dynload/usercustomize.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/dist-packages/usercustomize", 0xbff7f338) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/dist-packages/usercustomize.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/dist-packages/usercustomizemodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/dist-packages/usercustomize.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/dist-packages/usercustomize.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/pymodules/python2.6/usercustomize", 0xbff7f338) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/pymodules/python2.6/usercustomize.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/pymodules/python2.6/usercustomizemodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/pymodules/python2.6/usercustomize.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/pymodules/python2.6/usercustomize.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/local/lib/python2.6/dist-packages/usercustomize", 0xbff7f338) = -1 ENOENT (No such file or directory) | |
open("/usr/local/lib/python2.6/dist-packages/usercustomize.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/lib/python2.6/dist-packages/usercustomizemodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/lib/python2.6/dist-packages/usercustomize.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/lib/python2.6/dist-packages/usercustomize.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
close(3) = 0 | |
open("/usr/lib/locale/locale-archive", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/share/locale/locale.alias", O_RDONLY) = 3 | |
fstat64(3, {st_mode=S_IFREG|0644, st_size=2570, ...}) = 0 | |
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb769b000 | |
read(3, "# Locale name alias data base.\n#"..., 4096) = 2570 | |
read(3, "", 4096) = 0 | |
close(3) = 0 | |
munmap(0xb769b000, 4096) = 0 | |
open("/usr/lib/locale/en_US/LC_CTYPE", O_RDONLY) = 3 | |
fstat64(3, {st_mode=S_IFREG|0644, st_size=221612, ...}) = 0 | |
mmap2(NULL, 221612, PROT_READ, MAP_PRIVATE, 3, 0) = 0xb7665000 | |
close(3) = 0 | |
stat64("/usr/lib/python2.6/encodings", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0 | |
stat64("/usr/lib/python2.6/encodings/__init__.py", {st_mode=S_IFREG|0644, st_size=5638, ...}) = 0 | |
stat64("/usr/lib/python2.6/encodings/__init__", 0xbff81988) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/encodings/__init__.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/encodings/__init__module.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/encodings/__init__.py", O_RDONLY|O_LARGEFILE) = 3 | |
fstat64(3, {st_mode=S_IFREG|0644, st_size=5638, ...}) = 0 | |
open("/usr/lib/python2.6/encodings/__init__.pyc", O_RDONLY|O_LARGEFILE) = 4 | |
fstat64(4, {st_mode=S_IFREG|0644, st_size=4408, ...}) = 0 | |
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7664000 | |
read(4, "\321\362\r\n\23m\310Kc\0\0\0\0\0\0\0\0\6\0\0\0@\0\0\0s\216\0\0\0d\0"..., 4096) = 4096 | |
fstat64(4, {st_mode=S_IFREG|0644, st_size=4408, ...}) = 0 | |
read(4, "\1\5\2\5\2\6\2\3\1\r\1\16\2\v\2\r\2\n\1\5\3\t\1\23\1$\1\3\1\3\1\27"..., 4096) = 312 | |
read(4, "", 4096) = 0 | |
close(4) = 0 | |
munmap(0xb7664000, 4096) = 0 | |
stat64("/usr/lib/python2.6/encodings", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0 | |
stat64("/usr/lib/python2.6/encodings", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0 | |
stat64("/usr/lib/python2.6/encodings/codecs", 0xbff7e518) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/encodings/codecs.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/encodings/codecsmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/encodings/codecs.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/encodings/codecs.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/codecs", 0xbff7e518) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/codecs.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/codecsmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/codecs.py", O_RDONLY|O_LARGEFILE) = 4 | |
fstat64(4, {st_mode=S_IFREG|0644, st_size=34941, ...}) = 0 | |
open("/usr/lib/python2.6/codecs.pyc", O_RDONLY|O_LARGEFILE) = 5 | |
fstat64(5, {st_mode=S_IFREG|0644, st_size=36059, ...}) = 0 | |
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7664000 | |
read(5, "\321\362\r\n\20m\310Kc\0\0\0\0\0\0\0\0\36\0\0\0@\0\0\0sA\3\0\0d\0"..., 4096) = 4096 | |
fstat64(5, {st_mode=S_IFREG|0644, st_size=36059, ...}) = 0 | |
read(5, "\n\0\0\0t\0\0\202\1\0d\1\0S(\2\0\0\0s\372\2\0\0 Decodes"..., 28672) = 28672 | |
read(5, "\0\0C\0\0\0s\r\0\0\0t\0\0|\0\0\203\1\0i\1\0S(\1\0\0\0s\264\0"..., 4096) = 3291 | |
read(5, "", 4096) = 0 | |
close(5) = 0 | |
munmap(0xb7664000, 4096) = 0 | |
close(4) = 0 | |
stat64("/usr/lib/python2.6/encodings/encodings", 0xbff7e518) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/encodings/encodings.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/encodings/encodingsmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/encodings/encodings.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/encodings/encodings.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/encodings/aliases", 0xbff7e508) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/encodings/aliases.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/encodings/aliasesmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/encodings/aliases.py", O_RDONLY|O_LARGEFILE) = 4 | |
fstat64(4, {st_mode=S_IFREG|0644, st_size=14721, ...}) = 0 | |
open("/usr/lib/python2.6/encodings/aliases.pyc", O_RDONLY|O_LARGEFILE) = 5 | |
fstat64(5, {st_mode=S_IFREG|0644, st_size=8699, ...}) = 0 | |
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7664000 | |
read(5, "\321\362\r\n\23m\310Kc\0\0\0\0\0\0\0\0\3\0\0\0@\0\0\0s`\10\0\0d\0"..., 4096) = 4096 | |
fstat64(5, {st_mode=S_IFREG|0644, st_size=8699, ...}) = 0 | |
read(5, "ibm861t\5\0\0\0cp862t\3\0\0\000862t\22\0\0\0csp"..., 4096) = 4096 | |
read(5, "\3\7\1\7\1\7\1\7\3\7\1\7\1\7\3\7\1\7\1\7\1\7\1\7\3\7\1\7\1\7\3\7"..., 4096) = 507 | |
read(5, "", 4096) = 0 | |
close(5) = 0 | |
munmap(0xb7664000, 4096) = 0 | |
close(4) = 0 | |
stat64("/usr/lib/python2.6/encodings/__builtin__", 0xbff7e518) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/encodings/__builtin__.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/encodings/__builtin__module.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/encodings/__builtin__.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/encodings/__builtin__.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
close(3) = 0 | |
stat64("/usr/lib/python2.6/encodings/latin_1", 0xbff82788) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/encodings/latin_1.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/encodings/latin_1module.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/encodings/latin_1.py", O_RDONLY|O_LARGEFILE) = 3 | |
fstat64(3, {st_mode=S_IFREG|0644, st_size=1264, ...}) = 0 | |
open("/usr/lib/python2.6/encodings/latin_1.pyc", O_RDONLY|O_LARGEFILE) = 4 | |
fstat64(4, {st_mode=S_IFREG|0644, st_size=2291, ...}) = 0 | |
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7664000 | |
read(4, "\321\362\r\n\24m\310Kc\0\0\0\0\0\0\0\0\4\0\0\0@\0\0\0s\273\0\0\0d\0"..., 4096) = 2291 | |
fstat64(4, {st_mode=S_IFREG|0644, st_size=2291, ...}) = 0 | |
read(4, "", 4096) = 0 | |
close(4) = 0 | |
munmap(0xb7664000, 4096) = 0 | |
close(3) = 0 | |
ioctl(0, SNDCTL_TMR_TIMEBASE or TCGETS, {B9600 opost isig icanon echo ...}) = 0 | |
ioctl(1, SNDCTL_TMR_TIMEBASE or TCGETS, {B9600 opost isig icanon echo ...}) = 0 | |
ioctl(2, SNDCTL_TMR_TIMEBASE or TCGETS, {B9600 opost isig icanon echo ...}) = 0 | |
readlink("/usr/local/bin/virtualenv", 0xbff84ccb, 4096) = -1 EINVAL (Invalid argument) | |
lstat64("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
lstat64("/usr/local", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
lstat64("/usr/local/bin", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
lstat64("/usr/local/bin/virtualenv", {st_mode=S_IFREG|0755, st_size=316, ...}) = 0 | |
stat64("/usr/local/bin/virtualenv", {st_mode=S_IFREG|0755, st_size=316, ...}) = 0 | |
open("/usr/local/bin/virtualenv", O_RDONLY|O_LARGEFILE) = 3 | |
fstat64(3, {st_mode=S_IFREG|0755, st_size=316, ...}) = 0 | |
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7664000 | |
fstat64(3, {st_mode=S_IFREG|0755, st_size=316, ...}) = 0 | |
_llseek(3, 0, [0], SEEK_SET) = 0 | |
read(3, "#!/usr/bin/python\n# EASY-INSTALL"..., 294) = 294 | |
read(3, "'virtualenv')()\n )\n", 4096) = 22 | |
close(3) = 0 | |
munmap(0xb7664000, 4096) = 0 | |
stat64("/usr/local/bin/virtualenv", {st_mode=S_IFREG|0755, st_size=316, ...}) = 0 | |
open("/usr/local/bin/virtualenv", O_RDONLY|O_LARGEFILE) = 3 | |
fstat64(3, {st_mode=S_IFREG|0755, st_size=316, ...}) = 0 | |
ioctl(3, SNDCTL_TMR_TIMEBASE or TCGETS, 0xbff86c28) = -1 ENOTTY (Inappropriate ioctl for device) | |
fstat64(3, {st_mode=S_IFREG|0755, st_size=316, ...}) = 0 | |
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7664000 | |
_llseek(3, 0, [0], SEEK_CUR) = 0 | |
read(3, "#!/usr/bin/python\n# EASY-INSTALL"..., 4096) = 316 | |
_llseek(3, 316, [316], SEEK_SET) = 0 | |
read(3, "", 4096) = 0 | |
close(3) = 0 | |
munmap(0xb7664000, 4096) = 0 | |
stat64("/usr/local/bin", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
stat64("/usr/local/bin", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
stat64("/usr/local/bin/pkg_resources", 0xbff827c8) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/pkg_resources.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/pkg_resourcesmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/pkg_resources.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/pkg_resources.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/pkg_resources", 0xbff827c8) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/pkg_resources.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/pkg_resourcesmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/pkg_resources.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/pkg_resources.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/plat-linux2/pkg_resources", 0xbff827c8) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/plat-linux2/pkg_resources.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/plat-linux2/pkg_resourcesmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/plat-linux2/pkg_resources.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/plat-linux2/pkg_resources.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/lib-tk/pkg_resources", 0xbff827c8) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/lib-tk/pkg_resources.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/lib-tk/pkg_resourcesmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/lib-tk/pkg_resources.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/lib-tk/pkg_resources.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/lib-dynload/pkg_resources", 0xbff827c8) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/lib-dynload/pkg_resources.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/lib-dynload/pkg_resourcesmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/lib-dynload/pkg_resources.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/lib-dynload/pkg_resources.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/dist-packages/pkg_resources", 0xbff827c8) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/dist-packages/pkg_resources.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/dist-packages/pkg_resourcesmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/dist-packages/pkg_resources.py", O_RDONLY|O_LARGEFILE) = 3 | |
fstat64(3, {st_mode=S_IFREG|0644, st_size=88196, ...}) = 0 | |
open("/usr/lib/python2.6/dist-packages/pkg_resources.pyc", O_RDONLY|O_LARGEFILE) = 4 | |
fstat64(4, {st_mode=S_IFREG|0644, st_size=92875, ...}) = 0 | |
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7664000 | |
read(4, "\321\362\r\nG\242#Kc\0\0\0\0\0\0\0\0T\0\0\0@\0\0\0s#\t\0\0d\0"..., 4096) = 4096 | |
fstat64(4, {st_mode=S_IFREG|0644, st_size=92875, ...}) = 0 | |
brk(0x8466000) = 0x8466000 | |
read(4, "ion of the OS.\n\n If this cond"..., 86016) = 86016 | |
read(4, "\1\0\203\1\0o]\0\1|\3\0i\3\0d\2\0\203\1\0o:\0\1|\1\0p\7\0\1"..., 4096) = 2763 | |
read(4, "", 4096) = 0 | |
mmap2(NULL, 266240, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7623000 | |
close(4) = 0 | |
munmap(0xb7664000, 4096) = 0 | |
time(NULL) = 1354671766 | |
open("/etc/localtime", O_RDONLY) = 4 | |
fstat64(4, {st_mode=S_IFREG|0644, st_size=2944, ...}) = 0 | |
fstat64(4, {st_mode=S_IFREG|0644, st_size=2944, ...}) = 0 | |
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7664000 | |
read(4, "TZif2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\n\0\0\0\n\0\0\0\0"..., 4096) = 2944 | |
_llseek(4, -28, [2916], SEEK_CUR) = 0 | |
read(4, "\nCET-1CEST,M3.5.0,M10.5.0/3\n", 4096) = 28 | |
close(4) = 0 | |
munmap(0xb7664000, 4096) = 0 | |
stat64("/etc/localtime", {st_mode=S_IFREG|0644, st_size=2944, ...}) = 0 | |
stat64("/usr/local/bin/re", 0xbff7f358) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/re.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/remodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/re.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/re.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/re", 0xbff7f358) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/re.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/remodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/re.py", O_RDONLY|O_LARGEFILE) = 4 | |
fstat64(4, {st_mode=S_IFREG|0644, st_size=12966, ...}) = 0 | |
open("/usr/lib/python2.6/re.pyc", O_RDONLY|O_LARGEFILE) = 5 | |
fstat64(5, {st_mode=S_IFREG|0644, st_size=13122, ...}) = 0 | |
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7664000 | |
read(5, "\321\362\r\n\21m\310Kc\0\0\0\0\0\0\0\0\32\0\0\0@\0\0\0s8\2\0\0d\0"..., 4096) = 4096 | |
fstat64(5, {st_mode=S_IFREG|0644, st_size=13122, ...}) = 0 | |
read(5, "ions:\n match Match a regul"..., 8192) = 8192 | |
read(5, "ib/python2.6/re.pyt\4\0\0\0scan4\1\0\0s"..., 4096) = 834 | |
read(5, "", 4096) = 0 | |
close(5) = 0 | |
munmap(0xb7664000, 4096) = 0 | |
stat64("/usr/local/bin/sre_compile", 0xbff7bee8) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/sre_compile.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/sre_compilemodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/sre_compile.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/sre_compile.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/sre_compile", 0xbff7bee8) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/sre_compile.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/sre_compilemodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/sre_compile.py", O_RDONLY|O_LARGEFILE) = 5 | |
fstat64(5, {st_mode=S_IFREG|0644, st_size=16507, ...}) = 0 | |
open("/usr/lib/python2.6/sre_compile.pyc", O_RDONLY|O_LARGEFILE) = 6 | |
fstat64(6, {st_mode=S_IFREG|0644, st_size=11455, ...}) = 0 | |
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7664000 | |
read(6, "\321\362\r\n\21m\310Kc\0\0\0\0\0\0\0\0\v\0\0\0@\0\0\0sz\1\0\0d\0"..., 4096) = 4096 | |
fstat64(6, {st_mode=S_IFREG|0644, st_size=11455, ...}) = 0 | |
read(6, "lot\2\0\0\0hit\4\0\0\0tailt\n\0\0\0tailappen"..., 4096) = 4096 | |
read(6, "\1\32\1\r\1c\3\0\0\0\24\0\0\0\v\0\0\0C\0\0\0s\236\4\0\0|\1\0i\0"..., 4096) = 3263 | |
read(6, "", 4096) = 0 | |
close(6) = 0 | |
munmap(0xb7664000, 4096) = 0 | |
stat64("/usr/local/bin/sre_parse", 0xbff78a78) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/sre_parse.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/sre_parsemodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/sre_parse.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/sre_parse.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/sre_parse", 0xbff78a78) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/sre_parse.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/sre_parsemodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/sre_parse.py", O_RDONLY|O_LARGEFILE) = 6 | |
fstat64(6, {st_mode=S_IFREG|0644, st_size=26878, ...}) = 0 | |
open("/usr/lib/python2.6/sre_parse.pyc", O_RDONLY|O_LARGEFILE) = 7 | |
fstat64(7, {st_mode=S_IFREG|0644, st_size=19622, ...}) = 0 | |
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7664000 | |
read(7, "\321\362\r\n\21m\310Kc\0\0\0\0\0\0\0\0\6\0\0\0@\0\0\0s\323\2\0\0d\0"..., 4096) = 4096 | |
fstat64(7, {st_mode=S_IFREG|0644, st_size=19622, ...}) = 0 | |
read(7, "/usr/lib/python2.6/sre_parse.pyt"..., 12288) = 12288 | |
read(7, "arse(\6\0\0\0R\276\0\0\0R\17\0\0\0R$\0\0\0Rv\0\0\0R\274\0"..., 4096) = 3238 | |
read(7, "", 4096) = 0 | |
close(7) = 0 | |
munmap(0xb7664000, 4096) = 0 | |
stat64("/usr/local/bin/sre_constants", 0xbff75608) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/sre_constants.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/sre_constantsmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/sre_constants.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/sre_constants.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/sre_constants", 0xbff75608) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/sre_constants.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/sre_constantsmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/sre_constants.py", O_RDONLY|O_LARGEFILE) = 7 | |
fstat64(7, {st_mode=S_IFREG|0644, st_size=7137, ...}) = 0 | |
open("/usr/lib/python2.6/sre_constants.pyc", O_RDONLY|O_LARGEFILE) = 8 | |
fstat64(8, {st_mode=S_IFREG|0644, st_size=6083, ...}) = 0 | |
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7664000 | |
read(8, "\321\362\r\n\21m\310Kc\0\0\0\0\0\0\0\0 \0\0\0@\0\0\0s\361\4\0\0d\0"..., 4096) = 4096 | |
fstat64(8, {st_mode=S_IFREG|0644, st_size=6083, ...}) = 0 | |
read(8, "oneN(`\0\0\0t\7\0\0\0__doc__t\5\0\0\0MAGICt"..., 4096) = 1987 | |
read(8, "", 4096) = 0 | |
close(8) = 0 | |
munmap(0xb7664000, 4096) = 0 | |
close(7) = 0 | |
close(6) = 0 | |
close(5) = 0 | |
close(4) = 0 | |
stat64("/usr/local/bin/distutils", 0xbff7f028) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/distutils.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/distutilsmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/distutils.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/distutils.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/distutils", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
stat64("/usr/lib/python2.6/distutils/__init__.py", {st_mode=S_IFREG|0644, st_size=670, ...}) = 0 | |
stat64("/usr/lib/python2.6/distutils/__init__", 0xbff7dfd8) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/distutils/__init__.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/distutils/__init__module.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/distutils/__init__.py", O_RDONLY|O_LARGEFILE) = 4 | |
fstat64(4, {st_mode=S_IFREG|0644, st_size=670, ...}) = 0 | |
open("/usr/lib/python2.6/distutils/__init__.pyc", O_RDONLY|O_LARGEFILE) = 5 | |
fstat64(5, {st_mode=S_IFREG|0644, st_size=437, ...}) = 0 | |
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7664000 | |
read(5, "\321\362\r\n\25m\310Kc\0\0\0\0\0\0\0\0\1\0\0\0@\0\0\0s\26\0\0\0d\0"..., 4096) = 437 | |
fstat64(5, {st_mode=S_IFREG|0644, st_size=437, ...}) = 0 | |
read(5, "", 4096) = 0 | |
close(5) = 0 | |
munmap(0xb7664000, 4096) = 0 | |
close(4) = 0 | |
stat64("/usr/lib/python2.6/distutils", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
stat64("/usr/lib/python2.6/distutils", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
stat64("/usr/lib/python2.6/distutils/util", 0xbff7f028) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/distutils/util.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/distutils/utilmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/distutils/util.py", O_RDONLY|O_LARGEFILE) = 4 | |
fstat64(4, {st_mode=S_IFREG|0644, st_size=22005, ...}) = 0 | |
open("/usr/lib/python2.6/distutils/util.pyc", O_RDONLY|O_LARGEFILE) = 5 | |
fstat64(5, {st_mode=S_IFREG|0644, st_size=16412, ...}) = 0 | |
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7664000 | |
read(5, "\321\362\r\n\25m\310Kc\0\0\0\0\0\0\0\0\21\0\0\0@\0\0\0s1\1\0\0d\0"..., 4096) = 4096 | |
fstat64(5, {st_mode=S_IFREG|0644, st_size=16412, ...}) = 0 | |
read(5, "osnamet\4\0\0\0hostt\7\0\0\0releaseR-\0\0\0"..., 12288) = 12288 | |
read(5, "\t&\6\1\t\26\t\31\f\27\16\1\t\6\t?\22\23\t\21\6\1\6\1\6\1\f\213", 4096) = 28 | |
read(5, "", 4096) = 0 | |
close(5) = 0 | |
munmap(0xb7664000, 4096) = 0 | |
stat64("/usr/lib/python2.6/distutils/sys", 0xbff7bbb8) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/distutils/sys.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/distutils/sysmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/distutils/sys.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/distutils/sys.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/distutils/os", 0xbff7bbb8) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/distutils/os.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/distutils/osmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/distutils/os.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/distutils/os.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/distutils/string", 0xbff7bbb8) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/distutils/string.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/distutils/stringmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/distutils/string.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/distutils/string.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/local/bin/string", 0xbff7bbb8) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/string.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/stringmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/string.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/string.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/string", 0xbff7bbb8) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/string.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/stringmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/string.py", O_RDONLY|O_LARGEFILE) = 5 | |
fstat64(5, {st_mode=S_IFREG|0644, st_size=20745, ...}) = 0 | |
open("/usr/lib/python2.6/string.pyc", O_RDONLY|O_LARGEFILE) = 6 | |
fstat64(6, {st_mode=S_IFREG|0644, st_size=19964, ...}) = 0 | |
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7664000 | |
read(6, "\321\362\r\n\21m\310Kc\0\0\0\0\0\0\0\0\10\0\0\0@\0\0\0s\230\2\0\0d\0"..., 4096) = 4096 | |
fstat64(6, {st_mode=S_IFREG|0644, st_size=19964, ...}) = 0 | |
read(6, "%(delim)s(?:\n (?P<escaped>%"..., 12288) = 12288 | |
read(6, "he optional argument maxsplit is"..., 4096) = 3580 | |
read(6, "", 4096) = 0 | |
close(6) = 0 | |
munmap(0xb7664000, 4096) = 0 | |
close(5) = 0 | |
stat64("/usr/lib/python2.6/distutils/re", 0xbff7bbb8) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/distutils/re.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/distutils/remodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/distutils/re.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/distutils/re.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/distutils/distutils", 0xbff7bbb8) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/distutils/distutils.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/distutils/distutilsmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/distutils/distutils.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/distutils/distutils.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/distutils/errors", 0xbff7bbb8) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/distutils/errors.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/distutils/errorsmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/distutils/errors.py", O_RDONLY|O_LARGEFILE) = 5 | |
fstat64(5, {st_mode=S_IFREG|0644, st_size=3720, ...}) = 0 | |
open("/usr/lib/python2.6/distutils/errors.pyc", O_RDONLY|O_LARGEFILE) = 6 | |
fstat64(6, {st_mode=S_IFREG|0644, st_size=6318, ...}) = 0 | |
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7664000 | |
read(6, "\321\362\r\n\25m\310Kc\0\0\0\0\0\0\0\0\3\0\0\0@\0\0\0s\262\1\0\0d\0"..., 4096) = 4096 | |
fstat64(6, {st_mode=S_IFREG|0644, st_size=6318, ...}) = 0 | |
read(6, "s\4\0\0\0\6\2\6\1t\26\0\0\0DistutilsInternalE"..., 4096) = 2222 | |
read(6, "", 4096) = 0 | |
close(6) = 0 | |
munmap(0xb7664000, 4096) = 0 | |
close(5) = 0 | |
stat64("/usr/lib/python2.6/distutils/dep_util", 0xbff7bbb8) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/distutils/dep_util.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/distutils/dep_utilmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/distutils/dep_util.py", O_RDONLY|O_LARGEFILE) = 5 | |
fstat64(5, {st_mode=S_IFREG|0644, st_size=3632, ...}) = 0 | |
open("/usr/lib/python2.6/distutils/dep_util.pyc", O_RDONLY|O_LARGEFILE) = 6 | |
fstat64(6, {st_mode=S_IFREG|0644, st_size=3192, ...}) = 0 | |
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7664000 | |
read(6, "\321\362\r\n\25m\310Kc\0\0\0\0\0\0\0\0\4\0\0\0@\0\0\0sJ\0\0\0d\0"..., 4096) = 3192 | |
fstat64(6, {st_mode=S_IFREG|0644, st_size=3192, ...}) = 0 | |
read(6, "", 4096) = 0 | |
close(6) = 0 | |
munmap(0xb7664000, 4096) = 0 | |
close(5) = 0 | |
stat64("/usr/lib/python2.6/distutils/spawn", 0xbff7bbb8) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/distutils/spawn.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/distutils/spawnmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/distutils/spawn.py", O_RDONLY|O_LARGEFILE) = 5 | |
fstat64(5, {st_mode=S_IFREG|0644, st_size=6991, ...}) = 0 | |
open("/usr/lib/python2.6/distutils/spawn.pyc", O_RDONLY|O_LARGEFILE) = 6 | |
fstat64(6, {st_mode=S_IFREG|0644, st_size=5584, ...}) = 0 | |
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7664000 | |
read(6, "\321\362\r\n\25m\310Kc\0\0\0\0\0\0\0\0\t\0\0\0@\0\0\0s\253\0\0\0d\0"..., 4096) = 4096 | |
fstat64(6, {st_mode=S_IFREG|0644, st_size=5584, ...}) = 0 | |
read(6, "tatus %d(\27\0\0\0R\1\0\0\0R\31\0\0\0R\23\0\0\0R\32\0\0"..., 4096) = 1488 | |
read(6, "", 4096) = 0 | |
close(6) = 0 | |
munmap(0xb7664000, 4096) = 0 | |
stat64("/usr/lib/python2.6/distutils/log", 0xbff78738) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/distutils/log.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/distutils/logmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/distutils/log.py", O_RDONLY|O_LARGEFILE) = 6 | |
fstat64(6, {st_mode=S_IFREG|0644, st_size=1606, ...}) = 0 | |
open("/usr/lib/python2.6/distutils/log.pyc", O_RDONLY|O_LARGEFILE) = 7 | |
fstat64(7, {st_mode=S_IFREG|0644, st_size=2547, ...}) = 0 | |
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7664000 | |
read(7, "\321\362\r\n\25m\310Kc\0\0\0\0\0\0\0\0\4\0\0\0@\0\0\0s\230\0\0\0d\0"..., 4096) = 2547 | |
fstat64(7, {st_mode=S_IFREG|0644, st_size=2547, ...}) = 0 | |
read(7, "", 4096) = 0 | |
close(7) = 0 | |
munmap(0xb7664000, 4096) = 0 | |
close(6) = 0 | |
close(5) = 0 | |
close(4) = 0 | |
uname({sys="Linux", node="lucid32", ...}) = 0 | |
stat64("/usr/local/bin/pkgutil", 0xbff7f358) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/pkgutil.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/pkgutilmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/pkgutil.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/pkgutil.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/pkgutil", 0xbff7f358) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/pkgutil.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/pkgutilmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/pkgutil.py", O_RDONLY|O_LARGEFILE) = 4 | |
fstat64(4, {st_mode=S_IFREG|0644, st_size=20001, ...}) = 0 | |
open("/usr/lib/python2.6/pkgutil.pyc", O_RDONLY|O_LARGEFILE) = 5 | |
fstat64(5, {st_mode=S_IFREG|0644, st_size=18954, ...}) = 0 | |
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7664000 | |
read(5, "\321\362\r\n\21m\310Kc\0\0\0\0\0\0\0\0\17\0\0\0@\0\0\0sj\1\0\0d\0"..., 4096) = 4096 | |
fstat64(5, {st_mode=S_IFREG|0644, st_size=18954, ...}) = 0 | |
read(5, "\0\203\2\0}\2\0h\0\0}\3\0xW\0|\2\0D]O\0}\4\0xF\0t\4\0"..., 12288) = 12288 | |
read(5, "he input path is not\n modifie"..., 4096) = 2570 | |
read(5, "", 4096) = 0 | |
close(5) = 0 | |
munmap(0xb7664000, 4096) = 0 | |
close(4) = 0 | |
lstat64("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
lstat64("/usr/local", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
lstat64("/usr/local/bin", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
stat64("/usr/local/bin", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
access("/usr/local/bin", R_OK) = 0 | |
open("/usr/local/bin", O_RDONLY|O_NONBLOCK|O_LARGEFILE|O_DIRECTORY|O_CLOEXEC) = 4 | |
getdents64(4, /* 4 entries */, 32768) = 120 | |
getdents64(4, /* 0 entries */, 32768) = 0 | |
close(4) = 0 | |
lstat64("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
lstat64("/usr/lib", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0 | |
lstat64("/usr/lib/python2.6", {st_mode=S_IFDIR|0755, st_size=16384, ...}) = 0 | |
stat64("/usr/lib/python2.6", {st_mode=S_IFDIR|0755, st_size=16384, ...}) = 0 | |
access("/usr/lib/python2.6", R_OK) = 0 | |
open("/usr/lib/python2.6", O_RDONLY|O_NONBLOCK|O_LARGEFILE|O_DIRECTORY|O_CLOEXEC) = 4 | |
getdents64(4, /* 426 entries */, 32768) = 14392 | |
getdents64(4, /* 0 entries */, 32768) = 0 | |
close(4) = 0 | |
stat64("/usr/lib/python2.6/wsgiref.egg-info", {st_mode=S_IFREG|0644, st_size=187, ...}) = 0 | |
lstat64("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
lstat64("/usr/lib", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0 | |
lstat64("/usr/lib/python2.6", {st_mode=S_IFDIR|0755, st_size=16384, ...}) = 0 | |
lstat64("/usr/lib/python2.6/plat-linux2", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
stat64("/usr/lib/python2.6/plat-linux2", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
access("/usr/lib/python2.6/plat-linux2", R_OK) = 0 | |
open("/usr/lib/python2.6/plat-linux2", O_RDONLY|O_NONBLOCK|O_LARGEFILE|O_DIRECTORY|O_CLOEXEC) = 4 | |
brk(0x8487000) = 0x8487000 | |
getdents64(4, /* 11 entries */, 32768) = 336 | |
getdents64(4, /* 0 entries */, 32768) = 0 | |
brk(0x847f000) = 0x847f000 | |
close(4) = 0 | |
lstat64("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
lstat64("/usr/lib", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0 | |
lstat64("/usr/lib/python2.6", {st_mode=S_IFDIR|0755, st_size=16384, ...}) = 0 | |
lstat64("/usr/lib/python2.6/lib-tk", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
stat64("/usr/lib/python2.6/lib-tk", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
access("/usr/lib/python2.6/lib-tk", R_OK) = 0 | |
open("/usr/lib/python2.6/lib-tk", O_RDONLY|O_NONBLOCK|O_LARGEFILE|O_DIRECTORY|O_CLOEXEC) = 4 | |
getdents64(4, /* 36 entries */, 32768) = 1280 | |
getdents64(4, /* 0 entries */, 32768) = 0 | |
close(4) = 0 | |
lstat64("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
lstat64("/usr/lib", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0 | |
lstat64("/usr/lib/python2.6", {st_mode=S_IFDIR|0755, st_size=16384, ...}) = 0 | |
lstat64("/usr/lib/python2.6/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
stat64("/usr/lib/python2.6/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
access("/usr/lib/python2.6/lib-dynload", R_OK) = 0 | |
open("/usr/lib/python2.6/lib-dynload", O_RDONLY|O_NONBLOCK|O_LARGEFILE|O_DIRECTORY|O_CLOEXEC) = 4 | |
getdents64(4, /* 46 entries */, 32768) = 1576 | |
getdents64(4, /* 0 entries */, 32768) = 0 | |
close(4) = 0 | |
stat64("/usr/lib/python2.6/lib-dynload/Python-2.6.egg-info", {st_mode=S_IFREG|0644, st_size=1524, ...}) = 0 | |
lstat64("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
lstat64("/usr/lib", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0 | |
lstat64("/usr/lib/python2.6", {st_mode=S_IFDIR|0755, st_size=16384, ...}) = 0 | |
lstat64("/usr/lib/python2.6/dist-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
stat64("/usr/lib/python2.6/dist-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
access("/usr/lib/python2.6/dist-packages", R_OK) = 0 | |
open("/usr/lib/python2.6/dist-packages", O_RDONLY|O_NONBLOCK|O_LARGEFILE|O_DIRECTORY|O_CLOEXEC) = 4 | |
getdents64(4, /* 33 entries */, 32768) = 1232 | |
getdents64(4, /* 0 entries */, 32768) = 0 | |
close(4) = 0 | |
stat64("/usr/lib/python2.6/dist-packages/ufw-0.30pre1_0ubuntu2.egg-info", {st_mode=S_IFREG|0644, st_size=274, ...}) = 0 | |
stat64("/usr/lib/python2.6/dist-packages/python_apt-0.7.94.2ubuntu6.4.egg-info", {st_mode=S_IFREG|0644, st_size=238, ...}) = 0 | |
stat64("/usr/lib/python2.6/dist-packages/setuptools.egg-info", {st_mode=S_IFREG|0644, st_size=144, ...}) = 0 | |
stat64("/usr/lib/python2.6/dist-packages/command_not_found-0.1.egg-info", {st_mode=S_IFREG|0644, st_size=189, ...}) = 0 | |
stat64("/usr/lib/python2.6/dist-packages/pip-0.3.1.egg-info", {st_mode=S_IFREG|0644, st_size=9579, ...}) = 0 | |
stat64("/usr/lib/python2.6/dist-packages/distribute-0.6.10.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
lstat64("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
lstat64("/usr/lib", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0 | |
lstat64("/usr/lib/pymodules", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
lstat64("/usr/lib/pymodules/python2.6", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
stat64("/usr/lib/pymodules/python2.6", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
access("/usr/lib/pymodules/python2.6", R_OK) = 0 | |
open("/usr/lib/pymodules/python2.6", O_RDONLY|O_NONBLOCK|O_LARGEFILE|O_DIRECTORY|O_CLOEXEC) = 4 | |
getdents64(4, /* 6 entries */, 32768) = 216 | |
getdents64(4, /* 0 entries */, 32768) = 0 | |
close(4) = 0 | |
stat64("/usr/lib/pymodules/python2.6/GnuPGInterface-0.3.2-py2.6.egg-info", {st_mode=S_IFREG|0644, st_size=592, ...}) = 0 | |
lstat64("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
lstat64("/usr/local", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
lstat64("/usr/local/lib", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
lstat64("/usr/local/lib/python2.6", {st_mode=S_IFDIR|S_ISGID|0775, st_size=4096, ...}) = 0 | |
lstat64("/usr/local/lib/python2.6/dist-packages", {st_mode=S_IFDIR|S_ISGID|0775, st_size=4096, ...}) = 0 | |
stat64("/usr/local/lib/python2.6/dist-packages", {st_mode=S_IFDIR|S_ISGID|0775, st_size=4096, ...}) = 0 | |
access("/usr/local/lib/python2.6/dist-packages", R_OK) = 0 | |
open("/usr/local/lib/python2.6/dist-packages", O_RDONLY|O_NONBLOCK|O_LARGEFILE|O_DIRECTORY|O_CLOEXEC) = 4 | |
getdents64(4, /* 6 entries */, 32768) = 216 | |
getdents64(4, /* 0 entries */, 32768) = 0 | |
close(4) = 0 | |
stat64("/usr/local/lib/python2.6/dist-packages/virtualenv-1.8.4.egg-info", {st_mode=S_IFDIR|S_ISGID|0755, st_size=4096, ...}) = 0 | |
stat64("/usr/local/lib/python2.6/dist-packages/virtualenv-1.8.4.egg-info/requires.txt", 0xbff8281c) = -1 ENOENT (No such file or directory) | |
stat64("/usr/local/lib/python2.6/dist-packages/virtualenv-1.8.4.egg-info/depends.txt", 0xbff8281c) = -1 ENOENT (No such file or directory) | |
lstat64("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
lstat64("/usr/lib", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0 | |
lstat64("/usr/lib/python2.6", {st_mode=S_IFDIR|0755, st_size=16384, ...}) = 0 | |
lstat64("/usr/lib/python2.6/lib-old", 0xbff82b7c) = -1 ENOENT (No such file or directory) | |
lstat64("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
lstat64("/usr/lib", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0 | |
lstat64("/usr/lib/python2.6", {st_mode=S_IFDIR|0755, st_size=16384, ...}) = 0 | |
lstat64("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
lstat64("/usr/lib", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0 | |
lstat64("/usr/lib/python2.6", {st_mode=S_IFDIR|0755, st_size=16384, ...}) = 0 | |
lstat64("/usr/lib/python2.6/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
lstat64("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
lstat64("/usr/lib", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0 | |
lstat64("/usr/lib/python2.6", {st_mode=S_IFDIR|0755, st_size=16384, ...}) = 0 | |
lstat64("/usr/lib/python2.6/dist-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
lstat64("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
lstat64("/usr/lib", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0 | |
lstat64("/usr/lib/python2.6", {st_mode=S_IFDIR|0755, st_size=16384, ...}) = 0 | |
lstat64("/usr/lib/python2.6/dist-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
open("/usr/lib/python2.6/dist-packages/setuptools.egg-info", O_RDONLY|O_LARGEFILE) = 4 | |
fstat64(4, {st_mode=S_IFREG|0644, st_size=144, ...}) = 0 | |
fstat64(4, {st_mode=S_IFREG|0644, st_size=144, ...}) = 0 | |
_llseek(4, 0, [0], SEEK_CUR) = 0 | |
fstat64(4, {st_mode=S_IFREG|0644, st_size=144, ...}) = 0 | |
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7664000 | |
_llseek(4, 0, [0], SEEK_CUR) = 0 | |
read(4, "Metadata-Version: 1.0\nName: setu"..., 4096) = 144 | |
read(4, "", 4096) = 0 | |
close(4) = 0 | |
munmap(0xb7664000, 4096) = 0 | |
lstat64("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
lstat64("/usr/lib", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0 | |
lstat64("/usr/lib/python2.6", {st_mode=S_IFDIR|0755, st_size=16384, ...}) = 0 | |
lstat64("/usr/lib/python2.6/dist-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
lstat64("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
lstat64("/usr/lib", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0 | |
lstat64("/usr/lib/python2.6", {st_mode=S_IFDIR|0755, st_size=16384, ...}) = 0 | |
lstat64("/usr/lib/python2.6/dist-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
lstat64("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
lstat64("/usr/lib", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0 | |
lstat64("/usr/lib/python2.6", {st_mode=S_IFDIR|0755, st_size=16384, ...}) = 0 | |
lstat64("/usr/lib/python2.6/dist-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
stat64("/usr/lib/python2.6/dist-packages/distribute-0.6.10.egg-info/namespace_packages.txt", 0xbff82d9c) = -1 ENOENT (No such file or directory) | |
lstat64("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
lstat64("/usr/lib", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0 | |
lstat64("/usr/lib/pymodules", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
lstat64("/usr/lib/pymodules/python2.6", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
stat64("/usr/local/lib/python2.6/dist-packages/virtualenv-1.8.4.egg-info/namespace_packages.txt", 0xbff82b7c) = -1 ENOENT (No such file or directory) | |
lstat64("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
lstat64("/usr/local", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
lstat64("/usr/local/lib", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
lstat64("/usr/local/lib/python2.6", {st_mode=S_IFDIR|S_ISGID|0775, st_size=4096, ...}) = 0 | |
lstat64("/usr/local/lib/python2.6/dist-packages", {st_mode=S_IFDIR|S_ISGID|0775, st_size=4096, ...}) = 0 | |
stat64("/usr/local/lib/python2.6/dist-packages/virtualenv-1.8.4.egg-info/top_level.txt", {st_mode=S_IFREG|0644, st_size=30, ...}) = 0 | |
open("/usr/local/lib/python2.6/dist-packages/virtualenv-1.8.4.egg-info/top_level.txt", O_RDONLY|O_LARGEFILE) = 4 | |
fstat64(4, {st_mode=S_IFREG|0644, st_size=30, ...}) = 0 | |
fstat64(4, {st_mode=S_IFREG|0644, st_size=30, ...}) = 0 | |
_llseek(4, 0, [0], SEEK_CUR) = 0 | |
fstat64(4, {st_mode=S_IFREG|0644, st_size=30, ...}) = 0 | |
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7664000 | |
_llseek(4, 0, [0], SEEK_CUR) = 0 | |
read(4, "virtualenv_support\nvirtualenv\n", 4096) = 30 | |
read(4, "", 4096) = 0 | |
close(4) = 0 | |
munmap(0xb7664000, 4096) = 0 | |
stat64("/usr/local/lib/python2.6/dist-packages/virtualenv-1.8.4.egg-info/namespace_packages.txt", 0xbff82d9c) = -1 ENOENT (No such file or directory) | |
stat64("/usr/local/bin", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
access("/usr/local/bin", R_OK) = 0 | |
open("/usr/local/bin", O_RDONLY|O_NONBLOCK|O_LARGEFILE|O_DIRECTORY|O_CLOEXEC) = 4 | |
getdents64(4, /* 4 entries */, 32768) = 120 | |
getdents64(4, /* 0 entries */, 32768) = 0 | |
close(4) = 0 | |
stat64("/usr/lib/python2.6", {st_mode=S_IFDIR|0755, st_size=16384, ...}) = 0 | |
access("/usr/lib/python2.6", R_OK) = 0 | |
open("/usr/lib/python2.6", O_RDONLY|O_NONBLOCK|O_LARGEFILE|O_DIRECTORY|O_CLOEXEC) = 4 | |
getdents64(4, /* 426 entries */, 32768) = 14392 | |
getdents64(4, /* 0 entries */, 32768) = 0 | |
close(4) = 0 | |
stat64("/usr/lib/python2.6/wsgiref.egg-info", {st_mode=S_IFREG|0644, st_size=187, ...}) = 0 | |
stat64("/usr/lib/python2.6/plat-linux2", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
access("/usr/lib/python2.6/plat-linux2", R_OK) = 0 | |
open("/usr/lib/python2.6/plat-linux2", O_RDONLY|O_NONBLOCK|O_LARGEFILE|O_DIRECTORY|O_CLOEXEC) = 4 | |
getdents64(4, /* 11 entries */, 32768) = 336 | |
getdents64(4, /* 0 entries */, 32768) = 0 | |
close(4) = 0 | |
stat64("/usr/lib/python2.6/lib-tk", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
access("/usr/lib/python2.6/lib-tk", R_OK) = 0 | |
open("/usr/lib/python2.6/lib-tk", O_RDONLY|O_NONBLOCK|O_LARGEFILE|O_DIRECTORY|O_CLOEXEC) = 4 | |
getdents64(4, /* 36 entries */, 32768) = 1280 | |
getdents64(4, /* 0 entries */, 32768) = 0 | |
close(4) = 0 | |
stat64("/usr/lib/python2.6/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
access("/usr/lib/python2.6/lib-dynload", R_OK) = 0 | |
open("/usr/lib/python2.6/lib-dynload", O_RDONLY|O_NONBLOCK|O_LARGEFILE|O_DIRECTORY|O_CLOEXEC) = 4 | |
getdents64(4, /* 46 entries */, 32768) = 1576 | |
getdents64(4, /* 0 entries */, 32768) = 0 | |
close(4) = 0 | |
stat64("/usr/lib/python2.6/lib-dynload/Python-2.6.egg-info", {st_mode=S_IFREG|0644, st_size=1524, ...}) = 0 | |
stat64("/usr/lib/python2.6/dist-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
access("/usr/lib/python2.6/dist-packages", R_OK) = 0 | |
open("/usr/lib/python2.6/dist-packages", O_RDONLY|O_NONBLOCK|O_LARGEFILE|O_DIRECTORY|O_CLOEXEC) = 4 | |
getdents64(4, /* 33 entries */, 32768) = 1232 | |
getdents64(4, /* 0 entries */, 32768) = 0 | |
close(4) = 0 | |
stat64("/usr/lib/python2.6/dist-packages/ufw-0.30pre1_0ubuntu2.egg-info", {st_mode=S_IFREG|0644, st_size=274, ...}) = 0 | |
stat64("/usr/lib/python2.6/dist-packages/python_apt-0.7.94.2ubuntu6.4.egg-info", {st_mode=S_IFREG|0644, st_size=238, ...}) = 0 | |
stat64("/usr/lib/python2.6/dist-packages/setuptools.egg-info", {st_mode=S_IFREG|0644, st_size=144, ...}) = 0 | |
stat64("/usr/lib/python2.6/dist-packages/command_not_found-0.1.egg-info", {st_mode=S_IFREG|0644, st_size=189, ...}) = 0 | |
stat64("/usr/lib/python2.6/dist-packages/pip-0.3.1.egg-info", {st_mode=S_IFREG|0644, st_size=9579, ...}) = 0 | |
stat64("/usr/lib/python2.6/dist-packages/distribute-0.6.10.egg-info", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
stat64("/usr/lib/pymodules/python2.6", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
access("/usr/lib/pymodules/python2.6", R_OK) = 0 | |
open("/usr/lib/pymodules/python2.6", O_RDONLY|O_NONBLOCK|O_LARGEFILE|O_DIRECTORY|O_CLOEXEC) = 4 | |
getdents64(4, /* 6 entries */, 32768) = 216 | |
getdents64(4, /* 0 entries */, 32768) = 0 | |
close(4) = 0 | |
stat64("/usr/lib/pymodules/python2.6/GnuPGInterface-0.3.2-py2.6.egg-info", {st_mode=S_IFREG|0644, st_size=592, ...}) = 0 | |
stat64("/usr/local/lib/python2.6/dist-packages", {st_mode=S_IFDIR|S_ISGID|0775, st_size=4096, ...}) = 0 | |
access("/usr/local/lib/python2.6/dist-packages", R_OK) = 0 | |
open("/usr/local/lib/python2.6/dist-packages", O_RDONLY|O_NONBLOCK|O_LARGEFILE|O_DIRECTORY|O_CLOEXEC) = 4 | |
getdents64(4, /* 6 entries */, 32768) = 216 | |
getdents64(4, /* 0 entries */, 32768) = 0 | |
close(4) = 0 | |
stat64("/usr/local/lib/python2.6/dist-packages/virtualenv-1.8.4.egg-info", {st_mode=S_IFDIR|S_ISGID|0755, st_size=4096, ...}) = 0 | |
close(3) = 0 | |
stat64("/usr/local/lib/python2.6/dist-packages/virtualenv-1.8.4.egg-info/entry_points.txt", {st_mode=S_IFREG|0644, st_size=81, ...}) = 0 | |
open("/usr/local/lib/python2.6/dist-packages/virtualenv-1.8.4.egg-info/entry_points.txt", O_RDONLY|O_LARGEFILE) = 3 | |
fstat64(3, {st_mode=S_IFREG|0644, st_size=81, ...}) = 0 | |
fstat64(3, {st_mode=S_IFREG|0644, st_size=81, ...}) = 0 | |
_llseek(3, 0, [0], SEEK_CUR) = 0 | |
fstat64(3, {st_mode=S_IFREG|0644, st_size=81, ...}) = 0 | |
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7664000 | |
_llseek(3, 0, [0], SEEK_CUR) = 0 | |
read(3, "[console_scripts]\nvirtualenv = v"..., 4096) = 81 | |
read(3, "", 4096) = 0 | |
close(3) = 0 | |
munmap(0xb7664000, 4096) = 0 | |
stat64("/usr/local/bin/virtualenv", {st_mode=S_IFREG|0755, st_size=316, ...}) = 0 | |
open("/usr/local/bin/virtualenv.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/virtualenvmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/virtualenv.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/virtualenv.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/virtualenv", 0xbff824f8) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/virtualenv.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/virtualenvmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/virtualenv.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/virtualenv.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/plat-linux2/virtualenv", 0xbff824f8) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/plat-linux2/virtualenv.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/plat-linux2/virtualenvmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/plat-linux2/virtualenv.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/plat-linux2/virtualenv.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/lib-tk/virtualenv", 0xbff824f8) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/lib-tk/virtualenv.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/lib-tk/virtualenvmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/lib-tk/virtualenv.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/lib-tk/virtualenv.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/lib-dynload/virtualenv", 0xbff824f8) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/lib-dynload/virtualenv.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/lib-dynload/virtualenvmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/lib-dynload/virtualenv.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/lib-dynload/virtualenv.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/dist-packages/virtualenv", 0xbff824f8) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/dist-packages/virtualenv.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/dist-packages/virtualenvmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/dist-packages/virtualenv.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/dist-packages/virtualenv.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/pymodules/python2.6/virtualenv", 0xbff824f8) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/pymodules/python2.6/virtualenv.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/pymodules/python2.6/virtualenvmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/pymodules/python2.6/virtualenv.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/pymodules/python2.6/virtualenv.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/local/lib/python2.6/dist-packages/virtualenv", 0xbff824f8) = -1 ENOENT (No such file or directory) | |
open("/usr/local/lib/python2.6/dist-packages/virtualenv.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/lib/python2.6/dist-packages/virtualenvmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/lib/python2.6/dist-packages/virtualenv.py", O_RDONLY|O_LARGEFILE) = 3 | |
fstat64(3, {st_mode=S_IFREG|0644, st_size=114330, ...}) = 0 | |
open("/usr/local/lib/python2.6/dist-packages/virtualenv.pyc", O_RDONLY|O_LARGEFILE) = 4 | |
fstat64(4, {st_mode=S_IFREG|0644, st_size=97593, ...}) = 0 | |
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7664000 | |
read(4, "\321\362\r\nh\246\276Pc\0\0\0\0\0\0\0\0003\0\0\0@\0\0\0s\16\10\0\0d\0"..., 4096) = 4096 | |
fstat64(4, {st_mode=S_IFREG|0644, st_size=97593, ...}) = 0 | |
read(4, "\0\0O\0\0\0s\35\0\0\0|\0\0i\0\0|\0\0i\1\0|\1\0|\2\0|\3\0"..., 90112) = 90112 | |
read(4, "rs from the given file\n with "..., 4096) = 3385 | |
read(4, "", 4096) = 0 | |
mmap2(NULL, 266240, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb75e2000 | |
brk(0x84a0000) = 0x84a0000 | |
close(4) = 0 | |
munmap(0xb7664000, 4096) = 0 | |
stat64("/usr/local/bin/base64", 0xbff7f088) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/base64.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/base64module.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/base64.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/base64.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/base64", 0xbff7f088) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/base64.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/base64module.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/base64.py", O_RDONLY|O_LARGEFILE) = 4 | |
fstat64(4, {st_mode=S_IFREG|0755, st_size=11331, ...}) = 0 | |
open("/usr/lib/python2.6/base64.pyc", O_RDONLY|O_LARGEFILE) = 5 | |
fstat64(5, {st_mode=S_IFREG|0644, st_size=10967, ...}) = 0 | |
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7664000 | |
read(5, "\321\362\r\n7m\310Kc\0\0\0\0\0\0\0\0\21\0\0\0@\0\0\0s\307\2\0\0d\0"..., 4096) = 4096 | |
fstat64(5, {st_mode=S_IFREG|0644, st_size=10967, ...}) = 0 | |
read(5, "\2\0\0\0\0\tt\1\0\0\0Ai\0\0\0\0t\1\0\0\0Ji\t\0\0\0t\1\0\0"..., 4096) = 4096 | |
read(5, "\0R`\0\0\0(\0\0\0\0(\0\0\0\0s\34\0\0\0/usr/lib/py"..., 4096) = 2775 | |
read(5, "", 4096) = 0 | |
close(5) = 0 | |
munmap(0xb7664000, 4096) = 0 | |
stat64("/usr/local/bin/struct", 0xbff7bc18) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/struct.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/structmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/struct.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/struct.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/struct", 0xbff7bc18) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/struct.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/structmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/struct.py", O_RDONLY|O_LARGEFILE) = 5 | |
fstat64(5, {st_mode=S_IFREG|0644, st_size=82, ...}) = 0 | |
open("/usr/lib/python2.6/struct.pyc", O_RDONLY|O_LARGEFILE) = 6 | |
fstat64(6, {st_mode=S_IFREG|0644, st_size=237, ...}) = 0 | |
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7664000 | |
read(6, "\321\362\r\n\21m\310Kc\0\0\0\0\0\0\0\0\5\0\0\0@\0\0\0s.\0\0\0d\0"..., 4096) = 237 | |
fstat64(6, {st_mode=S_IFREG|0644, st_size=237, ...}) = 0 | |
read(6, "", 4096) = 0 | |
close(6) = 0 | |
munmap(0xb7664000, 4096) = 0 | |
close(5) = 0 | |
close(4) = 0 | |
stat64("/usr/local/bin/optparse", 0xbff7f088) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/optparse.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/optparsemodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/optparse.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/optparse.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/optparse", 0xbff7f088) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/optparse.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/optparsemodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/optparse.py", O_RDONLY|O_LARGEFILE) = 4 | |
fstat64(4, {st_mode=S_IFREG|0644, st_size=60849, ...}) = 0 | |
open("/usr/lib/python2.6/optparse.pyc", O_RDONLY|O_LARGEFILE) = 5 | |
fstat64(5, {st_mode=S_IFREG|0644, st_size=53959, ...}) = 0 | |
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7664000 | |
read(5, "\321\362\r\n\21m\310Kc\0\0\0\0\0\0\0\0\20\0\0\0@\0\0\0s\304\2\0\0d\0"..., 4096) = 4096 | |
fstat64(5, {st_mode=S_IFREG|0644, st_size=53959, ...}) = 0 | |
read(5, "\0\0Z\3\0d\2\0\204\0\0Z\4\0RS(\3\0\0\0s]\0\0\0\n R"..., 49152) = 49152 | |
read(5, "ous or doesn't match any of\n "..., 4096) = 711 | |
read(5, "", 4096) = 0 | |
close(5) = 0 | |
munmap(0xb7664000, 4096) = 0 | |
stat64("/usr/local/bin/textwrap", 0xbff7bc18) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/textwrap.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/textwrapmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/textwrap.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/textwrap.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/textwrap", 0xbff7bc18) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/textwrap.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/textwrapmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/textwrap.py", O_RDONLY|O_LARGEFILE) = 5 | |
fstat64(5, {st_mode=S_IFREG|0644, st_size=16889, ...}) = 0 | |
open("/usr/lib/python2.6/textwrap.pyc", O_RDONLY|O_LARGEFILE) = 6 | |
fstat64(6, {st_mode=S_IFREG|0644, st_size=11766, ...}) = 0 | |
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7664000 | |
read(6, "\321\362\r\n\21m\310Kc\0\0\0\0\0\0\0\0\6\0\0\0@\0\0\0s\272\0\0\0d\0"..., 4096) = 4096 | |
fstat64(6, {st_mode=S_IFREG|0644, st_size=11766, ...}) = 0 | |
read(6, "\0t\1\0\203\2\0o$\0\1|\0\0i\2\0o\r\0\1|\0\0i\3\0}\2\0qT"..., 4096) = 4096 | |
read(6, " converted to space.\n "..., 4096) = 3574 | |
read(6, "", 4096) = 0 | |
close(6) = 0 | |
munmap(0xb7664000, 4096) = 0 | |
close(5) = 0 | |
stat64("/usr/local/bin/gettext", 0xbff7bc18) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/gettext.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/gettextmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/gettext.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/gettext.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/gettext", 0xbff7bc18) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/gettext.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/gettextmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/gettext.py", O_RDONLY|O_LARGEFILE) = 5 | |
fstat64(5, {st_mode=S_IFREG|0644, st_size=20317, ...}) = 0 | |
open("/usr/lib/python2.6/gettext.pyc", O_RDONLY|O_LARGEFILE) = 6 | |
fstat64(6, {st_mode=S_IFREG|0644, st_size=15765, ...}) = 0 | |
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7664000 | |
read(6, "\321\362\r\n\21m\310Kc\0\0\0\0\0\0\0\0\23\0\0\0@\0\0\0s\264\1\0\0d\0"..., 4096) = 4096 | |
fstat64(6, {st_mode=S_IFREG|0644, st_size=15765, ...}) = 0 | |
read(6, "\0Z\t\0d\7\0\204\0\0Z\n\0d\10\0\204\0\0Z\v\0d\t\0\204\0\0Z\f\0d"..., 8192) = 8192 | |
read(6, "\7\0\6\1\r\0\6\1\r\1\31\2\7\1\n\2\6\1\7\0\6\1\r\1\5\1\37\1\17\1\20\6"..., 4096) = 3477 | |
read(6, "", 4096) = 0 | |
close(6) = 0 | |
munmap(0xb7664000, 4096) = 0 | |
stat64("/usr/local/bin/locale", 0xbff787a8) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/locale.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/localemodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/locale.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/locale.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/locale", 0xbff787a8) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/locale.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/localemodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/locale.py", O_RDONLY|O_LARGEFILE) = 6 | |
fstat64(6, {st_mode=S_IFREG|0644, st_size=82678, ...}) = 0 | |
open("/usr/lib/python2.6/locale.pyc", O_RDONLY|O_LARGEFILE) = 7 | |
fstat64(7, {st_mode=S_IFREG|0644, st_size=46609, ...}) = 0 | |
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7664000 | |
read(7, "\321\362\r\n\21m\310Kc\0\0\0\0\0\0\0\0\33\0\0\0@\0\0\0s&\36\0\0d\0"..., 4096) = 4096 | |
fstat64(7, {st_mode=S_IFREG|0644, st_size=46609, ...}) = 0 | |
read(7, "6d\341\2d\361\0026d\341\2d\362\0026d\341\2d\363\0026d\341\2d\364\0026d\341\2"..., 40960) = 40960 | |
read(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\7"..., 4096) = 1553 | |
read(7, "", 4096) = 0 | |
close(7) = 0 | |
munmap(0xb7664000, 4096) = 0 | |
stat64("/usr/local/bin/functools", 0xbff75338) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/functools.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/functoolsmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/functools.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/functools.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/functools", 0xbff75338) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/functools.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/functoolsmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/functools.py", O_RDONLY|O_LARGEFILE) = 7 | |
fstat64(7, {st_mode=S_IFREG|0644, st_size=2162, ...}) = 0 | |
open("/usr/lib/python2.6/functools.pyc", O_RDONLY|O_LARGEFILE) = 8 | |
fstat64(8, {st_mode=S_IFREG|0644, st_size=1921, ...}) = 0 | |
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7664000 | |
read(8, "\321\362\r\n\21m\310Kc\0\0\0\0\0\0\0\0\4\0\0\0@\0\0\0sJ\0\0\0d\0"..., 4096) = 1921 | |
fstat64(8, {st_mode=S_IFREG|0644, st_size=1921, ...}) = 0 | |
read(8, "", 4096) = 0 | |
close(8) = 0 | |
munmap(0xb7664000, 4096) = 0 | |
close(7) = 0 | |
close(6) = 0 | |
stat64("/usr/local/bin/copy", 0xbff787a8) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/copy.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/copymodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/copy.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/copy.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/copy", 0xbff787a8) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/copy.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/copymodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/copy.py", O_RDONLY|O_LARGEFILE) = 6 | |
fstat64(6, {st_mode=S_IFREG|0644, st_size=10996, ...}) = 0 | |
open("/usr/lib/python2.6/copy.pyc", O_RDONLY|O_LARGEFILE) = 7 | |
fstat64(7, {st_mode=S_IFREG|0644, st_size=11375, ...}) = 0 | |
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7664000 | |
read(7, "\321\362\r\n\20m\310Kc\0\0\0\0\0\0\0\0\30\0\0\0@\0\0\0sv\3\0\0d\0"..., 4096) = 4096 | |
fstat64(7, {st_mode=S_IFREG|0644, st_size=11375, ...}) = 0 | |
read(7, "\0}\1\0|\0\0i\3\0|\1\0\214\0\0}\2\0n\26\0\1t\4\0\203\0\0}\2\0"..., 4096) = 4096 | |
read(7, "\0\0\0i\4\0\0\0i\5\0\0\0R\35\0\0\0(\4\0\0\0i\2\0\0\0i\3\0\0"..., 4096) = 3183 | |
read(7, "", 4096) = 0 | |
close(7) = 0 | |
munmap(0xb7664000, 4096) = 0 | |
stat64("/usr/local/bin/org", 0xbff75338) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/org.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/orgmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/org.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/org.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/org", 0xbff75338) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/org.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/orgmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/org.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/org.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/plat-linux2/org", 0xbff75338) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/plat-linux2/org.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/plat-linux2/orgmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/plat-linux2/org.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/plat-linux2/org.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/lib-tk/org", 0xbff75338) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/lib-tk/org.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/lib-tk/orgmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/lib-tk/org.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/lib-tk/org.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/lib-dynload/org", 0xbff75338) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/lib-dynload/org.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/lib-dynload/orgmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/lib-dynload/org.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/lib-dynload/org.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/dist-packages/org", 0xbff75338) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/dist-packages/org.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/dist-packages/orgmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/dist-packages/org.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/dist-packages/org.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/pymodules/python2.6/org", 0xbff75338) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/pymodules/python2.6/org.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/pymodules/python2.6/orgmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/pymodules/python2.6/org.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/pymodules/python2.6/org.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/local/lib/python2.6/dist-packages/org", 0xbff75338) = -1 ENOENT (No such file or directory) | |
open("/usr/local/lib/python2.6/dist-packages/org.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/lib/python2.6/dist-packages/orgmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/lib/python2.6/dist-packages/org.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/lib/python2.6/dist-packages/org.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
close(6) = 0 | |
close(5) = 0 | |
stat64("/usr/share/locale/en_US.ISO8859-1/LC_MESSAGES/messages.mo", 0xbff7f88c) = -1 ENOENT (No such file or directory) | |
stat64("/usr/share/locale-langpack/en_US.ISO8859-1/LC_MESSAGES/messages.mo", 0xbff7f88c) = -1 ENOENT (No such file or directory) | |
stat64("/usr/share/locale/en_US/LC_MESSAGES/messages.mo", 0xbff7f88c) = -1 ENOENT (No such file or directory) | |
stat64("/usr/share/locale-langpack/en_US/LC_MESSAGES/messages.mo", 0xbff7f88c) = -1 ENOENT (No such file or directory) | |
stat64("/usr/share/locale/en.ISO8859-1/LC_MESSAGES/messages.mo", 0xbff7f88c) = -1 ENOENT (No such file or directory) | |
stat64("/usr/share/locale-langpack/en.ISO8859-1/LC_MESSAGES/messages.mo", 0xbff7f88c) = -1 ENOENT (No such file or directory) | |
stat64("/usr/share/locale/en/LC_MESSAGES/messages.mo", 0xbff7f88c) = -1 ENOENT (No such file or directory) | |
stat64("/usr/share/locale-langpack/en/LC_MESSAGES/messages.mo", 0xbff7f88c) = -1 ENOENT (No such file or directory) | |
stat64("/usr/share/locale/en_US.ISO8859-1/LC_MESSAGES/messages.mo", 0xbff7f88c) = -1 ENOENT (No such file or directory) | |
stat64("/usr/share/locale-langpack/en_US.ISO8859-1/LC_MESSAGES/messages.mo", 0xbff7f88c) = -1 ENOENT (No such file or directory) | |
stat64("/usr/share/locale/en_US/LC_MESSAGES/messages.mo", 0xbff7f88c) = -1 ENOENT (No such file or directory) | |
stat64("/usr/share/locale-langpack/en_US/LC_MESSAGES/messages.mo", 0xbff7f88c) = -1 ENOENT (No such file or directory) | |
stat64("/usr/share/locale/en.ISO8859-1/LC_MESSAGES/messages.mo", 0xbff7f88c) = -1 ENOENT (No such file or directory) | |
stat64("/usr/share/locale-langpack/en.ISO8859-1/LC_MESSAGES/messages.mo", 0xbff7f88c) = -1 ENOENT (No such file or directory) | |
stat64("/usr/share/locale/en/LC_MESSAGES/messages.mo", 0xbff7f88c) = -1 ENOENT (No such file or directory) | |
stat64("/usr/share/locale-langpack/en/LC_MESSAGES/messages.mo", 0xbff7f88c) = -1 ENOENT (No such file or directory) | |
stat64("/usr/share/locale/en_US.ISO8859-1/LC_MESSAGES/messages.mo", 0xbff7f88c) = -1 ENOENT (No such file or directory) | |
stat64("/usr/share/locale-langpack/en_US.ISO8859-1/LC_MESSAGES/messages.mo", 0xbff7f88c) = -1 ENOENT (No such file or directory) | |
stat64("/usr/share/locale/en_US/LC_MESSAGES/messages.mo", 0xbff7f88c) = -1 ENOENT (No such file or directory) | |
stat64("/usr/share/locale-langpack/en_US/LC_MESSAGES/messages.mo", 0xbff7f88c) = -1 ENOENT (No such file or directory) | |
stat64("/usr/share/locale/en.ISO8859-1/LC_MESSAGES/messages.mo", 0xbff7f88c) = -1 ENOENT (No such file or directory) | |
stat64("/usr/share/locale-langpack/en.ISO8859-1/LC_MESSAGES/messages.mo", 0xbff7f88c) = -1 ENOENT (No such file or directory) | |
stat64("/usr/share/locale/en/LC_MESSAGES/messages.mo", 0xbff7f88c) = -1 ENOENT (No such file or directory) | |
stat64("/usr/share/locale-langpack/en/LC_MESSAGES/messages.mo", 0xbff7f88c) = -1 ENOENT (No such file or directory) | |
stat64("/usr/share/locale/en_US.ISO8859-1/LC_MESSAGES/messages.mo", 0xbff7f88c) = -1 ENOENT (No such file or directory) | |
stat64("/usr/share/locale-langpack/en_US.ISO8859-1/LC_MESSAGES/messages.mo", 0xbff7f88c) = -1 ENOENT (No such file or directory) | |
stat64("/usr/share/locale/en_US/LC_MESSAGES/messages.mo", 0xbff7f88c) = -1 ENOENT (No such file or directory) | |
stat64("/usr/share/locale-langpack/en_US/LC_MESSAGES/messages.mo", 0xbff7f88c) = -1 ENOENT (No such file or directory) | |
stat64("/usr/share/locale/en.ISO8859-1/LC_MESSAGES/messages.mo", 0xbff7f88c) = -1 ENOENT (No such file or directory) | |
stat64("/usr/share/locale-langpack/en.ISO8859-1/LC_MESSAGES/messages.mo", 0xbff7f88c) = -1 ENOENT (No such file or directory) | |
stat64("/usr/share/locale/en/LC_MESSAGES/messages.mo", 0xbff7f88c) = -1 ENOENT (No such file or directory) | |
stat64("/usr/share/locale-langpack/en/LC_MESSAGES/messages.mo", 0xbff7f88c) = -1 ENOENT (No such file or directory) | |
mmap2(NULL, 266240, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb75a1000 | |
close(4) = 0 | |
stat64("/usr/local/bin/shutil", 0xbff7f088) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/shutil.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/shutilmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/shutil.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/shutil.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/shutil", 0xbff7f088) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/shutil.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/shutilmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/shutil.py", O_RDONLY|O_LARGEFILE) = 4 | |
fstat64(4, {st_mode=S_IFREG|0644, st_size=8594, ...}) = 0 | |
open("/usr/lib/python2.6/shutil.pyc", O_RDONLY|O_LARGEFILE) = 5 | |
fstat64(5, {st_mode=S_IFREG|0644, st_size=9366, ...}) = 0 | |
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb75a0000 | |
read(5, "\321\362\r\n\21m\310Kc\0\0\0\0\0\0\0\0\17\0\0\0@\0\0\0s,\1\0\0d\0"..., 4096) = 4096 | |
fstat64(5, {st_mode=S_IFREG|0644, st_size=9366, ...}) = 0 | |
read(5, "\203\4\0\1n\16\0\1t\f\0|\10\0|\t\0\203\2\0\1WqR\0\4t\r\0t\0\0"..., 4096) = 4096 | |
read(5, "ination is on our current filesy"..., 4096) = 1174 | |
read(5, "", 4096) = 0 | |
close(5) = 0 | |
munmap(0xb75a0000, 4096) = 0 | |
stat64("/usr/local/bin/fnmatch", 0xbff7bc18) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/fnmatch.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/fnmatchmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/fnmatch.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/fnmatch.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/fnmatch", 0xbff7bc18) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/fnmatch.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/fnmatchmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/fnmatch.py", O_RDONLY|O_LARGEFILE) = 5 | |
fstat64(5, {st_mode=S_IFREG|0644, st_size=3025, ...}) = 0 | |
open("/usr/lib/python2.6/fnmatch.pyc", O_RDONLY|O_LARGEFILE) = 6 | |
fstat64(6, {st_mode=S_IFREG|0644, st_size=3259, ...}) = 0 | |
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb75a0000 | |
read(6, "\321\362\r\n\21m\310Kc\0\0\0\0\0\0\0\0\5\0\0\0@\0\0\0sR\0\0\0d\0"..., 4096) = 3259 | |
fstat64(6, {st_mode=S_IFREG|0644, st_size=3259, ...}) = 0 | |
read(6, "", 4096) = 0 | |
close(6) = 0 | |
munmap(0xb75a0000, 4096) = 0 | |
close(5) = 0 | |
close(4) = 0 | |
stat64("/usr/local/bin/logging", 0xbff7f088) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/logging.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/loggingmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/logging.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/logging.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/logging", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
stat64("/usr/lib/python2.6/logging/__init__.py", {st_mode=S_IFREG|0644, st_size=53298, ...}) = 0 | |
stat64("/usr/lib/python2.6/logging/__init__", 0xbff7e038) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/logging/__init__.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/logging/__init__module.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/logging/__init__.py", O_RDONLY|O_LARGEFILE) = 4 | |
fstat64(4, {st_mode=S_IFREG|0644, st_size=53298, ...}) = 0 | |
open("/usr/lib/python2.6/logging/__init__.pyc", O_RDONLY|O_LARGEFILE) = 5 | |
fstat64(5, {st_mode=S_IFREG|0644, st_size=51622, ...}) = 0 | |
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb75a0000 | |
read(5, "\321\362\r\n\24m\310Kc\0\0\0\0\0\0\0\0#\0\0\0@\0\0\0s\3\5\0\0d\0"..., 4096) = 4096 | |
fstat64(5, {st_mode=S_IFREG|0644, st_size=51622, ...}) = 0 | |
brk(0x84c8000) = 0x84c8000 | |
read(5, "by calling _acquireLock().\n N"..., 45056) = 45056 | |
read(5, "\0\1t\1\0i\4\0|\0\0f\1\0|\1\0\27|\2\0\216\0\0\1d\2\0S(\3\0"..., 4096) = 2470 | |
read(5, "", 4096) = 0 | |
close(5) = 0 | |
munmap(0xb75a0000, 4096) = 0 | |
stat64("/usr/lib/python2.6/logging", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
stat64("/usr/lib/python2.6/logging", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
stat64("/usr/lib/python2.6/logging/sys", 0xbff7abc8) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/logging/sys.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/logging/sysmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/logging/sys.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/logging/sys.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/logging/os", 0xbff7abc8) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/logging/os.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/logging/osmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/logging/os.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/logging/os.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/logging/types", 0xbff7abc8) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/logging/types.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/logging/typesmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/logging/types.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/logging/types.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/logging/time", 0xbff7abc8) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/logging/time.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/logging/timemodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/logging/time.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/logging/time.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/logging/string", 0xbff7abc8) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/logging/string.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/logging/stringmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/logging/string.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/logging/string.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/logging/cStringIO", 0xbff7abc8) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/logging/cStringIO.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/logging/cStringIOmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/logging/cStringIO.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/logging/cStringIO.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/logging/traceback", 0xbff7abc8) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/logging/traceback.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/logging/tracebackmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/logging/traceback.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/logging/traceback.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/local/bin/traceback", 0xbff7abc8) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/traceback.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/tracebackmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/traceback.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/traceback.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/traceback", 0xbff7abc8) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/traceback.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/tracebackmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/traceback.py", O_RDONLY|O_LARGEFILE) = 5 | |
fstat64(5, {st_mode=S_IFREG|0644, st_size=11060, ...}) = 0 | |
open("/usr/lib/python2.6/traceback.pyc", O_RDONLY|O_LARGEFILE) = 6 | |
fstat64(6, {st_mode=S_IFREG|0644, st_size=11501, ...}) = 0 | |
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb75a0000 | |
read(6, "\321\362\r\n\21m\310Kc\0\0\0\0\0\0\0\0\21\0\0\0@\0\0\0sB\1\0\0d\0"..., 4096) = 4096 | |
fstat64(6, {st_mode=S_IFREG|0644, st_size=11501, ...}) = 0 | |
read(6, "not\n available it is None.\n "..., 4096) = 4096 | |
read(6, "r 'print_exception(sys.exc_type,"..., 4096) = 3309 | |
read(6, "", 4096) = 0 | |
close(6) = 0 | |
munmap(0xb75a0000, 4096) = 0 | |
close(5) = 0 | |
stat64("/usr/lib/python2.6/logging/codecs", 0xbff7abc8) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/logging/codecs.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/logging/codecsmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/logging/codecs.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/logging/codecs.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/logging/thread", 0xbff7abc8) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/logging/thread.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/logging/threadmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/logging/thread.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/logging/thread.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/logging/threading", 0xbff7abc8) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/logging/threading.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/logging/threadingmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/logging/threading.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/logging/threading.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/local/bin/threading", 0xbff7abc8) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/threading.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/threadingmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/threading.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/threading.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/threading", 0xbff7abc8) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/threading.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/threadingmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/threading.py", O_RDONLY|O_LARGEFILE) = 5 | |
fstat64(5, {st_mode=S_IFREG|0644, st_size=31808, ...}) = 0 | |
open("/usr/lib/python2.6/threading.pyc", O_RDONLY|O_LARGEFILE) = 6 | |
fstat64(6, {st_mode=S_IFREG|0644, st_size=27956, ...}) = 0 | |
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb75a0000 | |
read(6, "\321\362\r\n\21m\310Kc\0\0\0\0\0\0\0\0\33\0\0\0@\0\0\0s6\3\0\0d\0"..., 4096) = 4096 | |
fstat64(6, {st_mode=S_IFREG|0644, st_size=27956, ...}) = 0 | |
read(6, "\0\0\0s\2\0\0\0\0\1c\2\0\0\0\4\0\0\0\3\0\0\0C\0\0\0s?\0\0\0"..., 20480) = 20480 | |
read(6, "\6\0|\1\0|\0\0_\7\0t\10\0\203\0\0|\0\0_\t\0d\0\0S(\1\0\0\0"..., 4096) = 3380 | |
read(6, "", 4096) = 0 | |
close(6) = 0 | |
munmap(0xb75a0000, 4096) = 0 | |
stat64("/usr/local/bin/collections", 0xbff77758) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/collections.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/collectionsmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/collections.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/collections.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/collections", 0xbff77758) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/collections.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/collectionsmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/collections.py", O_RDONLY|O_LARGEFILE) = 6 | |
fstat64(6, {st_mode=S_IFREG|0644, st_size=6150, ...}) = 0 | |
open("/usr/lib/python2.6/collections.pyc", O_RDONLY|O_LARGEFILE) = 7 | |
fstat64(7, {st_mode=S_IFREG|0644, st_size=6611, ...}) = 0 | |
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb75a0000 | |
read(7, "\321\362\r\n\20m\310Kc\0\0\0\0\0\0\0\0\r\0\0\0@\0\0\0s\306\1\0\0d\0"..., 4096) = 4096 | |
fstat64(7, {st_mode=S_IFREG|0644, st_size=6611, ...}) = 0 | |
read(7, "keys())\n return resul"..., 4096) = 2515 | |
read(7, "", 4096) = 0 | |
close(7) = 0 | |
munmap(0xb75a0000, 4096) = 0 | |
stat64("/usr/local/bin/keyword", 0xbff742e8) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/keyword.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/keywordmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/keyword.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/keyword.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/keyword", 0xbff742e8) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/keyword.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/keywordmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/keyword.py", O_RDONLY|O_LARGEFILE) = 7 | |
fstat64(7, {st_mode=S_IFREG|0755, st_size=1993, ...}) = 0 | |
open("/usr/lib/python2.6/keyword.pyc", O_RDONLY|O_LARGEFILE) = 8 | |
fstat64(8, {st_mode=S_IFREG|0644, st_size=2113, ...}) = 0 | |
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb75a0000 | |
read(8, "\321\362\r\n7m\310Kc\0\0\0\0\0\0\0\0\37\0\0\0@\0\0\0s\251\0\0\0d\0"..., 4096) = 2113 | |
fstat64(8, {st_mode=S_IFREG|0644, st_size=2113, ...}) = 0 | |
read(8, "", 4096) = 0 | |
close(8) = 0 | |
munmap(0xb75a0000, 4096) = 0 | |
close(7) = 0 | |
close(6) = 0 | |
close(5) = 0 | |
gettimeofday({1354671767, 57709}, NULL) = 0 | |
stat64("/usr/lib/python2.6/logging/atexit", 0xbff7abc8) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/logging/atexit.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/logging/atexitmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/logging/atexit.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/logging/atexit.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/local/bin/atexit", 0xbff7abc8) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/atexit.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/atexitmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/atexit.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/atexit.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/atexit", 0xbff7abc8) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/atexit.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/atexitmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/atexit.py", O_RDONLY|O_LARGEFILE) = 5 | |
fstat64(5, {st_mode=S_IFREG|0644, st_size=1705, ...}) = 0 | |
open("/usr/lib/python2.6/atexit.pyc", O_RDONLY|O_LARGEFILE) = 6 | |
fstat64(6, {st_mode=S_IFREG|0644, st_size=2203, ...}) = 0 | |
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb75a0000 | |
read(6, "\321\362\r\n\20m\310Kc\0\0\0\0\0\0\0\0\5\0\0\0@\0\0\0s\304\0\0\0d\0"..., 4096) = 2203 | |
fstat64(6, {st_mode=S_IFREG|0644, st_size=2203, ...}) = 0 | |
read(6, "", 4096) = 0 | |
close(6) = 0 | |
munmap(0xb75a0000, 4096) = 0 | |
close(5) = 0 | |
close(4) = 0 | |
stat64("/usr/local/bin/tempfile", 0xbff7f088) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/tempfile.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/tempfilemodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/tempfile.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/tempfile.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/tempfile", 0xbff7f088) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/tempfile.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/tempfilemodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/tempfile.py", O_RDONLY|O_LARGEFILE) = 4 | |
fstat64(4, {st_mode=S_IFREG|0644, st_size=17774, ...}) = 0 | |
open("/usr/lib/python2.6/tempfile.pyc", O_RDONLY|O_LARGEFILE) = 5 | |
fstat64(5, {st_mode=S_IFREG|0644, st_size=19463, ...}) = 0 | |
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb75a0000 | |
read(5, "\321\362\r\n\21m\310Kc\0\0\0\0\0\0\0\0\26\0\0\0@\0\0\0s\25\3\0\0d\0"..., 4096) = 4096 | |
fstat64(5, {st_mode=S_IFREG|0644, st_size=19463, ...}) = 0 | |
read(5, "\0}\0\0x5\0d\16\0D]-\0}\1\0t\0\0i\1\0|\1\0\203\1\0}\2\0"..., 12288) = 12288 | |
read(5, ".pyR\235\0\0\0#\2\0\0s\2\0\0\0\0\1c\1\0\0\0\1\0\0\0\1\0\0\0"..., 4096) = 3079 | |
read(5, "", 4096) = 0 | |
close(5) = 0 | |
munmap(0xb75a0000, 4096) = 0 | |
stat64("/usr/local/bin/random", 0xbff7bc18) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/random.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/randommodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/random.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/random.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/random", 0xbff7bc18) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/random.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/randommodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/random.py", O_RDONLY|O_LARGEFILE) = 5 | |
fstat64(5, {st_mode=S_IFREG|0644, st_size=31966, ...}) = 0 | |
open("/usr/lib/python2.6/random.pyc", O_RDONLY|O_LARGEFILE) = 6 | |
fstat64(6, {st_mode=S_IFREG|0644, st_size=25024, ...}) = 0 | |
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb75a0000 | |
read(6, "\321\362\r\n\21m\310Kc\0\0\0\0\0\0\0\0 \0\0\0@ \0\0s\231\2\0\0d\0"..., 4096) = 4096 | |
fstat64(6, {st_mode=S_IFREG|0644, st_size=25024, ...}) = 0 | |
read(6, " available.\n\n If a is not"..., 20480) = 20480 | |
read(6, "R\n\0\0\0R}\0\0\0R\v\0\0\0R{\0\0\0R\f\0\0\0R\214\0\0\0t\2"..., 4096) = 448 | |
read(6, "", 4096) = 0 | |
close(6) = 0 | |
munmap(0xb75a0000, 4096) = 0 | |
stat64("/usr/local/bin/__future__", 0xbff787a8) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/__future__.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/__future__module.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/__future__.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/__future__.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/__future__", 0xbff787a8) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/__future__.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/__future__module.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/__future__.py", O_RDONLY|O_LARGEFILE) = 6 | |
fstat64(6, {st_mode=S_IFREG|0644, st_size=4380, ...}) = 0 | |
open("/usr/lib/python2.6/__future__.pyc", O_RDONLY|O_LARGEFILE) = 7 | |
fstat64(7, {st_mode=S_IFREG|0644, st_size=4221, ...}) = 0 | |
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb75a0000 | |
read(7, "\321\362\r\n\20m\310Kc\0\0\0\0\0\0\0\0\7\0\0\0@\0\0\0s\355\0\0\0d\0"..., 4096) = 4096 | |
fstat64(7, {st_mode=S_IFREG|0644, st_size=4221, ...}) = 0 | |
read(7, "r/lib/python2.6/__future__.pyt\10\0"..., 4096) = 125 | |
read(7, "", 4096) = 0 | |
close(7) = 0 | |
munmap(0xb75a0000, 4096) = 0 | |
close(6) = 0 | |
time(NULL) = 1354671767 | |
open("/dev/urandom", O_RDONLY|O_LARGEFILE) = 6 | |
read(6, "\2666l\260\221t3\264\346;\221\21\336-/\337", 16) = 16 | |
close(6) = 0 | |
close(5) = 0 | |
close(4) = 0 | |
stat64("/usr/local/bin/glob", 0xbff7f088) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/glob.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/globmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/glob.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/glob.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/glob", 0xbff7f088) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/glob.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/globmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/glob.py", O_RDONLY|O_LARGEFILE) = 4 | |
fstat64(4, {st_mode=S_IFREG|0644, st_size=2249, ...}) = 0 | |
open("/usr/lib/python2.6/glob.pyc", O_RDONLY|O_LARGEFILE) = 5 | |
fstat64(5, {st_mode=S_IFREG|0644, st_size=2395, ...}) = 0 | |
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb75a0000 | |
read(5, "\321\362\r\n\21m\310Kc\0\0\0\0\0\0\0\0\6\0\0\0@\0\0\0s\202\0\0\0d\0"..., 4096) = 2395 | |
fstat64(5, {st_mode=S_IFREG|0644, st_size=2395, ...}) = 0 | |
read(5, "", 4096) = 0 | |
close(5) = 0 | |
munmap(0xb75a0000, 4096) = 0 | |
close(4) = 0 | |
stat64("/usr/lib/python2.6/distutils/sysconfig", 0xbff7f088) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/distutils/sysconfig.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/distutils/sysconfigmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/distutils/sysconfig.py", O_RDONLY|O_LARGEFILE) = 4 | |
fstat64(4, {st_mode=S_IFREG|0644, st_size=23265, ...}) = 0 | |
open("/usr/lib/python2.6/distutils/sysconfig.pyc", O_RDONLY|O_LARGEFILE) = 5 | |
fstat64(5, {st_mode=S_IFREG|0644, st_size=16824, ...}) = 0 | |
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb75a0000 | |
read(5, "\321\362\r\n\25m\310Kc\0\0\0\0\0\0\0\0\r\0\0\0@\0\0\0s\204\2\0\0d\0"..., 4096) = 4096 | |
fstat64(5, {st_mode=S_IFREG|0644, st_size=16824, ...}) = 0 | |
read(5, "urn the platform-shared library\n"..., 12288) = 12288 | |
read(5, "\0\0\0\0\5(-\0\0\0t\7\0\0\0__doc__t\f\0\0\0__rev"..., 4096) = 440 | |
read(5, "", 4096) = 0 | |
mmap2(NULL, 397312, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb753f000 | |
close(5) = 0 | |
munmap(0xb75a0000, 4096) = 0 | |
stat64("/usr/bin/Modules/Setup.dist", 0xbff7fc4c) = -1 ENOENT (No such file or directory) | |
stat64("/usr/bin/Modules/Setup.local", 0xbff7fc4c) = -1 ENOENT (No such file or directory) | |
close(4) = 0 | |
stat64("/usr/local/bin/subprocess", 0xbff7f088) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/subprocess.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/subprocessmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/subprocess.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/subprocess.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/subprocess", 0xbff7f088) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/subprocess.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/subprocessmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/subprocess.py", O_RDONLY|O_LARGEFILE) = 4 | |
fstat64(4, {st_mode=S_IFREG|0644, st_size=46863, ...}) = 0 | |
open("/usr/lib/python2.6/subprocess.pyc", O_RDONLY|O_LARGEFILE) = 5 | |
fstat64(5, {st_mode=S_IFREG|0644, st_size=34190, ...}) = 0 | |
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb75a0000 | |
read(5, "\321\362\r\n\21m\310Kc\0\0\0\0\0\0\0\0\20\0\0\0@\0\0\0s\306\1\0\0d\0"..., 4096) = 4096 | |
fstat64(5, {st_mode=S_IFREG|0644, st_size=34190, ...}) = 0 | |
read(5, "Python program. Note: This feat"..., 28672) = 28672 | |
read(5, "rocess list:t\2\0\0\0idRX\0\0\0c\0\0\0\0\0\0\0"..., 4096) = 1422 | |
read(5, "", 4096) = 0 | |
mmap2(NULL, 266240, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb74fe000 | |
close(5) = 0 | |
munmap(0xb75a0000, 4096) = 0 | |
stat64("/usr/local/bin/pickle", 0xbff7bc18) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/pickle.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/picklemodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/pickle.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/pickle.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/pickle", 0xbff7bc18) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/pickle.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/picklemodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/pickle.py", O_RDONLY|O_LARGEFILE) = 5 | |
fstat64(5, {st_mode=S_IFREG|0644, st_size=44811, ...}) = 0 | |
open("/usr/lib/python2.6/pickle.pyc", O_RDONLY|O_LARGEFILE) = 6 | |
fstat64(6, {st_mode=S_IFREG|0644, st_size=38437, ...}) = 0 | |
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb75a0000 | |
read(6, "\321\362\r\n\21m\310Kc\0\0\0\0\0\0\0\0\27\0\0\0@\0\0\0s\2\4\0\0d\0"..., 4096) = 4096 | |
fstat64(6, {st_mode=S_IFREG|0644, st_size=38437, ...}) = 0 | |
read(6, "\4\0\0This takes a file-like object"..., 32768) = 32768 | |
read(6, "\0\0\203\0\0}\2\0t\1\0|\2\0|\1\0\203\2\0i\2\0|\0\0\203\1\0\1|\2"..., 4096) = 1573 | |
read(6, "", 4096) = 0 | |
close(6) = 0 | |
munmap(0xb75a0000, 4096) = 0 | |
stat64("/usr/local/bin/org", 0xbff787a8) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/org.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/orgmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/org.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/org.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/org", 0xbff787a8) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/org.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/orgmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/org.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/org.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/plat-linux2/org", 0xbff787a8) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/plat-linux2/org.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/plat-linux2/orgmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/plat-linux2/org.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/plat-linux2/org.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/lib-tk/org", 0xbff787a8) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/lib-tk/org.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/lib-tk/orgmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/lib-tk/org.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/lib-tk/org.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/lib-dynload/org", 0xbff787a8) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/lib-dynload/org.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/lib-dynload/orgmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/lib-dynload/org.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/lib-dynload/org.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/dist-packages/org", 0xbff787a8) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/dist-packages/org.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/dist-packages/orgmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/dist-packages/org.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/dist-packages/org.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/pymodules/python2.6/org", 0xbff787a8) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/pymodules/python2.6/org.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/pymodules/python2.6/orgmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/pymodules/python2.6/org.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/pymodules/python2.6/org.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/local/lib/python2.6/dist-packages/org", 0xbff787a8) = -1 ENOENT (No such file or directory) | |
open("/usr/local/lib/python2.6/dist-packages/org.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/lib/python2.6/dist-packages/orgmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/lib/python2.6/dist-packages/org.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/lib/python2.6/dist-packages/org.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
close(5) = 0 | |
getrlimit(RLIMIT_NOFILE, {rlim_cur=1024, rlim_max=1024}) = 0 | |
close(4) = 0 | |
stat64("/usr/local/bin/ConfigParser", 0xbff7f088) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/ConfigParser.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/ConfigParsermodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/ConfigParser.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/ConfigParser.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/ConfigParser", 0xbff7f088) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/ConfigParser.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/ConfigParsermodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/ConfigParser.py", O_RDONLY|O_LARGEFILE) = 4 | |
fstat64(4, {st_mode=S_IFREG|0644, st_size=24488, ...}) = 0 | |
open("/usr/lib/python2.6/ConfigParser.pyc", O_RDONLY|O_LARGEFILE) = 5 | |
fstat64(5, {st_mode=S_IFREG|0644, st_size=23211, ...}) = 0 | |
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb75a0000 | |
read(5, "\321\362\r\n\20m\310Kc\0\0\0\0\0\0\0\0\16\0\0\0@\0\0\0sj\1\0\0d\0"..., 4096) = 4096 | |
fstat64(5, {st_mode=S_IFREG|0644, st_size=23211, ...}) = 0 | |
read(5, "age(\1\0\0\0t\4\0\0\0self(\0\0\0\0(\0\0\0\0s\"\0\0\0"..., 16384) = 16384 | |
read(5, "\0_KEYCREt\3\0\0\0subt\26\0\0\0_interpolat"..., 4096) = 2731 | |
read(5, "", 4096) = 0 | |
close(5) = 0 | |
munmap(0xb75a0000, 4096) = 0 | |
close(4) = 0 | |
stat64("/usr/lib/python2.6/encodings/ascii", 0xbff7ecf8) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/encodings/ascii.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/encodings/asciimodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/encodings/ascii.py", O_RDONLY|O_LARGEFILE) = 4 | |
fstat64(4, {st_mode=S_IFREG|0644, st_size=1248, ...}) = 0 | |
open("/usr/lib/python2.6/encodings/ascii.pyc", O_RDONLY|O_LARGEFILE) = 5 | |
fstat64(5, {st_mode=S_IFREG|0644, st_size=2261, ...}) = 0 | |
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb75a0000 | |
read(5, "\321\362\r\n\23m\310Kc\0\0\0\0\0\0\0\0\4\0\0\0@\0\0\0s\273\0\0\0d\0"..., 4096) = 2261 | |
fstat64(5, {st_mode=S_IFREG|0644, st_size=2261, ...}) = 0 | |
read(5, "", 4096) = 0 | |
close(5) = 0 | |
munmap(0xb75a0000, 4096) = 0 | |
close(4) = 0 | |
brk(0x84f0000) = 0x84f0000 | |
brk(0x84ee000) = 0x84ee000 | |
stat64("/usr/lib/python2.6/encodings/utf_8", 0xbff7ecf8) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/encodings/utf_8.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/encodings/utf_8module.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/encodings/utf_8.py", O_RDONLY|O_LARGEFILE) = 4 | |
fstat64(4, {st_mode=S_IFREG|0644, st_size=1005, ...}) = 0 | |
open("/usr/lib/python2.6/encodings/utf_8.pyc", O_RDONLY|O_LARGEFILE) = 5 | |
fstat64(5, {st_mode=S_IFREG|0644, st_size=1950, ...}) = 0 | |
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb75a0000 | |
read(5, "\321\362\r\n\24m\310Kc\0\0\0\0\0\0\0\0\4\0\0\0@\0\0\0s\230\0\0\0d\0"..., 4096) = 1950 | |
fstat64(5, {st_mode=S_IFREG|0644, st_size=1950, ...}) = 0 | |
read(5, "", 4096) = 0 | |
close(5) = 0 | |
munmap(0xb75a0000, 4096) = 0 | |
close(4) = 0 | |
brk(0x850f000) = 0x850f000 | |
brk(0x8509000) = 0x8509000 | |
close(3) = 0 | |
open("/home/vagrant/.virtualenv/virtualenv.ini", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/share/locale/en_US.ISO8859-1/LC_MESSAGES/messages.mo", 0xbff8571c) = -1 ENOENT (No such file or directory) | |
stat64("/usr/share/locale-langpack/en_US.ISO8859-1/LC_MESSAGES/messages.mo", 0xbff8571c) = -1 ENOENT (No such file or directory) | |
stat64("/usr/share/locale/en_US/LC_MESSAGES/messages.mo", 0xbff8571c) = -1 ENOENT (No such file or directory) | |
stat64("/usr/share/locale-langpack/en_US/LC_MESSAGES/messages.mo", 0xbff8571c) = -1 ENOENT (No such file or directory) | |
stat64("/usr/share/locale/en.ISO8859-1/LC_MESSAGES/messages.mo", 0xbff8571c) = -1 ENOENT (No such file or directory) | |
stat64("/usr/share/locale-langpack/en.ISO8859-1/LC_MESSAGES/messages.mo", 0xbff8571c) = -1 ENOENT (No such file or directory) | |
stat64("/usr/share/locale/en/LC_MESSAGES/messages.mo", 0xbff8571c) = -1 ENOENT (No such file or directory) | |
stat64("/usr/share/locale-langpack/en/LC_MESSAGES/messages.mo", 0xbff8571c) = -1 ENOENT (No such file or directory) | |
stat64("/usr/share/locale/en_US.ISO8859-1/LC_MESSAGES/messages.mo", 0xbff8571c) = -1 ENOENT (No such file or directory) | |
stat64("/usr/share/locale-langpack/en_US.ISO8859-1/LC_MESSAGES/messages.mo", 0xbff8571c) = -1 ENOENT (No such file or directory) | |
stat64("/usr/share/locale/en_US/LC_MESSAGES/messages.mo", 0xbff8571c) = -1 ENOENT (No such file or directory) | |
stat64("/usr/share/locale-langpack/en_US/LC_MESSAGES/messages.mo", 0xbff8571c) = -1 ENOENT (No such file or directory) | |
stat64("/usr/share/locale/en.ISO8859-1/LC_MESSAGES/messages.mo", 0xbff8571c) = -1 ENOENT (No such file or directory) | |
stat64("/usr/share/locale-langpack/en.ISO8859-1/LC_MESSAGES/messages.mo", 0xbff8571c) = -1 ENOENT (No such file or directory) | |
stat64("/usr/share/locale/en/LC_MESSAGES/messages.mo", 0xbff8571c) = -1 ENOENT (No such file or directory) | |
stat64("/usr/share/locale-langpack/en/LC_MESSAGES/messages.mo", 0xbff8571c) = -1 ENOENT (No such file or directory) | |
stat64(".", {st_mode=S_IFDIR|0755, st_size=170, ...}) = 0 | |
stat64("/usr/local/lib/python2.6/dist-packages", {st_mode=S_IFDIR|S_ISGID|0775, st_size=4096, ...}) = 0 | |
stat64("/usr/local/lib/python2.6/dist-packages/virtualenv_support", {st_mode=S_IFDIR|S_ISGID|0755, st_size=4096, ...}) = 0 | |
stat64("/usr/local/lib/python2.6/dist-packages/virtualenv_support", {st_mode=S_IFDIR|S_ISGID|0755, st_size=4096, ...}) = 0 | |
stat64("/usr/bin/multiarch-platform", 0xbff864cc) = -1 ENOENT (No such file or directory) | |
stat64("test0/lib/python2.6", {st_mode=S_IFDIR|0755, st_size=986, ...}) = 0 | |
stat64("/usr/lib/python2.6/distutils/text_file", 0xbff81f68) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/distutils/text_file.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/distutils/text_filemodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/distutils/text_file.py", O_RDONLY|O_LARGEFILE) = 3 | |
fstat64(3, {st_mode=S_IFREG|0644, st_size=15145, ...}) = 0 | |
open("/usr/lib/python2.6/distutils/text_file.pyc", O_RDONLY|O_LARGEFILE) = 4 | |
fstat64(4, {st_mode=S_IFREG|0644, st_size=11225, ...}) = 0 | |
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb75a0000 | |
read(4, "\321\362\r\n\25m\310Kc\0\0\0\0\0\0\0\0\21\0\0\0@\0\0\0sF\2\0\0d\0"..., 4096) = 4096 | |
fstat64(4, {st_mode=S_IFREG|0644, st_size=11225, ...}) = 0 | |
read(4, "_commentst\v\0\0\0skip_blanksi\0\0\0\0t\t"..., 4096) = 4096 | |
read(4, ". Updates the current line numb"..., 4096) = 3033 | |
read(4, "", 4096) = 0 | |
close(4) = 0 | |
munmap(0xb75a0000, 4096) = 0 | |
stat64("/usr/lib/python2.6/distutils/types", 0xbff7eaf8) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/distutils/types.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/distutils/typesmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/distutils/types.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/distutils/types.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
close(3) = 0 | |
open("/usr/lib/python2.6/config/Makefile", O_RDONLY|O_LARGEFILE) = 3 | |
fstat64(3, {st_mode=S_IFREG|0644, st_size=50554, ...}) = 0 | |
fstat64(3, {st_mode=S_IFREG|0644, st_size=50554, ...}) = 0 | |
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb75a0000 | |
read(3, "# Generated automatically from M"..., 4096) = 4096 | |
read(3, "ared -Wl,-O1 -Wl,-Bsymbolic-func"..., 4096) = 4096 | |
read(3, ".c\nAST_ASDL=\t$(srcdir)/Parser/Py"..., 4096) = 4096 | |
read(3, ")' OPT='$(OPT)' ./$(BUILDPYTHON)"..., 4096) = 4096 | |
read(3, "cho \"Usually, copying Modules/Se"..., 4096) = 4096 | |
read(3, "impl.h \\\n\t\tInclude/opcode.h \\\n\t\t"..., 4096) = 4096 | |
read(3, "NSTALL) -d -m $(DIRMODE) $(DESTD"..., 4096) = 4096 | |
read(3, "\t\t\tesac; \\\n\t\tdone; \\\n\tdone\n\t$(IN"..., 4096) = 4096 | |
read(3, "srcdir)/Modules/ld_so_aix\t\\\n\t\t\t\t"..., 4096) = 4096 | |
read(3, "ameworkinstallextras:\n\tcd Mac &&"..., 4096) = 4096 | |
read(3, " oldsharedmods test quicktest me"..., 4096) = 4096 | |
read(3, "bisectmodule.o -o Modules/_bis"..., 4096) = 4096 | |
read(3, ".c; $(CC) $(PY_CFLAGS) -c $(src"..., 4096) = 1402 | |
read(3, "", 4096) = 0 | |
close(3) = 0 | |
munmap(0xb75a0000, 4096) = 0 | |
open("/usr/include/python2.6/pyconfig.h", O_RDONLY|O_LARGEFILE) = 3 | |
fstat64(3, {st_mode=S_IFREG|0644, st_size=31056, ...}) = 0 | |
fstat64(3, {st_mode=S_IFREG|0644, st_size=31056, ...}) = 0 | |
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb75a0000 | |
read(3, "/* pyconfig.h. Generated from p"..., 4096) = 4096 | |
read(3, "\n/* Define to 1 if you have the "..., 4096) = 4096 | |
read(3, "_GETSPENT 1\n\n/* Define to 1 if y"..., 4096) = 4096 | |
read(3, "ou have the `pause' function. */"..., 4096) = 4096 | |
read(3, "e to 1 if you have the <stdint.h"..., 4096) = 4096 | |
brk(0x852e000) = 0x852e000 | |
read(3, "_TCSETPGRP 1\n\n/* Define to 1 if "..., 4096) = 4096 | |
read(3, "oid'). */\n#define RETSIGTYPE voi"..., 4096) = 4096 | |
read(3, "ES 1\n\n/* Define on Darwin to act"..., 4096) = 2384 | |
read(3, "", 4096) = 0 | |
close(3) = 0 | |
munmap(0xb75a0000, 4096) = 0 | |
stat64("/usr/lib/python2.6", {st_mode=S_IFDIR|0755, st_size=16384, ...}) = 0 | |
open("/usr/lib/python2.6", O_RDONLY|O_NONBLOCK|O_LARGEFILE|O_DIRECTORY|O_CLOEXEC) = 3 | |
getdents64(3, /* 426 entries */, 32768) = 14392 | |
getdents64(3, /* 0 entries */, 32768) = 0 | |
close(3) = 0 | |
stat64("/usr/lib/python2.6/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
stat64("test0/lib/python2.6/lib-dynload", {st_mode=S_IFDIR|0755, st_size=1564, ...}) = 0 | |
stat64("/usr/lib/python2.6/config", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
stat64("test0/lib/python2.6/config", {st_mode=S_IFDIR|0755, st_size=102, ...}) = 0 | |
stat64("/usr/local/bin/os", 0xbff83458) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/os.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/osmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/os.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/os.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/os", 0xbff83458) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/os.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/osmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/os.py", O_RDONLY|O_LARGEFILE) = 3 | |
fstat64(3, {st_mode=S_IFREG|0644, st_size=26338, ...}) = 0 | |
close(3) = 0 | |
stat64("/usr/lib/python2.6/os.py", {st_mode=S_IFREG|0644, st_size=26338, ...}) = 0 | |
stat64("test0/lib/python2.6/os.py", {st_mode=S_IFREG|0644, st_size=26338, ...}) = 0 | |
stat64("/usr/local/bin/posixpath", 0xbff83458) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/posixpath.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/posixpathmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/posixpath.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/posixpath.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/posixpath", 0xbff83458) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/posixpath.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/posixpathmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/posixpath.py", O_RDONLY|O_LARGEFILE) = 3 | |
fstat64(3, {st_mode=S_IFREG|0644, st_size=13030, ...}) = 0 | |
close(3) = 0 | |
stat64("/usr/lib/python2.6/posixpath.py", {st_mode=S_IFREG|0644, st_size=13030, ...}) = 0 | |
stat64("test0/lib/python2.6/posixpath.py", {st_mode=S_IFREG|0644, st_size=13030, ...}) = 0 | |
stat64("/usr/local/bin/nt", 0xbff83458) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/nt.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/ntmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/nt.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/nt.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/nt", 0xbff83458) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/nt.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/ntmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/nt.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/nt.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/plat-linux2/nt", 0xbff83458) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/plat-linux2/nt.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/plat-linux2/ntmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/plat-linux2/nt.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/plat-linux2/nt.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/lib-tk/nt", 0xbff83458) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/lib-tk/nt.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/lib-tk/ntmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/lib-tk/nt.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/lib-tk/nt.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/lib-old/nt", 0xbff83458) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/lib-old/nt.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/lib-old/ntmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/lib-old/nt.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/lib-old/nt.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/lib-dynload/nt", 0xbff83458) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/lib-dynload/nt.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/lib-dynload/ntmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/lib-dynload/nt.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/lib-dynload/nt.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/dist-packages/nt", 0xbff83458) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/dist-packages/nt.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/dist-packages/ntmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/dist-packages/nt.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/dist-packages/nt.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/pymodules/python2.6/nt", 0xbff83458) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/pymodules/python2.6/nt.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/pymodules/python2.6/ntmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/pymodules/python2.6/nt.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/pymodules/python2.6/nt.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/local/lib/python2.6/dist-packages/nt", 0xbff83458) = -1 ENOENT (No such file or directory) | |
open("/usr/local/lib/python2.6/dist-packages/nt.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/lib/python2.6/dist-packages/ntmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/lib/python2.6/dist-packages/nt.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/lib/python2.6/dist-packages/nt.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/local/bin/ntpath", 0xbff83458) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/ntpath.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/ntpathmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/ntpath.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/ntpath.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/ntpath", 0xbff83458) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/ntpath.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/ntpathmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/ntpath.py", O_RDONLY|O_LARGEFILE) = 3 | |
fstat64(3, {st_mode=S_IFREG|0644, st_size=17500, ...}) = 0 | |
close(3) = 0 | |
stat64("/usr/lib/python2.6/ntpath.py", {st_mode=S_IFREG|0644, st_size=17500, ...}) = 0 | |
stat64("test0/lib/python2.6/ntpath.py", {st_mode=S_IFREG|0644, st_size=17500, ...}) = 0 | |
stat64("/usr/local/bin/genericpath", 0xbff83458) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/genericpath.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/genericpathmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/genericpath.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/genericpath.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/genericpath", 0xbff83458) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/genericpath.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/genericpathmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/genericpath.py", O_RDONLY|O_LARGEFILE) = 3 | |
fstat64(3, {st_mode=S_IFREG|0644, st_size=3020, ...}) = 0 | |
close(3) = 0 | |
stat64("/usr/lib/python2.6/genericpath.py", {st_mode=S_IFREG|0644, st_size=3020, ...}) = 0 | |
stat64("test0/lib/python2.6/genericpath.py", {st_mode=S_IFREG|0644, st_size=3020, ...}) = 0 | |
stat64("/usr/local/bin/fnmatch", 0xbff83458) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/fnmatch.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/fnmatchmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/fnmatch.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/fnmatch.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/fnmatch", 0xbff83458) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/fnmatch.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/fnmatchmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/fnmatch.py", O_RDONLY|O_LARGEFILE) = 3 | |
fstat64(3, {st_mode=S_IFREG|0644, st_size=3025, ...}) = 0 | |
close(3) = 0 | |
stat64("/usr/lib/python2.6/fnmatch.py", {st_mode=S_IFREG|0644, st_size=3025, ...}) = 0 | |
stat64("test0/lib/python2.6/fnmatch.py", {st_mode=S_IFREG|0644, st_size=3025, ...}) = 0 | |
stat64("/usr/local/bin/locale", 0xbff83458) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/locale.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/localemodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/locale.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/locale.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/locale", 0xbff83458) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/locale.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/localemodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/locale.py", O_RDONLY|O_LARGEFILE) = 3 | |
fstat64(3, {st_mode=S_IFREG|0644, st_size=82678, ...}) = 0 | |
close(3) = 0 | |
stat64("/usr/lib/python2.6/locale.py", {st_mode=S_IFREG|0644, st_size=82678, ...}) = 0 | |
stat64("test0/lib/python2.6/locale.py", {st_mode=S_IFREG|0644, st_size=82678, ...}) = 0 | |
stat64("/usr/local/bin/encodings", 0xbff83458) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/encodings.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/encodingsmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/encodings.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/encodings.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/encodings", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0 | |
stat64("/usr/lib/python2.6/encodings/__init__.py", {st_mode=S_IFREG|0644, st_size=5638, ...}) = 0 | |
stat64("/usr/lib/python2.6/encodings", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0 | |
stat64("test0/lib/python2.6/encodings", {st_mode=S_IFDIR|0755, st_size=8092, ...}) = 0 | |
stat64("/usr/local/bin/codecs", 0xbff83458) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/codecs.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/codecsmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/codecs.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/codecs.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/codecs", 0xbff83458) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/codecs.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/codecsmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/codecs.py", O_RDONLY|O_LARGEFILE) = 3 | |
fstat64(3, {st_mode=S_IFREG|0644, st_size=34941, ...}) = 0 | |
close(3) = 0 | |
stat64("/usr/lib/python2.6/codecs.py", {st_mode=S_IFREG|0644, st_size=34941, ...}) = 0 | |
stat64("test0/lib/python2.6/codecs.py", {st_mode=S_IFREG|0644, st_size=34941, ...}) = 0 | |
stat64("/usr/local/bin/stat", 0xbff83458) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/stat.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/statmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/stat.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/stat.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/stat", 0xbff83458) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/stat.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/statmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/stat.py", O_RDONLY|O_LARGEFILE) = 3 | |
fstat64(3, {st_mode=S_IFREG|0644, st_size=1718, ...}) = 0 | |
close(3) = 0 | |
stat64("/usr/lib/python2.6/stat.py", {st_mode=S_IFREG|0644, st_size=1718, ...}) = 0 | |
stat64("test0/lib/python2.6/stat.py", {st_mode=S_IFREG|0644, st_size=1718, ...}) = 0 | |
stat64("/usr/local/bin/UserDict", 0xbff83458) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/UserDict.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/UserDictmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/UserDict.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/UserDict.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/UserDict", 0xbff83458) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/UserDict.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/UserDictmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/UserDict.py", O_RDONLY|O_LARGEFILE) = 3 | |
fstat64(3, {st_mode=S_IFREG|0644, st_size=5778, ...}) = 0 | |
close(3) = 0 | |
stat64("/usr/lib/python2.6/UserDict.py", {st_mode=S_IFREG|0644, st_size=5778, ...}) = 0 | |
stat64("test0/lib/python2.6/UserDict.py", {st_mode=S_IFREG|0644, st_size=5778, ...}) = 0 | |
stat64("/usr/local/bin/readline", 0xbff83458) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/readline.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/readlinemodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/readline.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/readline.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/readline", 0xbff83458) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/readline.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/readlinemodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/readline.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/readline.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/plat-linux2/readline", 0xbff83458) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/plat-linux2/readline.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/plat-linux2/readlinemodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/plat-linux2/readline.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/plat-linux2/readline.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/lib-tk/readline", 0xbff83458) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/lib-tk/readline.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/lib-tk/readlinemodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/lib-tk/readline.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/lib-tk/readline.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/lib-old/readline", 0xbff83458) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/lib-old/readline.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/lib-old/readlinemodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/lib-old/readline.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/lib-old/readline.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/lib-dynload/readline", 0xbff83458) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/lib-dynload/readline.so", O_RDONLY|O_LARGEFILE) = 3 | |
fstat64(3, {st_mode=S_IFREG|0644, st_size=21584, ...}) = 0 | |
close(3) = 0 | |
stat64("/usr/lib/python2.6/lib-dynload/readline.so", {st_mode=S_IFREG|0644, st_size=21584, ...}) = 0 | |
stat64("test0/lib/python2.6/lib-dynload/readline.so", {st_mode=S_IFREG|0644, st_size=21584, ...}) = 0 | |
stat64("/usr/local/bin/copy_reg", 0xbff83458) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/copy_reg.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/copy_regmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/copy_reg.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/copy_reg.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/copy_reg", 0xbff83458) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/copy_reg.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/copy_regmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/copy_reg.py", O_RDONLY|O_LARGEFILE) = 3 | |
fstat64(3, {st_mode=S_IFREG|0644, st_size=6800, ...}) = 0 | |
close(3) = 0 | |
stat64("/usr/lib/python2.6/copy_reg.py", {st_mode=S_IFREG|0644, st_size=6800, ...}) = 0 | |
stat64("test0/lib/python2.6/copy_reg.py", {st_mode=S_IFREG|0644, st_size=6800, ...}) = 0 | |
stat64("/usr/local/bin/types", 0xbff83458) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/types.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/typesmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/types.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/types.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/types", 0xbff83458) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/types.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/typesmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/types.py", O_RDONLY|O_LARGEFILE) = 3 | |
fstat64(3, {st_mode=S_IFREG|0644, st_size=2323, ...}) = 0 | |
close(3) = 0 | |
stat64("/usr/lib/python2.6/types.py", {st_mode=S_IFREG|0644, st_size=2323, ...}) = 0 | |
stat64("test0/lib/python2.6/types.py", {st_mode=S_IFREG|0644, st_size=2323, ...}) = 0 | |
stat64("/usr/local/bin/re", 0xbff83458) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/re.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/remodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/re.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/re.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/re", 0xbff83458) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/re.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/remodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/re.py", O_RDONLY|O_LARGEFILE) = 3 | |
fstat64(3, {st_mode=S_IFREG|0644, st_size=12966, ...}) = 0 | |
close(3) = 0 | |
stat64("/usr/lib/python2.6/re.py", {st_mode=S_IFREG|0644, st_size=12966, ...}) = 0 | |
stat64("test0/lib/python2.6/re.py", {st_mode=S_IFREG|0644, st_size=12966, ...}) = 0 | |
stat64("/usr/local/bin/sre", 0xbff83458) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/sre.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/sremodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/sre.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/sre.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/sre", 0xbff83458) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/sre.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/sremodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/sre.py", O_RDONLY|O_LARGEFILE) = 3 | |
fstat64(3, {st_mode=S_IFREG|0644, st_size=384, ...}) = 0 | |
close(3) = 0 | |
stat64("/usr/lib/python2.6/sre.py", {st_mode=S_IFREG|0644, st_size=384, ...}) = 0 | |
stat64("test0/lib/python2.6/sre.py", {st_mode=S_IFREG|0644, st_size=384, ...}) = 0 | |
stat64("/usr/local/bin/sre_parse", 0xbff83458) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/sre_parse.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/sre_parsemodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/sre_parse.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/sre_parse.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/sre_parse", 0xbff83458) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/sre_parse.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/sre_parsemodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/sre_parse.py", O_RDONLY|O_LARGEFILE) = 3 | |
fstat64(3, {st_mode=S_IFREG|0644, st_size=26878, ...}) = 0 | |
close(3) = 0 | |
stat64("/usr/lib/python2.6/sre_parse.py", {st_mode=S_IFREG|0644, st_size=26878, ...}) = 0 | |
stat64("test0/lib/python2.6/sre_parse.py", {st_mode=S_IFREG|0644, st_size=26878, ...}) = 0 | |
stat64("/usr/local/bin/sre_constants", 0xbff83458) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/sre_constants.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/sre_constantsmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/sre_constants.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/sre_constants.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/sre_constants", 0xbff83458) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/sre_constants.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/sre_constantsmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/sre_constants.py", O_RDONLY|O_LARGEFILE) = 3 | |
fstat64(3, {st_mode=S_IFREG|0644, st_size=7137, ...}) = 0 | |
close(3) = 0 | |
stat64("/usr/lib/python2.6/sre_constants.py", {st_mode=S_IFREG|0644, st_size=7137, ...}) = 0 | |
stat64("test0/lib/python2.6/sre_constants.py", {st_mode=S_IFREG|0644, st_size=7137, ...}) = 0 | |
stat64("/usr/local/bin/sre_compile", 0xbff83458) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/sre_compile.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/sre_compilemodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/sre_compile.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/sre_compile.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/sre_compile", 0xbff83458) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/sre_compile.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/sre_compilemodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/sre_compile.py", O_RDONLY|O_LARGEFILE) = 3 | |
fstat64(3, {st_mode=S_IFREG|0644, st_size=16507, ...}) = 0 | |
close(3) = 0 | |
stat64("/usr/lib/python2.6/sre_compile.py", {st_mode=S_IFREG|0644, st_size=16507, ...}) = 0 | |
stat64("test0/lib/python2.6/sre_compile.py", {st_mode=S_IFREG|0644, st_size=16507, ...}) = 0 | |
stat64("/usr/local/bin/warnings", 0xbff83458) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/warnings.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/warningsmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/warnings.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/warnings.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/warnings", 0xbff83458) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/warnings.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/warningsmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/warnings.py", O_RDONLY|O_LARGEFILE) = 3 | |
fstat64(3, {st_mode=S_IFREG|0644, st_size=14173, ...}) = 0 | |
close(3) = 0 | |
stat64("/usr/lib/python2.6/warnings.py", {st_mode=S_IFREG|0644, st_size=14173, ...}) = 0 | |
stat64("test0/lib/python2.6/warnings.py", {st_mode=S_IFREG|0644, st_size=14173, ...}) = 0 | |
stat64("/usr/local/bin/linecache", 0xbff83458) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/linecache.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/linecachemodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/linecache.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/linecache.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/linecache", 0xbff83458) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/linecache.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/linecachemodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/linecache.py", O_RDONLY|O_LARGEFILE) = 3 | |
fstat64(3, {st_mode=S_IFREG|0644, st_size=4209, ...}) = 0 | |
close(3) = 0 | |
stat64("/usr/lib/python2.6/linecache.py", {st_mode=S_IFREG|0644, st_size=4209, ...}) = 0 | |
stat64("test0/lib/python2.6/linecache.py", {st_mode=S_IFREG|0644, st_size=4209, ...}) = 0 | |
stat64("/usr/local/bin/_abcoll", 0xbff83458) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/_abcoll.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/_abcollmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/_abcoll.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/_abcoll.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/_abcoll", 0xbff83458) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/_abcoll.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/_abcollmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/_abcoll.py", O_RDONLY|O_LARGEFILE) = 3 | |
fstat64(3, {st_mode=S_IFREG|0644, st_size=13645, ...}) = 0 | |
close(3) = 0 | |
stat64("/usr/lib/python2.6/_abcoll.py", {st_mode=S_IFREG|0644, st_size=13645, ...}) = 0 | |
stat64("test0/lib/python2.6/_abcoll.py", {st_mode=S_IFREG|0644, st_size=13645, ...}) = 0 | |
stat64("/usr/local/bin/abc", 0xbff83458) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/abc.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/abcmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/abc.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/local/bin/abc.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
stat64("/usr/lib/python2.6/abc", 0xbff83458) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/abc.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/abcmodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) | |
open("/usr/lib/python2.6/abc.py", O_RDONLY|O_LARGEFILE) = 3 | |
fstat64(3, {st_mode=S_IFREG|0644, st_size=6862, ...}) = 0 | |
close(3) = 0 | |
stat64("/usr/lib/python2.6/abc.py", {st_mode=S_IFREG|0644, st_size=6862, ...}) = 0 | |
stat64("test0/lib/python2.6/abc.py", {st_mode=S_IFREG|0644, st_size=6862, ...}) = 0 | |
stat64("test0/lib/python2.6/site-packages", {st_mode=S_IFDIR|0755, st_size=68, ...}) = 0 | |
stat64("test0/lib/python2.6/site.py", {st_mode=S_IFREG|0644, st_size=26835, ...}) = 0 | |
open("test0/lib/python2.6/site.py", O_RDONLY|O_LARGEFILE) = 3 | |
fstat64(3, {st_mode=S_IFREG|0644, st_size=26835, ...}) = 0 | |
fstat64(3, {st_mode=S_IFREG|0644, st_size=26835, ...}) = 0 | |
_llseek(3, 0, [0], SEEK_CUR) = 0 | |
fstat64(3, {st_mode=S_IFREG|0644, st_size=26835, ...}) = 0 | |
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb75a0000 | |
_llseek(3, 0, [0], SEEK_CUR) = 0 | |
read(3, "\"\"\"Append module search paths fo"..., 24576) = 24576 | |
read(3, "ages(paths_in_sys)\n paths_in_"..., 4096) = 2259 | |
read(3, "", 4096) = 0 | |
close(3) = 0 | |
munmap(0xb75a0000, 4096) = 0 | |
brk(0x854f000) = 0x854f000 | |
brk(0x853b000) = 0x853b000 | |
brk(0x8535000) = 0x8535000 | |
brk(0x852e000) = 0x852e000 | |
stat64("test0/lib/python2.6/orig-prefix.txt", {st_mode=S_IFREG|0644, st_size=4, ...}) = 0 | |
open("test0/lib/python2.6/orig-prefix.txt", O_RDONLY|O_LARGEFILE) = 3 | |
fstat64(3, {st_mode=S_IFREG|0644, st_size=4, ...}) = 0 | |
fstat64(3, {st_mode=S_IFREG|0644, st_size=4, ...}) = 0 | |
_llseek(3, 0, [0], SEEK_CUR) = 0 | |
fstat64(3, {st_mode=S_IFREG|0644, st_size=4, ...}) = 0 | |
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb75a0000 | |
_llseek(3, 0, [0], SEEK_CUR) = 0 | |
read(3, "/usr", 4096) = 4 | |
read(3, "", 4096) = 0 | |
close(3) = 0 | |
munmap(0xb75a0000, 4096) = 0 | |
stat64("test0/lib/python2.6/no-global-site-packages.txt", {st_mode=S_IFREG|0644, st_size=0, ...}) = 0 | |
open("test0/lib/python2.6/no-global-site-packages.txt", O_RDONLY|O_LARGEFILE) = 3 | |
fstat64(3, {st_mode=S_IFREG|0644, st_size=0, ...}) = 0 | |
fstat64(3, {st_mode=S_IFREG|0644, st_size=0, ...}) = 0 | |
_llseek(3, 0, [0], SEEK_CUR) = 0 | |
fstat64(3, {st_mode=S_IFREG|0644, st_size=0, ...}) = 0 | |
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb75a0000 | |
_llseek(3, 0, [0], SEEK_CUR) = 0 | |
read(3, "", 8192) = 0 | |
close(3) = 0 | |
munmap(0xb75a0000, 4096) = 0 | |
stat64("/usr/include/python2.6", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
stat64("/usr/include/python2.6", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
stat64("test0/include/python2.6", {st_mode=S_IFDIR|0755, st_size=102, ...}) = 0 | |
stat64("test0/bin", {st_mode=S_IFDIR|0755, st_size=102, ...}) = 0 | |
fstat64(1, {st_mode=S_IFCHR|0620, st_rdev=makedev(136, 0), ...}) = 0 | |
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb75a0000 | |
write(1, "New python executable in test0/b"..., 42New python executable in test0/bin/python | |
) = 42 | |
stat64("test0/lib/python2.6/site-packages/virtualenv_builddir_pyd.pth", 0xbff8651c) = -1 ENOENT (No such file or directory) | |
stat64("/usr/bin/python", {st_mode=S_IFREG|0755, st_size=2288240, ...}) = 0 | |
stat64("test0/bin/python", {st_mode=S_IFREG|0755, st_size=2288240, ...}) = 0 | |
open("/usr/bin/python", O_RDONLY|O_LARGEFILE) = 3 | |
fstat64(3, {st_mode=S_IFREG|0755, st_size=2288240, ...}) = 0 | |
open("test0/bin/python", O_WRONLY|O_CREAT|O_TRUNC|O_LARGEFILE, 0666) = 4 | |
fstat64(4, {st_mode=S_IFREG|0755, st_size=0, ...}) = 0 | |
fstat64(3, {st_mode=S_IFREG|0755, st_size=2288240, ...}) = 0 | |
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7724000 | |
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\2\0\3\0\1\0\0\0`\317\5\0104\0\0\0"..., 16384) = 16384 | |
fstat64(4, {st_mode=S_IFREG|0755, st_size=0, ...}) = 0 | |
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7723000 | |
write(4, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\2\0\3\0\1\0\0\0`\317\5\0104\0\0\0"..., 16384) = 16384 | |
read(3, "\341&\354\tm\323\304lQ,\0~\242oPI&o\31\374\355,V~;\300\276\350'\320n\6"..., 16384) = 16384 | |
write(4, "\341&\354\tm\323\304lQ,\0~\242oPI&o\31\374\355,V~;\300\276\350'\320n\6"..., 4096) = 4096 | |
write(4, "\330\35~E1\300\350\23\263\304\263\204=\230@c\366h)\305\310&\267\3131\215\310\23\325\210\345\353"..., 12288) = 12288 | |
read(3, "\21\0\20\0\215E\0\0\340\205\f\10\202\0\0\0\22\0\16\0\273\\\0\0t\235\"\10\4\0\0\0"..., 16384) = 16384 | |
write(4, "\21\0\20\0\215E\0\0\340\205\f\10\202\0\0\0\22\0\16\0\273\\\0\0t\235\"\10\4\0\0\0"..., 4096) = 4096 | |
write(4, "\21\0\20\0\34Q\0\0h\235\"\10\4\0\0\0\21\0\30\0yb\0\0p\276\17\10\262\0\0\0"..., 12288) = 12288 | |
read(3, "etsockopt\0setgroups\0ttyname\0dup2"..., 16384) = 16384 | |
write(4, "etsockopt\0setgroups\0ttyname\0dup2"..., 4096) = 4096 | |
write(4, "dlineTState\0PySys_SetArgv\0PyMem_"..., 12288) = 12288 | |
read(3, "Mapping_HasKeyString\0PyMemberDes"..., 16384) = 16384 | |
write(4, "Mapping_HasKeyString\0PyMemberDes"..., 4096) = 4096 | |
write(4, "_FromReadWriteObject\0Py_Py3kWarn"..., 12288) = 12288 | |
read(3, "\"\10h\310\4\0\0\351P\366\377\377\377%h\222\"\10h\320\4\0\0\351@\366\377\377\377%l\222"..., 16384) = 16384 | |
write(4, "\"\10h\310\4\0\0\351P\366\377\377\377%h\222\"\10h\320\4\0\0\351@\366\377\377\377%l\222"..., 4096) = 4096 | |
write(4, "\0\0\0\0\205\300t\t\307\4$\344\216\"\10\377\320\311\303\220\220\220\220\220\220\220\220\220\220\220\220\220"..., 12288) = 12288 | |
read(3, "\24\n\0\0\0\213C\10\203\203\304\1\0\0\1\353o\215\264&\0\0\0\0\211\360u\5\270\1\0\0"..., 16384) = 16384 | |
write(4, "\24\n\0\0\0\213C\10\203\203\304\1\0\0\1\353o\215\264&\0\0\0\0\211\360u\5\270\1\0\0"..., 4096) = 4096 | |
write(4, "*\30\10\211D$\10\241\0\236\"\10\211\4$\350lN\7\0\205\300\17\204D\375\377\377\351\255\371\377"..., 12288) = 12288 | |
read(3, "\213G\4\213HT\205\311xV1\300\213\27\203\352\1\205\322\211\27u\26\213W\4\211E\344\211<$"..., 16384) = 16384 | |
write(4, "\213G\4\213HT\205\311xV1\300\213\27\203\352\1\205\322\211\27u\26\213W\4\211E\344\211<$"..., 4096) = 4096 | |
write(4, "7\30\10\307D$\4\3640\30\10\211D$\f\241l\235\"\10\211\4$\350T\217\10\0001\300\353\235"..., 12288) = 12288 | |
read(3, "\211u\20\213u\370\211}\f\213}\374\211]\10\213]\364\211\354]\377\340\220\213E\344\213X\24\205\333"..., 16384) = 16384 | |
write(4, "\211u\20\213u\370\211}\f\213}\374\211]\10\213]\364\211\354]\377\340\220\213E\344\213X\24\205\333"..., 4096) = 4096 | |
write(4, "\377P\30\213\3\203\350\1\205\300\211\3\17\205X\377\377\377\353\324\215t&\0\213\3\203\350\1\205\300\211"..., 12288) = 12288 | |
read(3, "\353\210\215\264&\0\0\0\0\215\274'\0\0\0\0U\211\345VS\203\354 \241\304u'\10\213u\10"..., 16384) = 16384 | |
write(4, "\353\210\215\264&\0\0\0\0\215\274'\0\0\0\0U\211\345VS\203\354 \241\304u'\10\213u\10"..., 4096) = 4096 | |
write(4, "\307\4$\240\20#\10\241\244\20#\10\377P\30\353\312\353\r\220\220\220\220\220\220\220\220\220\220\220\220\220"..., 12288) = 12288 | |
read(3, "O\307@\10\0\0\0\0\307@\20\0\0\0\0\307\4$\0\0\0\0\350\305\212\3\0\205\300\211C\f"..., 16384) = 16384 | |
write(4, "O\307@\10\0\0\0\0\307@\20\0\0\0\0\307\4$\0\0\0\0\350\305\212\3\0\205\300\211C\f"..., 4096) = 4096 | |
write(4, "\203\5\230\20#\10\1\307F\20\230\20#\10\351\n\377\377\377\220\215t&\0\203\5\230\20#\10\1\307"..., 12288) = 12288 | |
read(3, "\307\4$tN\30\10\350D\241\10\0\307\4$\200\251\"\10\350\230)\4\0\205\300\17\211!\350\377\377"..., 16384) = 16384 | |
write(4, "\307\4$tN\30\10\350D\241\10\0\307\4$\200\251\"\10\350\230)\4\0\205\300\17\211!\350\377\377"..., 4096) = 4096 | |
write(4, "\t\1\0\0\203\370\377\17\204\337\0\0\0\213M\304\205\311\17\217\365\0\0\0\213U\314\301\352\2\3U"..., 12288) = 12288 | |
read(3, "a\377\377\377\213V\4\211E\344\2114$\377R\30\213E\344\351M\377\377\377\220\215\264&\0\0\0\0"..., 16384) = 16384 | |
write(4, "a\377\377\377\213V\4\211E\344\2114$\377R\30\213E\344\351M\377\377\377\220\215\264&\0\0\0\0"..., 4096) = 4096 | |
write(4, "\216\22\377\377\377\211\331\351\354\376\377\377\215t&\0\17\276\322\213\f\225\340g\30\10\205\311\17\210\216\5"..., 12288) = 12288 | |
read(3, "\17\204H\1\0\0\211\320\213R\4\211\25@v'\10\335X\10\307@\4\0\336\"\10\307\0\1\0\0"..., 16384) = 16384 | |
write(4, "\17\204H\1\0\0\211\320\213R\4\211\25@v'\10\335X\10\307@\4\0\336\"\10\307\0\1\0\0"..., 4096) = 4096 | |
write(4, "\3779\303s\10\211\235\334\375\377\377\211\330\213\225\340\375\377\3779\302\17\204\335\2\0\0\17\266\10\204\311"..., 12288) = 12288 | |
read(3, "\7\0\205\300t\312\213u\344\205\366\17\204\347\0\0\0\213E\340=s\374\377\377t]\213V\4\213R"..., 16384) = 16384 | |
write(4, "\7\0\205\300t\312\213u\344\205\366\17\204\347\0\0\0\213E\340=s\374\377\377t]\213V\4\213R"..., 4096) = 4096 | |
write(4, "\4$\350\231\266\10\0\241\204{'\10\205\300u\340\311\303\215\264&\0\0\0\0\215\274'\0\0\0\0"..., 12288) = 12288 | |
read(3, "\377\215\f\221\211\215\34\371\377\377\351\17\376\377\377\220\213\215\30\371\377\377\273\230\20#\10\203y\20\377t"..., 16384) = 16384 | |
write(4, "\377\215\f\221\211\215\34\371\377\377\351\17\376\377\377\220\213\215\30\371\377\377\273\230\20#\10\203y\20\377t"..., 4096) = 4096 | |
write(4, "y\375\377\220\215t&\0\205\377~\"\213U\2741\366\213M\224\3U\254\220\213\4\261\205\300t\3\203"..., 12288) = 12288 | |
read(3, "]\314\213]\300\211}\2709]\334\17\206\316\0\0\0\213E\320\213U\320\203\300\f\203\302\16\211E\330"..., 16384) = 16384 | |
write(4, "]\314\213]\300\211}\2709]\334\17\206\316\0\0\0\213E\320\213U\320\203\300\f\203\302\16\211E\330"..., 4096) = 4096 | |
write(4, "$\10\307D$\4\200\376\"\10\211\4$\350\336\300\0\0\205\300t-\213V\10\211P\10\211\332\203\352"..., 12288) = 12288 | |
read(3, "\213U\344\213J\4\211\24$\211E\310\377Q\30\213E\310\351+\376\377\377\220\213C\10\213K\10\301\370"..., 16384) = 16384 | |
write(4, "\213U\344\213J\4\211\24$\211E\310\377Q\30\213E\310\351+\376\377\377\220\213C\10\213K\10\301\370"..., 4096) = 4096 | |
write(4, "\240\20#\10\1\270\240\20#\10\311\303\215t&\0\215E\3541\311\211\4$\213U\360\213E\364\350\215"..., 12288) = 12288 | |
read(3, "\211r\24\307B\20\7\0\0\0\351H\377\377\377\307\4$\227r\30\10\350\25\374\0\0\205\300\243`\177"..., 16384) = 16384 | |
write(4, "\211r\24\307B\20\7\0\0\0\351H\377\377\377\307\4$\227r\30\10\350\25\374\0\0\205\300\243`\177"..., 4096) = 4096 | |
write(4, "\354]\303\220\215t&\0\213F\f\203\370\377u\20\2114$\211U\344\350\365A\0\0\213U\344f\220"..., 12288) = 12288 | |
read(3, "@U\1\17\205\217\0\0\0\307E\344\0\0\0\0\213\207\220\0\0\0\203\370\0\211E\304\17\204F\1"..., 16384) = 16384 | |
write(4, "@U\1\17\205\217\0\0\0\307E\344\0\0\0\0\213\207\220\0\0\0\203\370\0\211E\304\17\204F\1"..., 4096) = 4096 | |
write(4, "\211\303\350\305h\374\377\211\34$\350Qn\4\0\351\24\377\377\377\215\266\0\0\0\0\215\277\0\0\0\0"..., 12288) = 12288 | |
read(3, "`\5\0\270\377\377\377\377\353\310\215\266\0\0\0\0U\211\345WV\211\326S\211\303\201\354\254\0\0\0"..., 16384) = 16384 | |
write(4, "`\5\0\270\377\377\377\377\353\310\215\266\0\0\0\0U\211\345WV\211\326S\211\303\201\354\254\0\0\0"..., 4096) = 4096 | |
write(4, "]\303\215\266\0\0\0\0\203\5\230\20#\10\1\270\230\20#\10\203\304\f[^_]\303\215t&\0"..., 12288) = 12288 | |
read(3, "\0\0\307B\4\0\0\0\0\307\1\0\0\0\0\307A\4\0\0\0\0\213M\10\307\1\0\0\0\0\307"..., 16384) = 16384 | |
write(4, "\0\0\307B\4\0\0\0\0\307\1\0\0\0\0\307A\4\0\0\0\0\213M\10\307\1\0\0\0\0\307"..., 4096) = 4096 | |
write(4, "\321!\310\351\270\376\377\377\215U\324\211T$\4\211\4$\350)\347\3\0\205\300\17\205S\376\377\377\351"..., 12288) = 12288 | |
read(3, "d\215\264&\0\0\0\0\213S\4\366BW\2tO\213s\f\213\6\213H\4\201\371\200*#\10t"..., 16384) = 16384 | |
write(4, "d\215\264&\0\0\0\0\213S\4\366BW\2tO\213s\f\213\6\213H\4\201\371\200*#\10t"..., 4096) = 4096 | |
write(4, "\350+\354\377\377\211\303\353\205\215\264&\0\0\0\0U\211\345WVS\203\354<\213u\10\213E\f\213"..., 12288) = 12288 | |
read(3, "$9\203\30\10\350V\240\4\0\351\376\376\377\377\220\203\5\230\20#\10\1\277\230\20#\10\351h\376\377"..., 16384) = 16384 | |
write(4, "$9\203\30\10\350V\240\4\0\351\376\376\377\377\220\203\5\230\20#\10\1\277\230\20#\10\351h\376\377"..., 4096) = 4096 | |
write(4, "\0\211\310\203\3500\203\357\1\211\205\0\377\377\377\17\210\263\0\0\0\17\266\23\203\303\1\213\215\4\377\377"..., 12288) = 12288 | |
read(3, "\303\301\373\37\367\323!\303\211\34$\350\320\n\0\0\205\300\211\306t\34\205\333t\0301\300\215t&\0"..., 16384) = 16384 | |
write(4, "\303\301\373\37\367\323!\303\211\34$\350\320\n\0\0\205\300\211\306t\34\205\333t\0301\300\215t&\0"..., 4096) = 4096 | |
write(4, "\374\376\377\377\215\266\0\0\0\0\215\277\0\0\0\0U\211\345WVS\203\354,\213E\10\213\30\205\333"..., 12288) = 12288 | |
read(3, "\0\213[\10\211]\244\213C\10\307E\300\0\0\0\0\211E\220\213E\3009E\220\17\216!\2\0\0"..., 16384) = 16384 | |
write(4, "\0\213[\10\211]\244\213C\10\307E\300\0\0\0\0\211E\220\213E\3009E\220\17\216!\2\0\0"..., 4096) = 4096 | |
write(4, "\213U\360%\377\377\363\377\211BT\203\304\20[^_]\303\220\215t&\0009M\360t+\213]\360"..., 12288) = 12288 | |
read(3, "\376\377\205\300u*\203\306\0019u\344~\"\213D\263\f\201x\4`\227\"\10u\325\213@\f\211|"..., 16384) = 16384 | |
write(4, "\376\377\205\300u*\203\306\0019u\344~\"\213D\263\f\201x\4`\227\"\10u\325\213@\f\211|"..., 4096) = 4096 | |
write(4, "\0\213\0\205\300\17\204\371\1\0\0\203\0\1\203\304,[^_]\303f\220\213\25\364\210'\10\205\322"..., 12288) = 12288 | |
read(3, "\4l;\30\10\2114$\350\303\351\377\377=\240\20#\10\17\205{\377\377\377\213S\4;V\4\17\204"..., 16384) = 16384 | |
write(4, "\4l;\30\10\2114$\350\303\351\377\377=\240\20#\10\17\205{\377\377\377\213S\4;V\4\17\204"..., 4096) = 4096 | |
write(4, "\205\312\376\377\377\213}\334\213\277\220\0\0\0\211}\324;\270\220\0\0\0t[\213E\334\213@h\211"..., 12288) = 12288 | |
read(3, "U\304\213R0;J\34\17\204\272\357\377\377\213M\340\211H\34\213C0\351\254\357\377\377\213N0\213"..., 16384) = 16384 | |
write(4, "U\304\213R0;J\34\17\204\272\357\377\377\213M\340\211H\34\213C0\351\254\357\377\377\213N0\213"..., 4096) = 4096 | |
write(4, "\213\n\203\302\0049\331t\20\203\300\0019\306\177\360\203E\334\4\213]\340\353\273\211]\340\211\332\307D"..., 12288) = 12288 | |
read(3, "#\10t,\213F\4=\300l#\10t:=\240m#\10t3\211u\f\211]\10\213\34$\213t"..., 16384) = 16384 | |
write(4, "#\10t,\213F\4=\300l#\10t:=\240m#\10t3\211u\f\211]\10\213\34$\213t"..., 4096) = 4096 | |
write(4, "\353\217\215\266\0\0\0\0\211M\3441\3001\333\220\351\26\377\377\377\213E\344\205\300uu\205\311\307B"..., 12288) = 12288 | |
read(3, "\1\0\0\17\217\237\0\0\0\215\2054\373\377\377\205\333\307\2050\373\377\377\0\0\0\0\211\301\17\216x"..., 16384) = 16384 | |
write(4, "\1\0\0\17\217\237\0\0\0\215\2054\373\377\377\205\333\307\2050\373\377\377\0\0\0\0\211\301\17\216x"..., 4096) = 4096 | |
write(4, "\1\0\0u\353\307\4$\200o#\10\350\237Y\377\377\205\300xy\213M\330\272\1\0\0\0\211\320\211"..., 12288) = 12288 | |
read(3, "1\300[^_]\303\220\213}\24\205\377t\t\213U\24\307\2\0\0\0\0\203\304|[^_]\303"..., 16384) = 16384 | |
write(4, "1\300[^_]\303\220\213}\24\205\377t\t\213U\24\307\2\0\0\0\0\203\304|[^_]\303"..., 4096) = 4096 | |
write(4, "E\340\213E\324+B\f\215U\334\301\370\2\211E\334\215E\324\211D$$\215E\310\211D$\24\215"..., 12288) = 12288 | |
read(3, "\377\377\377\17\204\5\3\0\0\213\215|\377\377\377\17\266\21\204\322\17\204\v\3\0\0\213\215h\377\377\377"..., 16384) = 16384 | |
write(4, "\377\377\377\17\204\5\3\0\0\213\215|\377\377\377\17\266\21\204\322\17\204\v\3\0\0\213\215h\377\377\377"..., 4096) = 4096 | |
write(4, "\213M\324\213A\4\211\f$\377P\30\215t&\0\351\262\372\377\377\213\3\203\350\1\205\300\211\3\17\205"..., 12288) = 12288 | |
read(3, "\0\0\0\17\207\377\0\0\0\213\4\205@\271'\10\205\300u\37\260\1\350%&\377\377\205\300\17\204%"..., 16384) = 16384 | |
write(4, "\0\0\0\17\207\377\0\0\0\213\4\205@\271'\10\205\300u\37\260\1\350%&\377\377\205\300\17\204%"..., 4096) = 4096 | |
write(4, "\225\240\375\377\377\351\365\366\377\377\215\266\0\0\0\0\241\300\235\"\10\307D$\4\35\204\30\10\211\4$"..., 12288) = 12288 | |
read(3, "h\302\370\377\213M\320\213U\324\211\316\351\233\376\377\377\203\303\0019\332\17\216U\376\377\377\213M\334\203"..., 16384) = 16384 | |
write(4, "h\302\370\377\213M\320\213U\324\211\316\351\233\376\377\377\203\303\0019\332\17\216U\376\377\377\213M\334\203"..., 4096) = 4096 | |
write(4, "\300\211\303\17\204w\376\377\377\205\377\17\204\375\374\377\377\213@\f\301\346\2\211t$\10\211|$\4\211"..., 12288) = 12288 | |
read(3, "r/=\2002\0\0\220\17\204\262\362\377\377=\2012\0\0\220\215t&\0\17\205\372\357\377\377f\220"..., 16384) = 16384 | |
write(4, "r/=\2002\0\0\220\17\204\262\362\377\377=\2012\0\0\220\215t&\0\17\205\372\357\377\377f\220"..., 4096) = 4096 | |
write(4, ">\7\0\0\213E\f\203\0\1\213U\340\203\2\1\241\370\235\"\10\211\24$\211D$\4\350\217\30\371"..., 12288) = 12288 | |
read(3, "\204[\2\0\0\213U\340\213\2\203\350\1\205\300\211\2\17\204n\2\0\0\213U\334\213\2\203\350\1\205"..., 16384) = 16384 | |
write(4, "\204[\2\0\0\213U\340\213\2\203\350\1\205\300\211\2\17\204n\2\0\0\213U\334\213\2\203\350\1\205"..., 4096) = 4096 | |
write(4, "\200\230\20#\10\307E\220\0\0\0\0\211\275|\377\377\377\17\224E\206\203\377\1\17\266U\206\17\224E"..., 12288) = 12288 | |
read(3, "\213B\4\366@W\4t?\203\2\1\307D$\10\0\0\0\0\211t$\4\211\34$\350\360c\370\377"..., 16384) = 16384 | |
write(4, "\213B\4\366@W\4t?\203\2\1\307D$\10\0\0\0\0\211t$\4\211\34$\350\360c\370\377"..., 4096) = 4096 | |
write(4, "\211D$\4\215E\344\211\4$\350\321\3\1\0\213E\340\205\300\17\2045-\0\0\213U\334\211D$"..., 12288) = 12288 | |
read(3, "\4\211\f$\211\225p\377\377\377\377P\30\213\225p\377\377\377\351.\333\377\377\213B\4\211\24$\377P"..., 16384) = 16384 | |
write(4, "\4\211\f$\211\225p\377\377\377\377P\30\213\225p\377\377\377\351.\333\377\377\213B\4\211\24$\377P"..., 4096) = 4096 | |
write(4, "\4$\350\211\320\0\0001\300\351\304\271\377\377\213C\4\211\34$\377P\30\351D\324\377\377\3C\10\220"..., 12288) = 12288 | |
read(3, "\203\310\1\210B\24\205\311\17\216\232\2\0\0\307E\310\0\0\0\0\353\24\220\213E\304\203E\310\1\213"..., 16384) = 16384 | |
write(4, "\203\310\1\210B\24\205\311\17\216\232\2\0\0\307E\310\0\0\0\0\353\24\220\213E\304\203E\310\1\213"..., 4096) = 4096 | |
write(4, "\307E\254\0\0\0\0\220\213E\3101\333\213<\10\213w\4\205\366~/\213W\f1\311\215t&\0"..., 12288) = 12288 | |
read(3, "\2\0\0\203}\344\5\17\204K\1\0\0\213M\344\211\330\350i\375\377\377\272\332U\31\10\205\300\17\204"..., 16384) = 16384 | |
write(4, "\2\0\0\203}\344\5\17\204K\1\0\0\213M\344\211\330\350i\375\377\377\272\332U\31\10\205\300\17\204"..., 4096) = 4096 | |
write(4, "\17\210\17\371\377\377\213S\30\301\340\4\213R(\213J\f\215\24\10\200\"\373\306B\1G\213S\30\213"..., 12288) = 12288 | |
read(3, "L$\10\211\\$\4\307\4$w\306\31\10\350m\372\0\0\213\23\203\352\1\205\322\211\23\17\205\244\376"..., 16384) = 16384 | |
write(4, "L$\10\211\\$\4\307\4$w\306\31\10\350m\372\0\0\213\23\203\352\1\205\322\211\23\17\205\244\376"..., 4096) = 4096 | |
write(4, "\20\213p\20\203\352\1\205\322\211\20\17\204\247\0\0\0\203\6\1\203}\20\1\31\300\203\300\2\211\4$"..., 12288) = 12288 | |
read(3, "\17\216\t\n\0\0\241\340\235\"\10\307D$\4\250`\31\10\211\4$\350u\340\377\377\213E\20\211\332"..., 16384) = 16384 | |
write(4, "\17\216\t\n\0\0\241\340\235\"\10\307D$\4\250`\31\10\211\4$\350u\340\377\377\213E\20\211\332"..., 4096) = 4096 | |
write(4, "\203}\270\0\17\204\233\0\0\0\213C\10\213M\260\211\1\351a\364\377\377\366E\10\2\17\204\221\0\0"..., 12288) = 12288 | |
read(3, "\350\2138\367\377\205\300\17\204k\3\0\0=\230\20#\10\17\205\200\3\0\0\213\20\203\352\1\205\322\211"..., 16384) = 16384 | |
write(4, "\350\2138\367\377\205\300\17\204k\3\0\0=\230\20#\10\17\205\200\3\0\0\213\20\203\352\1\205\322\211"..., 4096) = 4096 | |
write(4, "0\211S0\203\2\1\213\20\203\352\1\205\322\211\20\17\204\262\0\0\0\213C\34\213P\10\205\322\211U"..., 12288) = 12288 | |
read(3, "\211\362\17\276\302\211\332\3504\376\377\377\351\346\376\377\377\353\r\220\220\220\220\220\220\220\220\220\220\220\220\220"..., 16384) = 16384 | |
write(4, "\211\362\17\276\302\211\332\3504\376\377\377\351\346\376\377\377\353\r\220\220\220\220\220\220\220\220\220\220\220\220\220"..., 4096) = 4096 | |
write(4, "\0\0\0\3508\356\377\377\351\37\373\377\377\213C\20;C\24t(\306\0t\203\300\1\211C\20\351\204"..., 12288) = 12288 | |
read(3, "\333u\277\213]\370\213u\374\211\354]\303\220\220\220U\211\345\201\354\210\0\0\0\211]\364\213]\10\211"..., 16384) = 16384 | |
write(4, "\333u\277\213]\370\213u\374\211\354]\303\220\220\220U\211\345\201\354\210\0\0\0\211]\364\213]\10\211"..., 4096) = 4096 | |
write(4, "\4\211\361\215\24\3;\26w&\3A\f\211Q\4\205\300tl\213W\4\213R\10\205\322t\3\211W"..., 12288) = 12288 | |
read(3, "\300\6\367\301\0\0\1\0\17\204j\1\0\0\201\341\0\0\2\0\203\371\1\31\322\367\322\203\342\10\t\302"..., 16384) = 16384 | |
write(4, "\300\6\367\301\0\0\1\0\17\204j\1\0\0\201\341\0\0\2\0\203\371\1\31\322\367\322\203\342\10\t\302"..., 4096) = 4096 | |
write(4, "\0\203\370\1\31\322\367\322\203\342\2\203\370\1\31\300\203\340\376\203\300\6\367\301\0\0\1\0\17\204\346\0"..., 12288) = 12288 | |
read(3, "N\f1\377\205\311t2\211u\344\211\336\211\313;;}\"\220\215t&\0\213D\273\4\213P\4\211"..., 16384) = 16384 | |
write(4, "N\f1\377\205\311t2\211u\344\211\336\211\313;;}\"\220\215t&\0\213D\273\4\213P\4\211"..., 4096) = 4096 | |
write(4, "\352\1\205\322\211\26\17\204\f\1\0\0\213\27\203\352\1\205\322\211\27\17\204\345\0\0\0\205\300\17\204\340"..., 12288) = 12288 | |
read(3, "$\211D$\4\350\346\376\366\377\205\300\211\303\17\205\21\376\377\377\307D$\4\n\0\0\0\2114$\350"..., 16384) = 16384 | |
write(4, "$\211D$\4\350\346\376\366\377\205\300\211\303\17\205\21\376\377\377\307D$\4\n\0\0\0\2114$\350"..., 4096) = 4096 | |
write(4, "$\10\211\\$\4\211U\304\211M\300\350[2\365\377\213M\300\213E\320\1\310\211E\320\213E\324\211"..., 12288) = 12288 | |
read(3, "\3\0\0\0\211D$\10\350\177\371\364\377\205\300u\26\213\205\220\337\377\377%\0\360\0\0=\0\200\0"..., 16384) = 16384 | |
write(4, "\3\0\0\0\211D$\10\350\177\371\364\377\205\300u\26\213\205\220\337\377\377%\0\360\0\0=\0\200\0"..., 4096) = 4096 | |
write(4, "\215F\f\213P\4\215M\320\211L$\10\307D$\4 \305\20\10\211\4$\377R\\\2136;u\204"..., 12288) = 12288 | |
read(3, "U\211\345\213E\10]\213@\10\303\220\215t&\0U\211\345\213U\f\213M\10\205\322t\f\213A\24"..., 16384) = 16384 | |
write(4, "U\211\345\213E\10]\213@\10\303\220\215t&\0U\211\345\213U\f\213M\10\205\322t\f\213A\24"..., 4096) = 4096 | |
write(4, "}\324\0|su\7\307E\324\1\0\0\0\213E\324\211D$\4\213E\320\211\4$\350\354\250\364\377"..., 12288) = 12288 | |
read(3, "\211\25\254\300'\10\17\204\274\0\0\0\335E\330\335E\320\331\370\337\340\236z\371\335\331\335\340\337\340\236"..., 16384) = 16384 | |
write(4, "\211\25\254\300'\10\17\204\274\0\0\0\335E\330\335E\320\331\370\337\340\236z\371\335\331\335\340\337\340\236"..., 4096) = 4096 | |
write(4, "\225\250\376\377\3771\377\215\235\320\376\377\377\335\235\260\376\377\377\307\205\270\376\377\377 \0\0\0\211\235t"..., 12288) = 12288 | |
read(3, "\377\307D$\4\260\262\31\10\211\4$\350__\375\377\213\6\203\350\1\205\300\211\6t$\213\3\203\350"..., 16384) = 16384 | |
write(4, "\377\307D$\4\260\262\31\10\211\4$\350__\375\377\213\6\203\350\1\205\300\211\6t$\213\3\203\350"..., 4096) = 4096 | |
write(4, "E\240\203\304l[^_]\303\215\266\0\0\0\0\203\370\37\17\206\373\376\377\377\241\300\235\"\10\307D"..., 12288) = 12288 | |
read(3, "\306\31\10\211L\223\10\203\302\1\201\372\343\0\0\0u\306\213\273\224\3\0\0\211\376\213|\223\f\201\346"..., 16384) = 16384 | |
write(4, "\306\31\10\211L\223\10\203\302\1\201\372\343\0\0\0u\306\213\273\224\3\0\0\211\376\213|\223\f\201\346"..., 4096) = 4096 | |
write(4, "U\211\345\203\3548\213E\10\211]\364\213]\f\211u\370\211}\374\213@|\205\333\211E\344\17\204\355"..., 12288) = 12288 | |
read(3, "U\211\345S\203\354\24\213]\10\211\34$\350\16\306\376\377\213C\20\205\300t\v\213\20\203\352\1\205\322"..., 16384) = 16384 | |
write(4, "U\211\345S\203\354\24\213]\10\211\34$\350\16\306\376\377\213C\20\205\300t\v\213\20\203\352\1\205\322"..., 4096) = 4096 | |
write(4, "\0019\330u\353\353\232\211\366\215\274'\0\0\0\0U\270\1\0\0\0\211\345WVS\203\354L\213]"..., 12288) = 12288 | |
read(3, "\377R\30\213E\260\353\301\213E\3341\366\213U\330\213}\344\307\4$\0\0\0\0\211E\270\211U\304"..., 16384) = 16384 | |
write(4, "\377R\30\213E\260\353\301\213E\3341\366\213U\330\213}\344\307\4$\0\0\0\0\211E\270\211U\304"..., 4096) = 4096 | |
write(4, "e3\25\24\0\0\0\211\330\17\205\263\1\0\0\213]\364\213u\370\213}\374\211\354]\303\215t&\0"..., 12288) = 12288 | |
read(3, "\5w\225\17\276\300\215D\6\311\211E\344\205\311u\307\213]\344\215\203\0\262\377\377=\273Q\0\0\17"..., 16384) = 16384 | |
write(4, "\5w\225\17\276\300\215D\6\311\211E\344\205\311u\307\213]\344\215\203\0\262\377\377=\273Q\0\0\17"..., 4096) = 4096 | |
write(4, "\254\201\366\377\213\7\203\350\1\205\300\211\7\17\204\355\2\0\0\213F\34\350U\375\377\377\205\300\211\307\17"..., 12288) = 12288 | |
read(3, "\307@\24\0\0\0\0\350\364>\366\377\211\332\205\300\211C\10t\33\203\304\24\211\320[]\303\215v\0"..., 16384) = 16384 | |
write(4, "\307@\24\0\0\0\0\350\364>\366\377\211\332\205\300\211C\10t\33\203\304\24\211\320[]\303\215v\0"..., 4096) = 4096 | |
write(4, "$\350J\337\374\377\307D$\10\2\0\0\0\307D$\4\243\226!\10\211\34$\3502\337\374\377\307D"..., 12288) = 12288 | |
read(3, "\10\307D$\4\32\241!\10\213E\f\211\4$\350\34\33\374\377\211\3021\300\205\322u\f\203\304|["..., 16384) = 16384 | |
write(4, "\10\307D$\4\32\241!\10\213E\f\211\4$\350\34\33\374\377\211\3021\300\205\322u\f\203\304|["..., 4096) = 4096 | |
write(4, "\377\377\377\350\250\322\377\377\272\377\377\377\377\215v\0\3512\377\377\377\215t&\0\215\274'\0\0\0\0"..., 12288) = 12288 | |
read(3, "\0\0\0\211\4$\350\201\207\362\377\213C\20\211\4$\350\26\214\362\377\307D$\f\0\0\0\0\307D"..., 16384) = 16384 | |
write(4, "\0\0\0\211\4$\350\201\207\362\377\213C\20\211\4$\350\26\214\362\377\307D$\f\0\0\0\0\307D"..., 4096) = 4096 | |
write(4, "w\362\377\211\205\310\357\377\377\213\225\310\357\377\377\307D$\f\0\0\0\0\307D$\10\0\0\0\0\307"..., 12288) = 12288 | |
read(3, "]\310\205\333~b\213E\310\211D$\4\215E\340\211\4$\350\250\200\366\377\213E\340\351=\376\377\377"..., 16384) = 16384 | |
write(4, "]\310\205\333~b\213E\310\211D$\4\215E\340\211\4$\350\250\200\366\377\213E\340\351=\376\377\377"..., 4096) = 4096 | |
write(4, "U\211\345\203\354\30\213U\10\213B\10\205\300t\30\213R\f\211\4$\211T$\4\350\361L\366\377\311"..., 12288) = 12288 | |
read(3, "\17\204|\375\377\377\307D$\20\0\0\0\0\211D$\f\211\\$\10\307D$\4\1\1\0\0\307\4"..., 16384) = 16384 | |
write(4, "\17\204|\375\377\377\307D$\20\0\0\0\0\211D$\f\211\\$\10\307D$\4\1\1\0\0\307\4"..., 4096) = 4096 | |
write(4, "\310\4(\10\211U\300\211\4$\350\2015\365\377\213U\300\205\300\211\301\17\204\315\0\0\0\213@\4\366"..., 12288) = 12288 | |
read(3, "\377\377\211t$\4\211\4$\350b\34\362\377\205\300\211\303\17\204M\2\0\0\211\302\213\205\320\376\377\377"..., 16384) = 16384 | |
write(4, "\377\377\211t$\4\211\4$\350b\34\362\377\205\300\211\303\17\204M\2\0\0\211\302\213\205\320\376\377\377"..., 4096) = 4096 | |
write(4, "$\377P\30\351\37\377\377\377\211\370\211\367\211\306\350\274\303\372\377\205\300u\3241\311\211\372\211\360\350="..., 12288) = 12288 | |
read(3, "\17\276\300\211D$\f\241\270\4(\10\307D$\10\252\236!\10\307D$\4k\324!\10\211\4$\350"..., 16384) = 16384 | |
write(4, "\17\276\300\211D$\f\241\270\4(\10\307D$\10\252\236!\10\307D$\4k\324!\10\211\4$\350"..., 4096) = 4096 | |
write(4, "D\213\25\20\5(\10\211\24$\350A[\374\377\211\330\213u\370\213]\364\213}\374\211\354]\303f\220"..., 12288) = 12288 | |
read(3, "U\211\345WVS\201\354,\0\4\0\213E\f\211\4$\350i\352\361\377\205\300\17\204I\1\0\0\213"..., 16384) = 16384 | |
write(4, "U\211\345WVS\201\354,\0\4\0\213E\f\211\4$\350i\352\361\377\205\300\17\204I\1\0\0\213"..., 4096) = 4096 | |
write(4, "2\361\377\2114$\211\303\350S.\371\377\205\333\17\204[\1\0\0\200{\23.\215s\23u\30\2114"..., 12288) = 12288 | |
read(3, "\332\211\360\307\4$\31\0\0\0\350\261\365\377\377\271\231\364!\10\211\332\211\360\307\4$U\0\0\0\350"..., 16384) = 16384 | |
write(4, "\332\211\360\307\4$\31\0\0\0\350\261\365\377\377\271\231\364!\10\211\332\211\360\307\4$U\0\0\0\350"..., 4096) = 4096 | |
write(4, "\311\303\215\264&\0\0\0\0\215\274'\0\0\0\0U\211\321\211\345\203\341\37W\277\1\0\0\0V\211"..., 12288) = 12288 | |
read(3, "\3\4\0\0\213\22\203\372\177\17\217\370\3\0\0\17\276\222\200\377!\10\203\342\0201\3119\320\17\224\301"..., 16384) = 16384 | |
write(4, "\3\4\0\0\213\22\203\372\177\17\217\370\3\0\0\17\276\222\200\377!\10\203\342\0201\3119\320\17\224\301"..., 4096) = 4096 | |
write(4, "\213E\3449E\330w`\17\203S\10\0\0\213F\0109E\340vR\211}\320\211\362\213}\330\353\32"..., 12288) = 12288 | |
read(3, "\17\204R\377\377\377\203\303\0019\337w\353\215v\0\351C\377\377\377\215v\0009\307\213v\4\215v\0"..., 16384) = 16384 | |
write(4, "\17\204R\377\377\377\203\303\0019\337w\353\215v\0\351C\377\377\377\215v\0009\307\213v\4\215v\0"..., 4096) = 4096 | |
write(4, "\213E\364\211\4$\350e\\\367\377\205\300t\344\211E\364\213U\360\213X\10\307D$\f\1\0\0\0"..., 12288) = 12288 | |
read(3, "\215\372\377\205\300\211\307t/\213p\f\203\6\1\213@$\211\4$\350\6\265\363\377\211<$\350\276\244"..., 16384) = 16384 | |
write(4, "\215\372\377\205\300\211\307t/\213p\f\203\6\1\213@$\211\4$\350\6\265\363\377\211<$\350\276\244"..., 4096) = 4096 | |
write(4, "\347\213M\344)\301\211M\344\213}\344\205\377\17\210\34\1\0\0\213]\10\213}\10\213\3\203\303\4\201"..., 12288) = 12288 | |
read(3, "\3519\377\377\377\350v\31\371\377\215E\274\211\4$\350\33X\360\377\270\240\20#\10\203\5\240\20#\10"..., 16384) = 16384 | |
write(4, "\3519\377\377\377\350v\31\371\377\215E\274\211\4$\350\33X\360\377\270\240\20#\10\203\5\240\20#\10"..., 4096) = 4096 | |
write(4, "$\0\0\0\0\211D$\4\350\"\363\377\377\205\300\211\306t(\213C\10\271 \346&\10\205\300u0"..., 12288) = 12288 | |
read(3, "\21\1\0\0\203}\240\v\270\f\0\0\0\17\216\355\2\0\0\211\4$\350\0051\362\377\205\300\211E\234"..., 16384) = 16384 | |
write(4, "\21\1\0\0\203}\240\v\270\f\0\0\0\17\216\355\2\0\0\211\4$\350\0051\362\377\205\300\211E\234"..., 4096) = 4096 | |
write(4, "1\377\353+\215A\377\213S\24\211D$\10\215D2\1\211D$\4\211\360)\370\203\307\1\1\302\211"..., 12288) = 12288 | |
read(3, "\307\205\260\375\377\377\0\0\0\0\351\201\376\377\377\220+\225\270\375\377\377;\225\330\375\377\377\17\205[\3"..., 16384) = 16384 | |
write(4, "\307\205\260\375\377\377\0\0\0\0\351\201\376\377\377\220+\225\270\375\377\377;\225\330\375\377\377\17\205[\3"..., 4096) = 4096 | |
write(4, "\17\212\242\376\377\377\335\333\335\330\335\330\335\331\331\350\331\311\211\330\335[\10\335\33\203\304t[]\302\4"..., 12288) = 12288 | |
read(3, "[^]\303\215\266\0\0\0\0\215\277\0\0\0\0U\211\345VS\203\354 \213]\f\213u\10\205\333"..., 16384) = 16384 | |
write(4, "[^]\303\215\266\0\0\0\0\215\277\0\0\0\0U\211\345VS\203\354 \213]\f\213u\10\205\333"..., 4096) = 4096 | |
write(4, "U\211\345WVS\203\354<\215}\340\215u\334\215]\344\307E\340\0\0\0\0\307E\334\0\0\0\0"..., 12288) = 12288 | |
read(3, "\300\205\322t\33\211}\f\213]\364\211U\10\213}\374\211\362\213u\370\211\354]\377\342\220\215t&\0"..., 16384) = 16384 | |
write(4, "\300\205\322t\33\211}\f\213]\364\211U\10\213}\374\211\362\213u\370\211\354]\377\342\220\215t&\0"..., 4096) = 4096 | |
write(4, "f\203\30\10\2114$\350\224t\362\377\203\370\377tg\213\3\203\350\1\205\300\211\3tD\213_\4\205"..., 12288) = 12288 | |
read(3, "\307D$\4u!\"\10\2114$\350\300X\362\377\205\300tp\307D$\4u!\"\10\2114$\350"..., 16384) = 16384 | |
write(4, "\307D$\4u!\"\10\2114$\350\300X\362\377\205\300tp\307D$\4u!\"\10\2114$\350"..., 4096) = 4096 | |
write(4, "\203\370\377\17\204z\376\377\377\205\300\272\10\0\0\0\17\205\315\367\377\377\241\334\v(\10\211\34$\211D"..., 12288) = 12288 | |
read(3, "D$\4\266)\"\10\2114$\350\21\5\362\377\205\300\211\303\17\204_\341\377\377\213M\304\215U\330\350"..., 16384) = 16384 | |
write(4, "D$\4\266)\"\10\2114$\350\21\5\362\377\205\300\211\303\17\204_\341\377\377\213M\304\215U\330\350"..., 4096) = 4096 | |
write(4, "\203\350\1\205\300\211\3\17\204\23\1\0\0\213E\340\213X\10\205\333\17\204E\1\0\0\203\3\1\213U"..., 12288) = 12288 | |
read(3, "\377\377\205\300\243D\n(\10\17\204\371\20\0\0\213\25\374\t(\10\271|5'\10\270\231*\"\10\307"..., 16384) = 16384 | |
write(4, "\377\377\205\300\243D\n(\10\17\204\371\20\0\0\213\25\374\t(\10\271|5'\10\270\231*\"\10\307"..., 4096) = 4096 | |
write(4, "\206Q\"\10\307\4$\3\0\0\0\350\300@\377\377\205\300\243\344\v(\10\17\204\353\0\0\0001\311\272"..., 12288) = 12288 | |
read(3, "\211M\324\213E\340\213Q\24\350\362\26\0\0\205\300\211E\330t\213\213]\324\213C\20\203\370\1t\200"..., 16384) = 16384 | |
write(4, "\211M\324\213E\340\213Q\24\350\362\26\0\0\205\300\211E\330t\213\213]\324\213C\20\203\370\1t\200"..., 4096) = 4096 | |
write(4, "A\4\211\f$\377P\0301\300\351\307\376\377\377\220\213M\340\213A\10\211D$\4\213E\344\211\4$"..., 12288) = 12288 | |
read(3, "\10\241\350\235\"\0101\366\307D$\4@\\\"\10\211\4$\350X\337\366\377\203\304l\211\360[^_"..., 16384) = 16384 | |
write(4, "\10\241\350\235\"\0101\366\307D$\4@\\\"\10\211\4$\350X\337\366\377\203\304l\211\360[^_"..., 4096) = 4096 | |
write(4, "\213\6\213V\4\213]\370\213u\374\211E\10\211U\f\211\354]\351\307i\360\377\215\264&\0\0\0\0"..., 12288) = 12288 | |
read(3, "o__ should return >= 0\0\0__iter__"..., 16384) = 16384 | |
write(4, "o__ should return >= 0\0\0__iter__"..., 4096) = 4096 | |
write(4, "r all exceptions\0\0\0\0Common base "..., 12288) = 12288 | |
read(3, "ust not be zero\0xrange() result "..., 16384) = 16384 | |
write(4, "ust not be zero\0xrange() result "..., 4096) = 4096 | |
write(4, "\26Y\n\10\26Y\n\10\26Y\n\10\232U\n\10@X\n\10\232U\n\10\232U\n\10\232U\n\10"..., 12288) = 12288 | |
read(3, "\0\0\0\0\0\0\0\0\0\1\1\1\1\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\1\1\1"..., 16384) = 16384 | |
write(4, "\0\0\0\0\0\0\0\0\0\1\1\1\1\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\1\1\1"..., 4096) = 4096 | |
write(4, "\10\10\10\10\10\10\10\10\10\10\10\10\10\10\10\10\10\10\10\10\10\10\10\10\10\10\10\10\10\10\10\10"..., 12288) = 12288 | |
read(3, "\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1"..., 16384) = 16384 | |
write(4, "\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1"..., 4096) = 4096 | |
write(4, "\26\27\26\27\26\27\26\27\26\27\26\27\26\27\26\27\26\27\26\27\26\27\26\27\26\27\26\27\26\27\26\27"..., 12288) = 12288 | |
read(3, "rg 1 must be a string or code ob"..., 16384) = 16384 | |
write(4, "rg 1 must be a string or code ob"..., 4096) = 4096 | |
write(4, "le kind %d should not be possibl"..., 12288) = 12288 | |
read(3, "\6\0\0\0\6\0\0\0\6\0\0\0\6\0\0\0\6\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 16384) = 16384 | |
write(4, "\6\0\0\0\6\0\0\0\6\0\0\0\6\0\0\0\6\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 4096) = 4096 | |
write(4, "n\0optimized\0nested\0\0\342;\20\10x<\20\10\250<\20\10"..., 12288) = 12288 | |
read(3, "ion is not in effect.\0\0\0floordiv"..., 16384) = 16384 | |
write(4, "ion is not in effect.\0\0\0floordiv"..., 4096) = 4096 | |
write(4, ".partial\0keywords\0\0\0a partial ob"..., 12288) = 12288 | |
read(3, "\0\0\0\0\0\0\0\0V0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\234\t\0\0"..., 16384) = 16384 | |
write(4, "\0\0\0\0\0\0\0\0V0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\234\t\0\0"..., 4096) = 4096 | |
write(4, "\317\245\0\0\0\0\0\0\324\324\1\0C\245\0\0b0\0\0@\245\0\0\0\0\0\0\0\0\0\0"..., 12288) = 12288 | |
read(3, "\0\0\0\0\217\24\0\0\0222\0\0\0\0\0\0\323\243\0\0&'\0\0k\377\0\0/\320\1\0"..., 16384) = 16384 | |
write(4, "\0\0\0\0\217\24\0\0\0222\0\0\0\0\0\0\323\243\0\0&'\0\0k\377\0\0/\320\1\0"..., 4096) = 4096 | |
write(4, "\326\321\1\0\0\0\0\0]'\0\0m\371\0\0=#\1\0Z\246\0\0\0\0\0\0\0\0\0\0"..., 12288) = 12288 | |
read(3, "\0\0\0\0\2710\0\0\206\31\0\0\0\0\0\0c\0\0\0b\0\0\0a\0\0\0\373\326\1\0"..., 16384) = 16384 | |
write(4, "\0\0\0\0\2710\0\0\206\31\0\0\0\0\0\0c\0\0\0b\0\0\0a\0\0\0\373\326\1\0"..., 4096) = 4096 | |
write(4, "\0\0\0\0\0\0\0\0\0\0\0\0)3\0\0\0\0\0\0\203\374\0\0\3433\0\0\2311\0\0"..., 12288) = 12288 | |
read(3, "\226\326\1\0\221\326\1\0\26\17\0\0\253%\0\0\0\0\0\0\0\0\0\0\322\35\0\0\0\0\0\0"..., 16384) = 16384 | |
write(4, "\226\326\1\0\221\326\1\0\26\17\0\0\253%\0\0\0\0\0\0\0\0\0\0\322\35\0\0\0\0\0\0"..., 4096) = 4096 | |
write(4, "\0\0\0\0\355\25\0\0\33\"\1\0\0\0\0\0\0\0\0\0\352\25\0\0\0\0\0\0\0\0\0\0"..., 12288) = 12288 | |
read(3, "\0\0\0\0\0\0\0\0\0\0\0\0\20.\0\0\0\0\0\0\0\0\0\0\217\3\0\0s\35\0\0"..., 16384) = 16384 | |
write(4, "\0\0\0\0\0\0\0\0\0\0\0\0\20.\0\0\0\0\0\0\0\0\0\0\217\3\0\0s\35\0\0"..., 4096) = 4096 | |
write(4, "E\4\1\0\0\0\0\0\0\0\0\0\347\4\0\0005\20\0\0\37$\0\0\0\0\0\0\271&\0\0"..., 12288) = 12288 | |
read(3, "\217\"\1\0\0\0\0\0\0\0\0\0\0\0\0\0|\25\0\0m\"\0\0\0\0\0\0\0\0\0\0"..., 16384) = 16384 | |
write(4, "\217\"\1\0\0\0\0\0\0\0\0\0\0\0\0\0|\25\0\0m\"\0\0\0\0\0\0\0\0\0\0"..., 4096) = 4096 | |
write(4, "f\3\0\0\340\35\0\0\253\r\0\0\241!\0\0\344\35\0\0l\3\0\0g\3\0\0m\3\0\0"..., 12288) = 12288 | |
read(3, "8\17\0\0\0\0\0\0\301\3\1\0\203\v\0\0\210\1\0\0\326\36\0\0'\21\0\0+\n\1\0"..., 16384) = 16384 | |
write(4, "8\17\0\0\0\0\0\0\301\3\1\0\203\v\0\0\210\1\0\0\326\36\0\0'\21\0\0+\n\1\0"..., 4096) = 4096 | |
write(4, "\6\324\1\0\5\324\1\0\10\324\1\0A\22\0\0$\375\0\0F\22\0\0\f\324\1\0\v\324\1\0"..., 12288) = 12288 | |
read(3, "\16\n\1\0\375(\0\0\0\0\0\0\301\37\0\0\0\0\0\0\0\0\0\0\347\"\1\0\364\31\0\0"..., 16384) = 16384 | |
write(4, "\16\n\1\0\375(\0\0\0\0\0\0\301\37\0\0\0\0\0\0\0\0\0\0\347\"\1\0\364\31\0\0"..., 4096) = 4096 | |
write(4, "\0\0\0\0\0\0\0\0\0\0\0\0\3022\0\0\0\0\0\0L*\0\0\0\0\0\0T\30\0\0"..., 12288) = 12288 | |
read(3, "x\1\0\0y\1\0\0|\1\0\0\202\1\0\0\212\1\0\0\214\1\0\0\220\1\0\0\223\1\0\0"..., 16384) = 16384 | |
write(4, "x\1\0\0y\1\0\0|\1\0\0\202\1\0\0\212\1\0\0\214\1\0\0\220\1\0\0\223\1\0\0"..., 4096) = 4096 | |
write(4, "\200\32\0\0\206\32\0\0\214\32\0\0\224\32\0\0\234\32\0\0\244\32\0\0\254\32\0\0\262\32\0\0"..., 12288) = 12288 | |
read(3, "\365G\0\0\371G\0\0\375G\0\0\1H\0\0\5H\0\0\tH\0\0\rH\0\0\21H\0\0"..., 16384) = 16384 | |
write(4, "\365G\0\0\371G\0\0\375G\0\0\1H\0\0\5H\0\0\tH\0\0\rH\0\0\21H\0\0"..., 4096) = 4096 | |
write(4, "\253W\0\0\257W\0\0\263W\0\0\267W\0\0\273W\0\0\301W\0\0\304W\0\0\310W\0\0"..., 12288) = 12288 | |
read(3, "n\222\0\0r\222\0\0t\222\0\0v\222\0\0x\222\0\0{\222\0\0\177\222\0\0\203\222\0\0"..., 16384) = 16384 | |
write(4, "n\222\0\0r\222\0\0t\222\0\0v\222\0\0x\222\0\0{\222\0\0\177\222\0\0\203\222\0\0"..., 4096) = 4096 | |
write(4, "\326\247\0\0\333\247\0\0\340\247\0\0\345\247\0\0\350\247\0\0\354\247\0\0\361\247\0\0\364\247\0\0"..., 12288) = 12288 | |
read(3, "Q\337\0\0U\337\0\0Y\337\0\0]\337\0\0a\337\0\0e\337\0\0i\337\0\0m\337\0\0"..., 16384) = 16384 | |
write(4, "Q\337\0\0U\337\0\0Y\337\0\0]\337\0\0a\337\0\0e\337\0\0i\337\0\0m\337\0\0"..., 4096) = 4096 | |
write(4, "\20\357\0\0\24\357\0\0\30\357\0\0\34\357\0\0 \357\0\0$\357\0\0(\357\0\0,\357\0\0"..., 12288) = 12288 | |
read(3, "\356 \1\0\366 \1\0\377 \1\0\10!\1\0\21!\1\0\32!\1\0\"!\1\0*!\1\0"..., 16384) = 16384 | |
write(4, "\356 \1\0\366 \1\0\377 \1\0\10!\1\0\21!\1\0\32!\1\0\"!\1\0*!\1\0"..., 4096) = 4096 | |
write(4, "O6\1\0U6\1\0[6\1\0a6\1\0g6\1\0m6\1\0s6\1\0y6\1\0"..., 12288) = 12288 | |
read(3, ")o\1\0-o\1\0002o\1\0007o\1\0;o\1\0?o\1\0Do\1\0Ho\1\0"..., 16384) = 16384 | |
write(4, ")o\1\0-o\1\0002o\1\0007o\1\0;o\1\0?o\1\0Do\1\0Ho\1\0"..., 4096) = 4096 | |
write(4, "\3\204\1\0\10\204\1\0\r\204\1\0\22\204\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 12288) = 12288 | |
read(3, "J\2\333\34\6\1\375C\2\346~\34\3\1\375C\2\346~\34\6\1\367w\2\333\34\3\1\367w\2"..., 16384) = 16384 | |
write(4, "J\2\333\34\6\1\375C\2\346~\34\3\1\375C\2\346~\34\6\1\367w\2\333\34\3\1\367w\2"..., 4096) = 4096 | |
write(4, "\312^\1\366\251^\1\374\327^\1\366\260^\1\374\325^\1\366\325^\1\366\265^\1\366\277^\1\360"..., 12288) = 12288 | |
read(3, "<\372\333\20\21<\370[\20\21<\372\332\20\21<\364a\20\21<\370Z\20\21<\367\21\20\21<\366"..., 16384) = 16384 | |
write(4, "<\372\333\20\21<\370[\20\21<\372\332\20\21<\364a\20\21<\370Z\20\21<\367\21\20\21<\366"..., 4096) = 4096 | |
write(4, "\306\354\24U\5\356\216U\5\353\331U\5\356|U\1\356\\U\1\3622\3530U\1\357'U\1\364"..., 12288) = 12288 | |
read(3, "\331\346\203\16 \366\345\346\203\16 \355E\16 \354,\362\321b\366\235\366\347\16 \352\250\16 \356\264"..., 16384) = 16384 | |
write(4, "\331\346\203\16 \366\345\346\203\16 \355E\16 \354,\362\321b\366\235\366\347\16 \352\250\16 \356\264"..., 4096) = 4096 | |
write(4, "\26\347\310\355<\343\205\360u\353\26\347\310p\343\271\360u\347\307\245\347\310p\343\205\360u\347\307\245\347"..., 12288) = 12288 | |
read(3, "0\1\3\375\0250\1\3\374\3450\1\3\3200\1\3\375%0\1\3\375\0030\1\3\375$0\1\3"..., 16384) = 16384 | |
write(4, "0\1\3\375\0250\1\3\374\3450\1\3\3200\1\3\375%0\1\3\375\0030\1\3\375$0\1\3"..., 4096) = 4096 | |
write(4, "H\10\4\375\10\10\4\373F\10\4\3734\10\4\374\367\10\4\3732\10\4\373S\10\4\373T\10\4\374"..., 12288) = 12288 | |
read(3, "7;\17\n\24\374\331\2\374\317;\17\n\24\374\322\2{;\17\n\24\374\322\2e;\17\n\24\374\322"..., 16384) = 16384 | |
write(4, "7;\17\n\24\374\331\2\374\317;\17\n\24\374\322\2{;\17\n\24\374\322\2e;\17\n\24\374\322"..., 4096) = 4096 | |
write(4, "Hd\7\6\1\376\277d\7\6\1\326d\7\6\1\324d\7\6\1Jd\7\6\1\376\300d\7\6\1"..., 12288) = 12288 | |
read(3, "\243\ro\5\207\355\243\ro\5\230\355\243\ro\5\230\365\237\353\36\17\ro\5\366\240\355\243\ro\5"..., 16384) = 16384 | |
write(4, "\243\ro\5\207\355\243\ro\5\230\355\243\ro\5\230\365\237\353\36\17\ro\5\366\240\355\243\ro\5"..., 4096) = 4096 | |
write(4, "\347\216 \353\376\216 \345\273\216 \350X\367\272\216 \343\341\221\345\373\216 \345\374\216 \344\256\216 "..., 12288) = 12288 | |
read(3, "\362D\1E\20E\37E.E=ELE[EjEyE\210E\227E\246E\265E\304E\323E"..., 16384) = 16384 | |
write(4, "\362D\1E\20E\37E.E=ELE[EjEyE\210E\227E\246E\265E\304E\323E"..., 4096) = 4096 | |
write(4, "K\227S\227[\227c\227k\227s\227(P{\227\203\227\213\227\223\227\233\227\243\227\253\227\263\227\273\227"..., 12288) = 12288 | |
read(3, "\0\0\0\0\0\0\0\0.\1\0\0\0\0\0\0\0\0\0\0\0\0/\1\0\0\0\0\0\0\0\0"..., 16384) = 16384 | |
write(4, "\0\0\0\0\0\0\0\0.\1\0\0\0\0\0\0\0\0\0\0\0\0/\1\0\0\0\0\0\0\0\0"..., 4096) = 4096 | |
write(4, "\0\0\0\0\0\0`\1\0\0\0\0\0\0\0\0\0\0b\36\0\0\0\0\30\2^\1\0\0\0\0"..., 12288) = 12288 | |
read(3, "\5\6\6\7\10\7\6\6\t\n\6\v\f\r\f\f\16\16\16\16\16\16\16\16\16\16\f\6\17\20\17\6"..., 16384) = 16384 | |
write(4, "\5\6\6\7\10\7\6\6\t\n\6\v\f\r\f\f\16\16\16\16\16\16\16\16\16\16\f\6\17\20\17\6"..., 4096) = 4096 | |
write(4, "(((((((((((ppmmmmpmmmmmqprrppmm("..., 12288) = 12288 | |
read(3, "\274\274\274\274\274\274\274\274\274\274\274\274\274\274\274\274\274\274\274\274\274\274\274\274\274\274\274\274\274\274\274\274"..., 16384) = 16384 | |
write(4, "\274\274\274\274\274\274\274\274\274\274\274\274\274\274\274\274\274\274\274\274\274\274\274\274\274\274\274\274\274\274\274\274"..., 4096) = 4096 | |
write(4, "\206\206\206\206\206\206\206\206\206\206\206\206\206\206\206\206\206\206\206\206\206\206\206\206\206\206\206\206\206\206\206\206"..., 12288) = 12288 | |
read(3, "\1\3\0\0\0\2\0\0\342\0\0\0\1\3\0\0\0\2\0\0\302\0\0\0\0\3\0\0\0\2\0\0"..., 16384) = 16384 | |
write(4, "\1\3\0\0\0\2\0\0\342\0\0\0\1\3\0\0\0\2\0\0\302\0\0\0\0\3\0\0\0\2\0\0"..., 4096) = 4096 | |
write(4, "9\0\0\0\3\1\0\0+\0\0\0\3\1\0\0\22\"\0\0\3\1\0\0=\0\0\0\3\1\0\0"..., 12288) = 12288 | |
read(3, "\n\3\0\0M\0\0\0H\0\0\0z\0\0\0\n\3\0\0G\0\0\0H\0\0\0z\0\0\0"..., 16384) = 16384 | |
write(4, "\n\3\0\0M\0\0\0H\0\0\0z\0\0\0\n\3\0\0G\0\0\0H\0\0\0z\0\0\0"..., 4096) = 4096 | |
write(4, "\"t\0\0\0\1\0\0\221x\0\0\0\1\0\0>y\0\0\0\1\0\0Iy\0\0\0\1\0\0"..., 12288) = 12288 | |
read(3, "O1\0\0\20\1\0\0P1\0\0\20\1\0\0Q1\0\0\20\1\0\0R1\0\0\20\1\0\0"..., 16384) = 16384 | |
write(4, "O1\0\0\20\1\0\0P1\0\0\20\1\0\0Q1\0\0\20\1\0\0R1\0\0\20\1\0\0"..., 4096) = 4096 | |
write(4, "\6\1\0\0O\0\0\0\6\1\0\0P\0\0\0\6\1\0\0Q\0\0\0\6\1\0\0R\0\0\0"..., 12288) = 12288 | |
read(3, "\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7"..., 16384) = 16384 | |
write(4, "\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7"..., 4096) = 4096 | |
write(4, "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 12288) = 12288 | |
read(3, "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\372\21\0\0\375\21\0\0"..., 16384) = 16384 | |
write(4, "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\372\21\0\0\375\21\0\0"..., 4096) = 4096 | |
write(4, "\26!\31!\34!\37!\"!%!(!+!.!1!4!7!:!=!@!C!"..., 12288) = 12288 | |
read(3, "\2\2\2\2\2\2\2\2\2\2\2\2\2\2\2\2\2\2\2\2\2\2\2\2\2\2\2\2\2\2\2\2"..., 16384) = 16384 | |
write(4, "\2\2\2\2\2\2\2\2\2\2\2\2\2\2\2\2\2\2\2\2\2\2\2\2\2\2\2\2\2\2\2\2"..., 4096) = 4096 | |
write(4, "\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7\0\0\0\0\0"..., 12288) = 12288 | |
read(3, "\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7"..., 16384) = 16384 | |
write(4, "\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7\7"..., 4096) = 4096 | |
write(4, "M\0EPOLLRDBAND\0EPOLLWRNORM\0EPOLLW"..., 12288) = 12288 | |
read(3, "\37\357>\377]\317|\337\233\257\272\277\331\217\370\237\27n6~UNt^\223.\262>\321\16\360\36"..., 16384) = 16384 | |
write(4, "\37\357>\377]\317|\337\233\257\272\277\331\217\370\237\27n6~UNt^\223.\262>\321\16\360\36"..., 4096) = 4096 | |
write(4, "e, but go through most of the mo"..., 12288) = 12288 | |
read(3, "s:lookup_error\0sO:register_error"..., 16384) = 16384 | |
write(4, "s:lookup_error\0sO:register_error"..., 4096) = 4096 | |
write(4, "slice of size %zd\0\0\0can't set by"..., 12288) = 12288 | |
read(3, " field \"defaults\" missing from a"..., 16384) = 16384 | |
write(4, " field \"defaults\" missing from a"..., 4096) = 4096 | |
write(4, "ired field \"body\" missing from E"..., 12288) = 12288 | |
read(3, "r\266\5\10\202\266\5\10\222\266\5\10\242\266\5\10\262\266\5\10\302\266\5\10\322\266\5\10\342\266\5\10"..., 16384) = 16384 | |
write(4, "r\266\5\10\202\266\5\10\222\266\5\10\242\266\5\10\262\266\5\10\302\266\5\10\322\266\5\10\342\266\5\10"..., 4096) = 4096 | |
write(4, "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 12288) = 12288 | |
read(3, "is one of None (no newline read "..., 16384) = 16384 | |
write(4, "is one of None (no newline read "..., 4096) = 4096 | |
write(4, "\232_\30\10\360\312\7\10\4\0\0\0\320d\30\10K7\30\0100\245\7\10\4\0\0\0\4e\30\10"..., 12288) = 12288 | |
read(3, "string; the optional doc argumen"..., 16384) = 16384 | |
write(4, "string; the optional doc argumen"..., 4096) = 4096 | |
write(4, "Return the difference of two or "..., 12288) = 12288 | |
read(3, "g\n\nReturn a copy of S where all "..., 16384) = 16384 | |
write(4, "g\n\nReturn a copy of S where all "..., 4096) = 4096 | |
write(4, "p\37\v\10\220\361\n\10\321\251\30\10\0\0\0\0\0\0\0\0(:\30\10\34\1\0\0@\37\v\10"..., 12288) = 12288 | |
read(3, "d]]) -> bool\n\nReturn True if S s"..., 16384) = 16384 | |
write(4, "d]]) -> bool\n\nReturn True if S s"..., 4096) = 4096 | |
write(4, "y list to emulate ``import name'"..., 12288) = 12288 | |
read(3, "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 16384) = 16384 | |
write(4, "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 4096) = 4096 | |
write(4, " must be an open file object ope"..., 12288) = 12288 | |
read(3, " Set debugging flags.\nget_debug("..., 16384) = 16384 | |
write(4, " Set debugging flags.\nget_debug("..., 4096) = 4096 | |
write(4, "ctionary kwargs. The thread exi"..., 12288) = 12288 | |
read(3, "tounicode() -> unicode\n\nConvert "..., 16384) = 16384 | |
write(4, "tounicode() -> unicode\n\nConvert "..., 4096) = 4096 | |
write(4, "Functions to convert between Pyt"..., 12288) = 12288 | |
read(3, "2], r[5], r[3])\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 16384) = 16384 | |
write(4, "2], r[5], r[3])\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 4096) = 4096 | |
write(4, "Remove and return the leftmost e"..., 12288) = 12288 | |
read(3, "the leading characters of s, 0 f"..., 16384) = 16384 | |
write(4, "the leading characters of s, 0 f"..., 4096) = 4096 | |
write(4, "\1\0\0\0X\321\31\10\t\320\31\10\6\0\0\0\20\0\0\0\1\0\0\0\204\321\31\10\0\0\0\0"..., 12288) = 12288 | |
read(3, "APH-2F96B\200IDEOGRAPH-2F96C\200IDEOGR"..., 16384) = 16384 | |
write(4, "APH-2F96B\200IDEOGRAPH-2F96C\200IDEOGR"..., 4096) = 4096 | |
write(4, "3B\200IDEOGRAPH-F93C\200IDEOGRAPH-F93D"..., 12288) = 12288 | |
read(3, "L\200MUUSIKATOAN\200NAAKSIKYAYA\200NASALI"..., 16384) = 16384 | |
write(4, "L\200MUUSIKATOAN\200NAAKSIKYAYA\200NASALI"..., 4096) = 4096 | |
write(4, "INDICATOR\200RECTANGLE\200RIGHT-HAN\304TR"..., 12288) = 12288 | |
read(3, "INE-7\200LINE-9\200LINKIN\307LOZENG\305MAIDE"..., 16384) = 16384 | |
write(4, "INE-7\200LINE-9\200LINKIN\307LOZENG\305MAIDE"..., 4096) = 4096 | |
write(4, "BD\301LATIK\200LAUKA\332LEMOI\200LIBRA\200LIMIT"..., 12288) = 12288 | |
read(3, "\310TEX\200THE\323THI\316THZ\200TII\200TIL\200TIP\200TIT"..., 16384) = 16384 | |
write(4, "\310TEX\200THE\323THI\316THZ\200TII\200TIL\200TIP\200TIT"..., 4096) = 4096 | |
write(4, "turned.\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 12288) = 12288 | |
read(3, "ster() returns\nTrue if a new fd "..., 16384) = 16384 | |
write(4, "ster() returns\nTrue if a new fd "..., 4096) = 4096 | |
write(4, " the true host name, a list of a"..., 12288) = 12288 | |
read(3, "e\5\"\10\361\267!\10\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 16384) = 16384 | |
write(4, "e\5\"\10\361\267!\10\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 4096) = 4096 | |
write(4, "e file\n\nNote (hack:) writing Non"..., 12288) = 12288 | |
read(3, "he given values. If the\nsecond "..., 16384) = 16384 | |
write(4, "he given values. If the\nsecond "..., 4096) = 4096 | |
write(4, "Read a file descriptor.\0\0\0\0\0\0\0\0\0"..., 12288) = 12288 | |
read(3, "tion) tuple.\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 16384) = 16384 | |
write(4, "tion) tuple.\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 4096) = 4096 | |
write(4, "\216\10\"\10 \203\25\10\1\0\0\0\310\10\"\10\204\10\"\10\340\202\25\10\1\0\0\0\334\10\"\10"..., 12288) = 12288 | |
read(3, "\301_\30\10\4\0\0\0\10\0\0\0\1\0\0\0de\30\10\306_\30\10\4\0\0\0\20\0\0\0"..., 16384) = 16384 | |
write(4, "\301_\30\10\4\0\0\0\10\0\0\0\1\0\0\0de\30\10\306_\30\10\4\0\0\0\20\0\0\0"..., 4096) = 4096 | |
write(4, "\0\0\0\0\0\0\0\0\0\0\0\0\3401\t\10\360\207\26\10`\"'\10\0\0\0\0\0\0\0\0"..., 12288) = 12288 | |
read(3, "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 16384) = 10864 | |
read(3, "", 4096) = 0 | |
write(4, "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 4096) = 4096 | |
write(4, "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 4096) = 4096 | |
read(3, "", 16384) = 0 | |
write(4, "\0\0\1\0\\\0\1\0\34\0\2\0\27\0\3\0\30\0\4\0]\0\1\0^\0\5\0\0\0\4\0"..., 2672) = 2672 | |
close(4) = 0 | |
munmap(0xb7723000, 4096) = 0 | |
close(3) = 0 | |
munmap(0xb7724000, 4096) = 0 | |
stat64("test0/bin/python", {st_mode=S_IFREG|0755, st_size=2288240, ...}) = 0 | |
chmod("test0/bin/python", 0755) = 0 | |
stat64("test0/bin/python2", 0xbff8651c) = -1 ENOENT (No such file or directory) | |
symlink("python", "test0/bin/python2") = -1 EROFS (Read-only file system) | |
write(2, "Traceback (most recent call last"..., 35Traceback (most recent call last): | |
) = 35 | |
write(2, " File \"/usr/local/bin/virtualen"..., 56 File "/usr/local/bin/virtualenv", line 9, in <module> | |
) = 56 | |
open("/usr/local/bin/virtualenv", O_RDONLY|O_LARGEFILE) = 3 | |
fstat64(3, {st_mode=S_IFREG|0755, st_size=316, ...}) = 0 | |
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7724000 | |
read(3, "#!/usr/bin/python\n# EASY-INSTALL"..., 4096) = 316 | |
write(2, " ", 4 ) = 4 | |
write(2, "load_entry_point('virtualenv==1."..., 73load_entry_point('virtualenv==1.8.4', 'console_scripts', 'virtualenv')() | |
) = 73 | |
close(3) = 0 | |
munmap(0xb7724000, 4096) = 0 | |
write(2, " File \"/usr/local/lib/python2.6"..., 81 File "/usr/local/lib/python2.6/dist-packages/virtualenv.py", line 964, in main | |
) = 81 | |
open("/usr/local/lib/python2.6/dist-packages/virtualenv.py", O_RDONLY|O_LARGEFILE) = 3 | |
fstat64(3, {st_mode=S_IFREG|0644, st_size=114330, ...}) = 0 | |
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7724000 | |
read(3, "#!/usr/bin/env python\n\"\"\"Create "..., 4096) = 4096 | |
read(3, " #\"email\",\n #\"fil"..., 4096) = 4096 | |
read(3, "gs = args or kw\n rendered"..., 4096) = 4096 | |
read(3, ".exists(src):\n # Some bad"..., 4096) = 4096 | |
read(3, "md.append('-v')\n\n old_chdir ="..., 4096) = 4096 | |
read(3, "_pip_re.search(fn)])\n filenam"..., 4096) = 4096 | |
read(3, "e):\n return [config_f"..., 4096) = 4096 | |
read(3, " action='store_false',\n h"..., 4096) = 4096 | |
read(3, ")\n logger.fatal('Please d"..., 4096) = 4096 | |
write(2, " ", 4 ) = 4 | |
write(2, "never_download=options.never_dow"..., 39never_download=options.never_download) | |
) = 39 | |
close(3) = 0 | |
munmap(0xb7724000, 4096) = 0 | |
write(2, " File \"/usr/local/lib/python2.6"..., 96 File "/usr/local/lib/python2.6/dist-packages/virtualenv.py", line 1065, in create_environment | |
) = 96 | |
open("/usr/local/lib/python2.6/dist-packages/virtualenv.py", O_RDONLY|O_LARGEFILE) = 3 | |
fstat64(3, {st_mode=S_IFREG|0644, st_size=114330, ...}) = 0 | |
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7724000 | |
read(3, "#!/usr/bin/env python\n\"\"\"Create "..., 4096) = 4096 | |
read(3, " #\"email\",\n #\"fil"..., 4096) = 4096 | |
read(3, "gs = args or kw\n rendered"..., 4096) = 4096 | |
read(3, ".exists(src):\n # Some bad"..., 4096) = 4096 | |
read(3, "md.append('-v')\n\n old_chdir ="..., 4096) = 4096 | |
read(3, "_pip_re.search(fn)])\n filenam"..., 4096) = 4096 | |
read(3, "e):\n return [config_f"..., 4096) = 4096 | |
read(3, " action='store_false',\n h"..., 4096) = 4096 | |
read(3, ")\n logger.fatal('Please d"..., 4096) = 4096 | |
read(3, "lear`` is true (default False) t"..., 4096) = 4096 | |
write(2, " ", 4 ) = 4 | |
write(2, "site_packages=site_packages, cle"..., 43site_packages=site_packages, clear=clear)) | |
) = 43 | |
close(3) = 0 | |
munmap(0xb7724000, 4096) = 0 | |
write(2, " File \"/usr/local/lib/python2.6"..., 92 File "/usr/local/lib/python2.6/dist-packages/virtualenv.py", line 1485, in install_python | |
) = 92 | |
open("/usr/local/lib/python2.6/dist-packages/virtualenv.py", O_RDONLY|O_LARGEFILE) = 3 | |
fstat64(3, {st_mode=S_IFREG|0644, st_size=114330, ...}) = 0 | |
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7724000 | |
read(3, "#!/usr/bin/env python\n\"\"\"Create "..., 4096) = 4096 | |
read(3, " #\"email\",\n #\"fil"..., 4096) = 4096 | |
read(3, "gs = args or kw\n rendered"..., 4096) = 4096 | |
read(3, ".exists(src):\n # Some bad"..., 4096) = 4096 | |
read(3, "md.append('-v')\n\n old_chdir ="..., 4096) = 4096 | |
read(3, "_pip_re.search(fn)])\n filenam"..., 4096) = 4096 | |
read(3, "e):\n return [config_f"..., 4096) = 4096 | |
read(3, " action='store_false',\n h"..., 4096) = 4096 | |
read(3, ")\n logger.fatal('Please d"..., 4096) = 4096 | |
read(3, "lear`` is true (default False) t"..., 4096) = 4096 | |
read(3, "xes))\n prefixes = list(map(os"..., 4096) = 4096 | |
read(3, "r(stdlib_dir):\n b"..., 4096) = 4096 | |
read(3, "rectory for *.pyd files')\n "..., 4096) = 4096 | |
read(3, "able in %s' % secondary_exe)\n "..., 4096) = 4096 | |
write(2, " ", 4 ) = 4 | |
write(2, "os.symlink(py_executable_base, f"..., 41os.symlink(py_executable_base, full_pth) | |
) = 41 | |
close(3) = 0 | |
munmap(0xb7724000, 4096) = 0 | |
write(2, "OSError", 7OSError) = 7 | |
write(2, ": ", 2: ) = 2 | |
write(2, "[Errno 30] Read-only file system", 32[Errno 30] Read-only file system) = 32 | |
write(2, "\n", 1 | |
) = 1 | |
rt_sigaction(SIGINT, {SIG_DFL, [], 0}, {0x810fde0, [], 0}, 8) = 0 | |
brk(0x8528000) = 0x8528000 | |
exit_group(1) = ? | |
vagrant@lucid32:/vagrant$ sudo pip install -I virtualenv==1.8.2 | |
Downloading/unpacking virtualenv==1.8.2 | |
Could not fetch URL http://pypi.python.org/simple/virtualenv/1.8.2: HTTP Error 404: Not Found (virtualenv/1.8.2) | |
Will skip URL http://pypi.python.org/simple/virtualenv/1.8.2 when looking for download links for virtualenv==1.8.2 | |
Downloading virtualenv-1.8.2.tar.gz (2.2Mb): 2.2Mb downloaded | |
Running setup.py egg_info for package virtualenv | |
warning: no previously-included files matching '*' found under directory 'docs/_templates' | |
warning: no previously-included files matching '*' found under directory 'docs/_build' | |
Installing collected packages: virtualenv | |
Running setup.py install for virtualenv | |
warning: no previously-included files matching '*' found under directory 'docs/_templates' | |
warning: no previously-included files matching '*' found under directory 'docs/_build' | |
Installing virtualenv script to /usr/local/bin | |
Installing virtualenv-2.6 script to /usr/local/bin | |
Successfully installed virtualenv==1.8.2 | |
vagrant@lucid32:/vagrant$ virtualenv --version | |
1.8.2 | |
vagrant@lucid32:/vagrant$ virtualenv test0 | |
Overwriting test0/lib/python2.6/site.py with new content | |
New python executable in test0/bin/python | |
Installing setuptools............done. | |
Installing pip...............done. | |
vagrant@lucid32:/vagrant$ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment