Re: no connection driver available for No connection for URI xen:///

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



I removed everything and rebuilt from scratch like what I did before (i.e. make uninstall && rpm -e libvirt --nodeps && rpm -e libvirt-client --nodeps && ./autogen.sh --system && make && make install.) However, the libvirtd installed is not the one stored in the PATH. So it will have trouble finding it while typing "libvirtd start". I didn't change the environmental variables. Instead,  I removed everything and rebuilt it from scratch with all default settings (i.e. make uninstall && rpm -e libvirt --nodeps && rpm -e libvirt-client --nodeps && ./configure && make && make install.) to see what will happen. After rebuilt, the system can identify "libvirtd start", which means I can start libvirtd. Also I restarted xend. However, when I was running the "old" command "strace -o strace.txt virt-install --connect=xen:/// -p". Another error popped out, here is the running script:

]# strace -o strace.txt virt-install --connect=xen:/// -p
Traceback (most recent call last):
  File "/usr/bin/virt-install", line 33, in <module>
    import virtinst
  File "/usr/lib/python2.6/site-packages/virtinst/__init__.py", line 35, in <module>
    import Storage
  File "/usr/lib/python2.6/site-packages/virtinst/Storage.py", line 48, in <module>
    import libvirt
  File "/usr/lib64/python2.6/site-packages/libvirt.py", line 25, in <module>
ImportError: No module named libvirtmod

Please find the strace.txt attached for this error. It seems that libvirtmod module is missing. I followed each step I did before but encountered this error for the first time. Could you see how can I let the service to find the module?

Thanks,

On Fri, Mar 16, 2012 at 12:07 PM, Su Zhang <westlifezs@xxxxxxxxx> wrote:


On Fri, Mar 16, 2012 at 10:35 AM, Alex Jia <ajia@xxxxxxxxxx> wrote:
----- Original Message -----
From: "Su Zhang" <westlifezs@xxxxxxxxx>
To: "Alex Jia" <ajia@xxxxxxxxxx>
Cc: libvirt-users@xxxxxxxxxx, "Eric Blake" <eblake@xxxxxxxxxx>
Sent: Friday, March 16, 2012 10:52:32 PM
Subject: Re: no connection driver available for No connection for URI xen:///




On Fri, Mar 16, 2012 at 2:22 AM, Alex Jia < ajia@xxxxxxxxxx > wrote:




On 03/16/2012 01:58 PM, Su Zhang wrote:




On Fri, Mar 16, 2012 at 12:55 AM, Su Zhang < westlifezs@xxxxxxxxx > wrote:






On Fri, Mar 16, 2012 at 12:16 AM, Alex Jia < ajia@xxxxxxxxxx > wrote:




On 03/16/2012 12:12 PM, Su Zhang wrote:

Alex,

I changed the symbolic link to "/usr/local/lib/libvirt.so.0.9.10". Here is the running script:

[root@XenTester libvirt-0.9.10]# rm /usr/lib64/libvirt.so.0
rm: remove symbolic link `/usr/lib64/libvirt.so.0'? yes
[root@XenTester libvirt-0.9.10]# ln -s /usr/local/lib/libvirt.so.0.9.10 /usr/lib64/libvirt.so.0
It's not enough, you had better to clean up your dirty libvirt environment, for example, remove all of
libvirt rpm package on host, then recompile libvirt and ./configure --prefix=/usr && make && make install, or ./autogen --system && make && make install.


I've already done make uninstall && ./autogen.sh --system && make && make install. However, while starting libvirtd, there is still an error here:


Sorry I forgot the command line I used to start the libvirt service, here it is:

[root@XenTester su]# /etc/rc.d/init.d/libvirtd start




Starting libvirtd daemon: libvirtd: /usr/lib64/libvirt.so.0: version `LIBVIRT_PRIVATE_0.9.4' not found (required by libvirtd)
libvirtd: /usr/lib64/libvirt.so.0: version `LIBVIRT_PRIVATE_0.9.4' not found (required by /usr/lib64/libvirt-qemu.so.0)
[FAILED]

Does it mean I cannot remove all of the libvirt binary by only running "make uninstall"?
Are there any other ways can be used to remove the libvirt environment completely?
As usual, 'make uninstall' should be okay, if your 0.9.4 is a libvirt rpm package installation, you may use 'rpm -e libvirt --nodeps' to
remove it, also remove libvirt-client rpm package using the same method.





Alex,

I've done make uninstall, rpm -e libvirt --nodeps and rpm -e libvirt-client --nodeps before I rebuild ( ./autogen.sh --system && make && make install) the libvirt.
It seems that the previous error has gone but warning is left:

[root@XenTester su]# libvirtd start
2012-03-16 14:37:04.511+0000: 29843: info : libvirt version: 0.9.10
2012-03-16 14:37:04.511+0000: 29843: warning : virGetHostname:2108 : getaddrinfo failed for 'XenTester': Name or service not known


Su, the getaddrinfo() can get your hostname, it's just a warning not important, you can run 'hostname' and 'cat /etc/hosts' to
check whether 'XenTester' host name is okay.


Does this warning really matter? Are there anything returned by getaddrinfo will be used by guest OS?


The getaddrinfo() is a gnulib API, which is used for translating name of a service location and/or a service name
to set of socket addresses, libvirt just call it by internal virGetHostname API. it's a host operation not guest.



Besides, could you please confirm if the following running script suggest that Xen and libvirtd have been successfully connected?

[root@XenTester libvirt-0.9.10]# virt-install -p
ERROR
--name is required
--ram amount in MB is required
--disk storage must be specified (override with --nodisks)
An install method must be specified
(--location URL, --cdrom CD/ISO, --pxe, --import, --boot hd|cdrom|...)


Su, yeah, it works well for you, 'man virt-install' will show some example about how to install a guest,
or you also interaction mode using virt-install with --prompt.


Thanks,

Alex,

    It initially run correctly. I can install a VM via this interactive installation mode once. However, it encountered another error while I was going to install with the same command another time. It seems that the sockets path has been changed. I checked that the default socket path is:  /usr/local/var/run/libvirt/libvirt-sock, but it seems that the service is looking for a socket located at '/var/run/libvirt/libvirt-sock' (see 'ERROR    Failed to connect socket to '/var/run/libvirt/libvirt-sock': No such file or directory' in the following running script) . I searched at livirtd.conf file but cannot find a place to reset this socket path. Could you let me know how to get around this issue?


Here is the running script:


[root@XenTester libvirt-0.9.10]# libvirtd --help

Usage:
  libvirtd [options]

Options:
  -v | --verbose         Verbose messages.
  -d | --daemon          Run as a daemon & write PID file.
  -l | --listen          Listen for TCP/IP connections.
  -t | --timeout <secs>  Exit after timeout period.
  -f | --config <file>   Configuration file.
     | --version         Display version information.
  -p | --pid-file <file> Change name of PID file.

libvirt management daemon:

  Default paths:

    Configuration file (unless overridden by -f):
      /usr/local/etc/libvirt/libvirtd.conf

    Sockets:
      /usr/local/var/run/libvirt/libvirt-sock
      /usr/local/var/run/libvirt/libvirt-sock-ro

    TLS:
      CA certificate:     /usr/local/etc/pki/CA/caert.pem
      Server certificate: /usr/local/etc/pki/libvirt/servercert.pem
      Server private key: /usr/local/etc/pki/libvirt/private/serverkey.pem

    PID file (unless overridden by -p):
      /usr/local/var/run/libvirtd.pid

[root@XenTester libvirt-0.9.10]# virt-install --prompt
ERROR    Failed to connect socket to '/var/run/libvirt/libvirt-sock': No such file or directory

Thanks,















Thanks,












I run "strace -o strace.txt virt-install --connect=xen:/// -p" once again, and the following error came out:

ERROR Error in network device parameters: Virtual network 'default' does not exist: this function is not supported by the connection driver: virNetworkLookupByName
the strace.txt is attached.
I think current xen URI works well for you, and you may try virt-install --connect=xen:/// -p -d or virt-install -p -d to confirm this.

The above error is another issues, you need to change others stuff, it's not enough to just link
/usr/local/lib/libvirt.so.0.9.10 /usr/lib64/libvirt.so.0, please follow answer 1.





Are there any other places I need to change in order to let the system know I am running libvirt.so.0.9.10?


Thanks,


On Thu, Mar 15, 2012 at 10:54 PM, Su Zhang < westlifezs@xxxxxxxxx > wrote:


Here it is:

# ll /usr/lib64/libvirt.so.0
lrwxrwxrwx. 1 root root 16 Mar 12 21:19 /usr/lib64/libvirt.so.0 -> libvirt.so.0.9.4

So you meant that I used a wrong libvirt.so? How can I correct this?




On Thu, Mar 15, 2012 at 10:52 PM, Alex Jia < ajia@xxxxxxxxxx > wrote:





On 03/16/2012 11:41 AM, Su Zhang wrote:




On Thu, Mar 15, 2012 at 10:20 PM, Alex Jia < ajia@xxxxxxxxxx > wrote:





On 03/16/2012 11:02 AM, Su Zhang wrote:




On Thu, Mar 15, 2012 at 9:45 PM, Alex Jia < ajia@xxxxxxxxxx > wrote:




On 03/16/2012 05:33 AM, Su Zhang wrote:




On Thu, Mar 15, 2012 at 4:20 PM, Eric Blake < eblake@xxxxxxxxxx > wrote:



On 03/15/2012 02:57 PM, Su Zhang wrote:
> Hi all,
>
> I am trying to use virt-install to install domU image. However, I
> encountered the following issue. It seems that a connection driver is
> needed for Xen.
> I am new to both libvirt and Xen. Anyone have any ideas on what's wrong
> with the following error ?
>
>
>
> # virt-install --connect=xen:/// -p -d
> Thu, 15 Mar 2012 10:17:55 DEBUG Launched with command line:
> /usr/bin/virt-install --connect=xen:/// -p -d
> Thu, 15 Mar 2012 10:17:55 DEBUG Requesting libvirt URI xen:///
> Thu, 15 Mar 2012 10:17:55 ERROR no connection driver available for No
> connection for URI xen:///

This probably means that your copy of libvirt.so and libvirtd was built
without xen support. What does

virsh --version=long

say? Also, are you sure libvirtd is running?
In addition, I want to know your libvirt.so, libvirtd, xend location, for example,
# which libvirtd
# which xend
# locate libvirt.so

Please also make sure xend service is running:
# service xend status







--
Eric Blake eblake@xxxxxxxxxx +1-919-301-3266
Libvirt virtualization library http://libvirt.org


Eric,

Here is the output:
# virsh --version=long
Virsh command line tool of libvirt 0.9.10
See web site at http://libvirt.org/

Compiled with support for:
Hypervisors: Xen QEmu/KVM UML OpenVZ VirtualBox LXC Test
Networking: Remote Daemon Network Bridging Nwfilter VirtualPort
Storage: Dir Filesystem SCSI Multipath iSCSI LVM
Miscellaneous: SELinux Secrets Debug

It seems that it does support Xen.
Yeah, Xen indeed appears in Hypervisors line.




I am not sure if libvirtd is running so I use the following command to start it:

[root@XenTester srv]# /etc/rc.d/init.d/libvirtd start
Right, you may also use service libvirtd start, and check it by service libvirtd status or ps -ef|grep libvirtd.



But the same error is still there.

Am I using the right way to start libvirtd service? Are there any other possible reasons of this error?




Thanks,

--
Su Zhang
Ph.D Candidate
Computing and Information Sciences
Kansas State University
_______________________________________________
libvirt-users mailing list libvirt-users@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/libvirt-users
Alex,

Here is some information:

# /etc/init.d/xencommons start
Starting xenstored...
Setting domain 0 name...
Starting xenconsoled...
[root@XenTester su]# /etc/init.d/xend start
[root@XenTester su]# which libvirtd
/usr/local/sbin/libvirtd
[root@XenTester su]# which xend
/usr/sbin/xend
[root@XenTester su]# locate libvirt.so
/usr/lib64/libvirt.so.0
/usr/lib64/libvirt.so.0.9.4
/usr/local/lib/libvirt.so
/usr/local/lib/libvirt.so.0
/usr/local/lib/libvirt.so.0.9.10
You have 2 different libvirt versions 0.9.4 and 0.9.10, and your 0.9.10 is put under the
/usr/local/lib directory, so I guess you haven't used ./configure with --prefix=/usr option
or directly use ./autogen.sh --system when you configure and compile libvirt.

And also please yum install strace -y if you haven't installed strace rpm, then run the following operation:

# strace -o strace.txt virt-install --connect=xen:/// -p

Then attach strace.txt as a attachment.

Thanks,
Alex



Alex,

Thanks. I have run ./autogen.sh --system. And "make" and "make install" the libvirt once again.
I encountered one type of errors while running "make install", it seems that the installer is looking for a bunch of HTML files under /usr/bin/install. here is the error info:

/usr/bin/install: cannot stat `./api.html': No such file or directory
/usr/bin/install: cannot stat `./api_extension.html': No such file or directory
/usr/bin/install: cannot stat `./apps.html': No such file or directory
/usr/bin/install: cannot stat `./archdomain.html': No such file or directory
/usr/bin/install: cannot stat `./architecture.html': No such file or directory
/usr/bin/install: cannot stat `./archnetwork.html': No such file or directory
/usr/bin/install: cannot stat `./archnode.html': No such file or directory
(there are still tens of HTML files missing)
....
It's not important for our issues.






Do you think this type of errors will affect the functionality of libvirt?
Also, I checked and it seems that I've the latest strace package installed. So I run "strace -o strace.txt virt-install --connect=xen:/// -p".
Please find strace.txt attached.
I saw virt-install is opening /usr/lib64/libvirt.so.0 in strace.txt: open("/usr/lib64/libvirt.so.0", O_RDONLY) = 7 I want to confirm whether you're using compiling libvirt 0.9.10,
ll /usr/lib64/libvirt.so.0 say what?

Thanks,
Alex






Thanks,






[root@XenTester su]# service xend status
[root@XenTester su]# ps -ef|grep libvirtd
root 2242 1 0 21:52 ? 00:00:00 libvirtd --daemon
root 3295 3112 0 21:59 pts/0 00:00:00 grep libvirtd

Can you see if it is normal here?

Thanks,


--
Su Zhang
Ph.D Candidate
Computing and Information Sciences
Kansas State University




--
Su Zhang
Ph.D Candidate
Computing and Information Sciences
Kansas State University




--
Su Zhang
Ph.D Candidate
Computing and Information Sciences
Kansas State University



--
Su Zhang
Ph.D Candidate
Computing and Information Sciences
Kansas State University






--
Su Zhang
Ph.D Candidate
Computing and Information Sciences
Kansas State University



--
Su Zhang
Ph.D Candidate
Computing and Information Sciences
Kansas State University




--
Su Zhang
Ph.D Candidate
Computing and Information Sciences
Kansas State University



--
Su Zhang
Ph.D Candidate
Computing and Information Sciences
Kansas State University



--
Su Zhang
Ph.D Candidate
Computing and Information Sciences
Kansas State University
execve("/usr/bin/virt-install", ["virt-install", "--connect=xen:///", "-p"], [/* 45 vars */]) = 0
brk(0)                                  = 0x1b51000
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b08a0f000
access("/etc/ld.so.preload", R_OK)      = -1 ENOENT (No such file or directory)
open("/etc/ld.so.cache", O_RDONLY)      = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=80908, ...}) = 0
mmap(NULL, 80908, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f5b089fb000
close(3)                                = 0
open("/usr/lib64/libpython2.6.so.1.0", O_RDONLY) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\200\306C\0252\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0555, st_size=1751360, ...}) = 0
mmap(0x3215400000, 3901776, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x3215400000
mprotect(0x3215570000, 2093056, PROT_NONE) = 0
mmap(0x321576f000, 245760, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x16f000) = 0x321576f000
mmap(0x32157ab000, 55632, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x32157ab000
close(3)                                = 0
open("/lib64/libpthread.so.0", O_RDONLY) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0 \\\300\0102\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=141576, ...}) = 0
mmap(0x3208c00000, 2208672, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x3208c00000
mprotect(0x3208c17000, 2093056, PROT_NONE) = 0
mmap(0x3208e16000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x16000) = 0x3208e16000
mmap(0x3208e18000, 13216, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x3208e18000
close(3)                                = 0
open("/lib64/libdl.so.2", O_RDONLY)     = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\340\r@\0102\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=22536, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b089fa000
mmap(0x3208400000, 2109696, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x3208400000
mprotect(0x3208402000, 2097152, PROT_NONE) = 0
mmap(0x3208602000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x3208602000
close(3)                                = 0
open("/lib64/libutil.so.1", O_RDONLY)   = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\20\16\300\0262\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=17520, ...}) = 0
mmap(0x3216c00000, 2105600, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x3216c00000
mprotect(0x3216c02000, 2093056, PROT_NONE) = 0
mmap(0x3216e01000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1000) = 0x3216e01000
close(3)                                = 0
open("/lib64/libm.so.6", O_RDONLY)      = 3
read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\240>\0\t2\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=598800, ...}) = 0
mmap(0x3209000000, 2633944, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x3209000000
mprotect(0x3209083000, 2093056, PROT_NONE) = 0
mmap(0x3209282000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x82000) = 0x3209282000
close(3)                                = 0
open("/lib64/libc.so.6", O_RDONLY)      = 3
read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\360\355\201\0102\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=1979000, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b089f9000
mmap(0x3208800000, 3803304, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x3208800000
mprotect(0x3208997000, 2097152, PROT_NONE) = 0
mmap(0x3208b97000, 20480, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x197000) = 0x3208b97000
mmap(0x3208b9c000, 18600, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x3208b9c000
close(3)                                = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b089f8000
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b089f7000
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b089f6000
arch_prctl(ARCH_SET_FS, 0x7f5b089f7700) = 0
mprotect(0x3208e16000, 4096, PROT_READ) = 0
mprotect(0x3208602000, 4096, PROT_READ) = 0
mprotect(0x3216e01000, 4096, PROT_READ) = 0
mprotect(0x3209282000, 4096, PROT_READ) = 0
mprotect(0x3208b97000, 16384, PROT_READ) = 0
mprotect(0x320821f000, 4096, PROT_READ) = 0
munmap(0x7f5b089fb000, 80908)           = 0
set_tid_address(0x7f5b089f79d0)         = 12818
set_robust_list(0x7f5b089f79e0, 0x18)   = 0
futex(0x7fff529f1a9c, FUTEX_WAKE_PRIVATE, 1) = 0
futex(0x7fff529f1a9c, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 1, NULL, 7f5b089f7700) = -1 EAGAIN (Resource temporarily unavailable)
rt_sigaction(SIGRTMIN, {0x3208c05aa0, [], SA_RESTORER|SA_SIGINFO, 0x3208c0f4a0}, NULL, 8) = 0
rt_sigaction(SIGRT_1, {0x3208c05b30, [], SA_RESTORER|SA_RESTART|SA_SIGINFO, 0x3208c0f4a0}, 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
ioctl(0, SNDCTL_TMR_TIMEBASE or TCGETS, {B38400 opost isig icanon echo ...}) = 0
brk(0)                                  = 0x1b51000
brk(0x1b72000)                          = 0x1b72000
mmap(NULL, 266240, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b089b5000
open("/proc/meminfo", O_RDONLY)         = 3
fstat(3, {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b08a0e000
read(3, "MemTotal:        2314144 kB\nMemF"..., 1024) = 1024
close(3)                                = 0
munmap(0x7f5b08a0e000, 4096)            = 0
brk(0x1b9b000)                          = 0x1b9b000
fstat(0, {st_mode=S_IFCHR|0620, st_rdev=makedev(136, 1), ...}) = 0
fstat(0, {st_mode=S_IFCHR|0620, st_rdev=makedev(136, 1), ...}) = 0
fstat(1, {st_mode=S_IFCHR|0620, st_rdev=makedev(136, 1), ...}) = 0
fstat(2, {st_mode=S_IFCHR|0620, st_rdev=makedev(136, 1), ...}) = 0
readlink("/usr/bin/python", 0x7fff529ee770, 4096) = -1 EINVAL (Invalid argument)
stat("/usr/bin/Modules/Setup", 0x7fff529ee630) = -1 ENOENT (No such file or directory)
stat("/usr/bin/lib64/python2.6/os.py", 0x7fff529ee620) = -1 ENOENT (No such file or directory)
stat("/usr/bin/lib64/python2.6/os.pyc", 0x7fff529ee620) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/os.py", {st_mode=S_IFREG|0644, st_size=26338, ...}) = 0
stat("/usr/bin/Modules/Setup", 0x7fff529ee630) = -1 ENOENT (No such file or directory)
stat("/usr/bin/lib64/python2.6/lib-dynload", 0x7fff529ee6e0) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
mmap(NULL, 266240, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b08974000
rt_sigaction(SIGPIPE, {SIG_IGN, [], SA_RESTORER, 0x3208c0f4a0}, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGXFSZ, {SIG_IGN, [], SA_RESTORER, 0x3208c0f4a0}, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGHUP, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGINT, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGQUIT, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGILL, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGTRAP, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGABRT, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGBUS, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGFPE, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGKILL, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGUSR1, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGSEGV, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGUSR2, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGPIPE, NULL, {SIG_IGN, [], SA_RESTORER, 0x3208c0f4a0}, 8) = 0
rt_sigaction(SIGALRM, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGTERM, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGSTKFLT, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGCHLD, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGCONT, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGSTOP, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGTSTP, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGTTIN, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGTTOU, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGURG, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGXCPU, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGXFSZ, NULL, {SIG_IGN, [], SA_RESTORER, 0x3208c0f4a0}, 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, {0x321550d410, [], SA_RESTORER, 0x3208c0f4a0}, {SIG_DFL, [], 0}, 8) = 0
stat("/usr/lib64/python26.zip", 0x7fff529ea000) = -1 ENOENT (No such file or directory)
stat("/usr/lib64", {st_mode=S_IFDIR|0755, st_size=65536, ...}) = 0
stat("/usr/lib64/python26.zip", 0x7fff529ed080) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/", {st_mode=S_IFDIR|0755, st_size=20480, ...}) = 0
stat("/usr/lib64/python2.6/", {st_mode=S_IFDIR|0755, st_size=20480, ...}) = 0
stat("/usr/lib64/python2.6/site", 0x7fff529ed400) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/sitemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site.py", O_RDONLY) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=19187, ...}) = 0
open("/usr/lib64/python2.6/site.pyc", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=18825, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b08973000
read(4, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\6\0\0\0@\0\0\0sT\1\0\0d\0"..., 4096) = 4096
fstat(4, {st_mode=S_IFREG|0644, st_size=18825, ...}) = 0
read(4, ".3st\20\0\0\0gettotalrefcounts\10\0\0\0-py"..., 12288) = 12288
read(4, "v for traceback(\t\0\0\0t\r\0\0\0usercus"..., 4096) = 2441
read(4, "", 4096)                       = 0
close(4)                                = 0
munmap(0x7f5b08973000, 4096)            = 0
stat("/usr/lib64/python2.6/os", 0x7fff529e9df0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/os.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/osmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/os.py", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=26338, ...}) = 0
open("/usr/lib64/python2.6/os.pyc", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=26411, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b08973000
read(5, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\36\0\0\0@\0\0\0sH\7\0\0d\0"..., 4096) = 4096
fstat(5, {st_mode=S_IFREG|0644, st_size=26411, ...}) = 0
read(5, "y intermediate path segment (not"..., 20480) = 20480
read(5, "64/python2.6/os.pyt\24\0\0\0_make_sta"..., 4096) = 1835
read(5, "", 4096)                       = 0
close(5)                                = 0
munmap(0x7f5b08973000, 4096)            = 0
brk(0x1bbc000)                          = 0x1bbc000
stat("/usr/lib64/python2.6/posixpath", 0x7fff529e67e0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/posixpath.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/posixpathmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/posixpath.py", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=13119, ...}) = 0
open("/usr/lib64/python2.6/posixpath.pyc", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=11188, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b08973000
read(6, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0+\0\0\0@\0\0\0s\320\1\0\0d\0"..., 4096) = 4096
fstat(6, {st_mode=S_IFREG|0644, st_size=11188, ...}) = 0
read(6, "\0\0True(\2\0\0\0R0\0\0\0RB\0\0\0(\0\0\0\0(\0\0\0\0s"..., 4096) = 4096
read(6, "\0i\2\0d\3\0\203\1\0}\3\0|\3\0o+\0\1|\0\0i\2\0d\6\0\203\1\0"..., 4096) = 2996
read(6, "", 4096)                       = 0
close(6)                                = 0
munmap(0x7f5b08973000, 4096)            = 0
stat("/usr/lib64/python2.6/stat", 0x7fff529e31d0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/stat.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/statmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/stat.py", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=1718, ...}) = 0
open("/usr/lib64/python2.6/stat.pyc", O_RDONLY) = 7
fstat(7, {st_mode=S_IFREG|0644, st_size=2703, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b08973000
read(7, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\1\0\0\0@\0\0\0so\1\0\0d\0"..., 4096) = 2703
fstat(7, {st_mode=S_IFREG|0644, st_size=2703, ...}) = 0
read(7, "", 4096)                       = 0
close(7)                                = 0
munmap(0x7f5b08973000, 4096)            = 0
close(6)                                = 0
stat("/usr/lib64/python2.6/genericpath", 0x7fff529e31d0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/genericpath.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/genericpathmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/genericpath.py", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=3020, ...}) = 0
open("/usr/lib64/python2.6/genericpath.pyc", O_RDONLY) = 7
fstat(7, {st_mode=S_IFREG|0644, st_size=3292, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b08973000
read(7, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\n\0\0\0@\0\0\0s\221\0\0\0d\0"..., 4096) = 3292
fstat(7, {st_mode=S_IFREG|0644, st_size=3292, ...}) = 0
read(7, "", 4096)                       = 0
close(7)                                = 0
munmap(0x7f5b08973000, 4096)            = 0
close(6)                                = 0
stat("/usr/lib64/python2.6/warnings", 0x7fff529e31d0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/warnings.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/warningsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/warnings.py", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=14172, ...}) = 0
open("/usr/lib64/python2.6/warnings.pyc", O_RDONLY) = 7
fstat(7, {st_mode=S_IFREG|0644, st_size=13042, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b08973000
read(7, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\r\0\0\0@\0\0\0s3\2\0\0d\0"..., 4096) = 4096
fstat(7, {st_mode=S_IFREG|0644, st_size=13042, ...}) = 0
read(7, "\0\1Wq\7\0\4t\1\0j\n\0o\34\0\1\1}\2\0\1t\2\0i\3\0\4d\1\0"..., 8192) = 8192
read(7, "\0\0\0__exit__i\1\0\0s\10\0\0\0\0\1\n\1\24\1\17\1N(\t\0"..., 4096) = 754
read(7, "", 4096)                       = 0
mmap(NULL, 200704, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b08942000
close(7)                                = 0
munmap(0x7f5b08973000, 4096)            = 0
stat("/usr/lib64/python2.6/linecache", 0x7fff529dfbc0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/linecache.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/linecachemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/linecache.py", O_RDONLY) = 7
fstat(7, {st_mode=S_IFREG|0644, st_size=4128, ...}) = 0
open("/usr/lib64/python2.6/linecache.pyc", O_RDONLY) = 8
fstat(8, {st_mode=S_IFREG|0644, st_size=3268, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b08973000
read(8, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\5\0\0\0@\0\0\0sp\0\0\0d\0"..., 4096) = 3268
fstat(8, {st_mode=S_IFREG|0644, st_size=3268, ...}) = 0
read(8, "", 4096)                       = 0
close(8)                                = 0
munmap(0x7f5b08973000, 4096)            = 0
close(7)                                = 0
stat("/usr/lib64/python2.6/types", 0x7fff529dfbc0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/types.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/typesmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/types.py", O_RDONLY) = 7
fstat(7, {st_mode=S_IFREG|0644, st_size=2323, ...}) = 0
open("/usr/lib64/python2.6/types.pyc", O_RDONLY) = 8
fstat(8, {st_mode=S_IFREG|0644, st_size=2620, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b08973000
read(8, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\17\0\0\0@\0\0\0so\2\0\0d\0"..., 4096) = 2620
fstat(8, {st_mode=S_IFREG|0644, st_size=2620, ...}) = 0
read(8, "", 4096)                       = 0
close(8)                                = 0
munmap(0x7f5b08973000, 4096)            = 0
close(7)                                = 0
close(6)                                = 0
close(5)                                = 0
stat("/usr/lib64/python2.6/UserDict", 0x7fff529e67e0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/UserDict.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/UserDictmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/UserDict.py", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=5778, ...}) = 0
open("/usr/lib64/python2.6/UserDict.pyc", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=8892, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b08973000
read(6, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\4\0\0\0@\0\0\0sb\0\0\0d\0"..., 4096) = 4096
fstat(6, {st_mode=S_IFREG|0644, st_size=8892, ...}) = 0
read(6, "\0\0(\0\0\0\0(\0\0\0\0s \0\0\0/usr/lib64/pyth"..., 4096) = 4096
read(6, "|\1\0t\2\0\203\2\0o\26\0\1t\3\0|\1\0i\4\0\203\0\0\203\1\0}\1\0n"..., 4096) = 700
read(6, "", 4096)                       = 0
close(6)                                = 0
munmap(0x7f5b08973000, 4096)            = 0
stat("/usr/lib64/python2.6/_abcoll", 0x7fff529e31d0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_abcoll.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_abcollmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_abcoll.py", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=13913, ...}) = 0
open("/usr/lib64/python2.6/_abcoll.pyc", O_RDONLY) = 7
fstat(7, {st_mode=S_IFREG|0644, st_size=21300, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b08973000
read(7, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\22\0\0\0@\0\0\0sI\2\0\0d\0"..., 4096) = 4096
fstat(7, {st_mode=S_IFREG|0644, st_size=21300, ...}) = 0
read(7, "ll.pyt\f\0\0\0__contains__l\0\0\0s\2\0\0\0\0"..., 16384) = 16384
read(7, "\2\0\0\0\2\0\0\0\3\0\0\0C\0\0\0s\24\0\0\0|\0\0|\0\0i\0\0|\1"..., 4096) = 820
read(7, "", 4096)                       = 0
mmap(NULL, 266240, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b08901000
close(7)                                = 0
munmap(0x7f5b08973000, 4096)            = 0
stat("/usr/lib64/python2.6/abc", 0x7fff529dfbc0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/abc.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/abcmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/abc.py", O_RDONLY) = 7
fstat(7, {st_mode=S_IFREG|0644, st_size=7034, ...}) = 0
open("/usr/lib64/python2.6/abc.pyc", O_RDONLY) = 8
fstat(8, {st_mode=S_IFREG|0644, st_size=6071, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b08973000
read(8, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\3\0\0\0@\0\0\0sa\0\0\0d\0"..., 4096) = 4096
fstat(8, {st_mode=S_IFREG|0644, st_size=6071, ...}) = 0
read(8, "\0\4d\1\0|\0\0i\0\0|\0\0i\1\0f\2\0\26\2IJ|\1\0\4d\2\0t"..., 4096) = 1975
read(8, "", 4096)                       = 0
close(8)                                = 0
munmap(0x7f5b08973000, 4096)            = 0
close(7)                                = 0
close(6)                                = 0
close(5)                                = 0
brk(0x1bdd000)                          = 0x1bdd000
stat("/usr/lib64/python2.6/copy_reg", 0x7fff529e67e0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/copy_reg.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/copy_regmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/copy_reg.py", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=6800, ...}) = 0
open("/usr/lib64/python2.6/copy_reg.pyc", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=5178, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b08973000
read(6, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\10\0\0\0@\0\0\0s\330\0\0\0d\0"..., 4096) = 4096
fstat(6, {st_mode=S_IFREG|0644, st_size=5178, ...}) = 0
read(6, "already registered with code %ss"..., 4096) = 1082
read(6, "", 4096)                       = 0
close(6)                                = 0
munmap(0x7f5b08973000, 4096)            = 0
close(5)                                = 0
close(4)                                = 0
geteuid()                               = 0
getuid()                                = 0
getegid()                               = 0
getgid()                                = 0
stat("/root/.local/lib/python2.6/site-packages", 0x7fff529edc60) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
open("/usr/lib64/python2.6/site-packages", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = 4
fcntl(4, F_GETFD)                       = 0x1 (flags FD_CLOEXEC)
getdents(4, /* 131 entries */, 32768)   = 4728
getdents(4, /* 0 entries */, 32768)     = 0
close(4)                                = 0
open("/usr/lib64/python2.6/site-packages/pygst.pth", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=9, ...}) = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=9, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b08973000
read(4, "gst-0.10\n", 8192)             = 9
read(4, "", 4096)                       = 0
stat("/usr/lib64/python2.6/site-packages/gst-0.10", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
read(4, "", 8192)                       = 0
close(4)                                = 0
munmap(0x7f5b08973000, 4096)            = 0
open("/usr/lib64/python2.6/site-packages/pygtk.pth", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=8, ...}) = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=8, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b08973000
read(4, "gtk-2.0\n", 8192)              = 8
read(4, "", 4096)                       = 0
stat("/usr/lib64/python2.6/site-packages/gtk-2.0", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
read(4, "", 8192)                       = 0
close(4)                                = 0
munmap(0x7f5b08973000, 4096)            = 0
open("/usr/lib64/python2.6/site-packages/webkit-1.0.pth", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=11, ...}) = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=11, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b08973000
read(4, "webkit-1.0\n", 8192)           = 11
read(4, "", 4096)                       = 0
stat("/usr/lib64/python2.6/site-packages/webkit-1.0", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
read(4, "", 8192)                       = 0
close(4)                                = 0
munmap(0x7f5b08973000, 4096)            = 0
stat("/usr/lib/python2.6/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
open("/usr/lib/python2.6/site-packages", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = 4
getdents(4, /* 77 entries */, 32768)    = 3048
getdents(4, /* 0 entries */, 32768)     = 0
close(4)                                = 0
open("/usr/lib/python2.6/site-packages/abrt.pth", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=30, ...}) = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=30, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b08973000
read(4, "import abrt_exception_handler\n", 8192) = 30
read(4, "", 4096)                       = 0
brk(0x1bfe000)                          = 0x1bfe000
brk(0x1bf6000)                          = 0x1bf6000
brk(0x1bf5000)                          = 0x1bf5000
stat("/usr/lib64/python2.6", {st_mode=S_IFDIR|0755, st_size=20480, ...}) = 0
stat("/usr/lib64/python2.6", {st_mode=S_IFDIR|0755, st_size=20480, ...}) = 0
stat("/usr/lib64/python2.6/abrt_exception_handler", 0x7fff529e9400) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/abrt_exception_handler.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/abrt_exception_handlermodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/abrt_exception_handler.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/abrt_exception_handler.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/plat-linux2", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python2.6/plat-linux2", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python2.6/plat-linux2/abrt_exception_handler", 0x7fff529e9400) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/abrt_exception_handler.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/abrt_exception_handlermodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/abrt_exception_handler.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/abrt_exception_handler.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/lib-tk", 0x7fff529e6000) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6", {st_mode=S_IFDIR|0755, st_size=20480, ...}) = 0
stat("/usr/lib64/python2.6/lib-tk", 0x7fff529e9080) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/lib-old", 0x7fff529e6000) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6", {st_mode=S_IFDIR|0755, st_size=20480, ...}) = 0
stat("/usr/lib64/python2.6/lib-old", 0x7fff529e9080) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python2.6/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python2.6/lib-dynload/abrt_exception_handler", 0x7fff529e9400) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/abrt_exception_handler.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/abrt_exception_handlermodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/abrt_exception_handler.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/abrt_exception_handler.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python2.6/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python2.6/site-packages/abrt_exception_handler", 0x7fff529e9400) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/abrt_exception_handler.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/abrt_exception_handlermodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/abrt_exception_handler.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/abrt_exception_handler.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/gst-0.10", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python2.6/site-packages/gst-0.10", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python2.6/site-packages/gst-0.10/abrt_exception_handler", 0x7fff529e9400) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gst-0.10/abrt_exception_handler.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gst-0.10/abrt_exception_handlermodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gst-0.10/abrt_exception_handler.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gst-0.10/abrt_exception_handler.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/gtk-2.0", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python2.6/site-packages/gtk-2.0", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python2.6/site-packages/gtk-2.0/abrt_exception_handler", 0x7fff529e9400) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gtk-2.0/abrt_exception_handler.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gtk-2.0/abrt_exception_handlermodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gtk-2.0/abrt_exception_handler.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gtk-2.0/abrt_exception_handler.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/webkit-1.0", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python2.6/site-packages/webkit-1.0", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python2.6/site-packages/webkit-1.0/abrt_exception_handler", 0x7fff529e9400) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/webkit-1.0/abrt_exception_handler.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/webkit-1.0/abrt_exception_handlermodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/webkit-1.0/abrt_exception_handler.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/webkit-1.0/abrt_exception_handler.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python2.6/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python2.6/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python2.6/site-packages/abrt_exception_handler", 0x7fff529e9400) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/abrt_exception_handler.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/abrt_exception_handlermodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/abrt_exception_handler.py", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=5680, ...}) = 0
open("/usr/lib/python2.6/site-packages/abrt_exception_handler.pyc", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=3727, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b08a0e000
read(6, "\321\362\r\n\36\35\350Nc\0\0\0\0\0\0\0\0\10\0\0\0@\0\0\0s\232\0\0\0d\0"..., 4096) = 3727
fstat(6, {st_mode=S_IFREG|0644, st_size=3727, ...}) = 0
read(6, "", 4096)                       = 0
close(6)                                = 0
munmap(0x7f5b08a0e000, 4096)            = 0
stat("/usr/lib64/python2.6/socket", 0x7fff529e5df0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/socket.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/socketmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/socket.py", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=20149, ...}) = 0
open("/usr/lib64/python2.6/socket.pyc", O_RDONLY) = 7
fstat(7, {st_mode=S_IFREG|0644, st_size=16129, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b08a0e000
read(7, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0!\0\0\0@\0\0\0sS\3\0\0d\0"..., 4096) = 4096
fstat(7, {st_mode=S_IFREG|0644, st_size=16129, ...}) = 0
read(7, "o\7\0\1\1\1\1n;\0\1X|\2\0i\4\0d\2\0|\1\0\203\2\0\1x&\0|"..., 8192) = 8192
read(7, "\0\1t\6\0\203\0\0|\0\0_\0\0|\0\0i\0\0i\7\0|\2\0i\10\0\203\0\0"..., 4096) = 3841
read(7, "", 4096)                       = 0
close(7)                                = 0
munmap(0x7f5b08a0e000, 4096)            = 0
stat("/usr/lib64/python2.6/_socket", 0x7fff529e27e0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_socket.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_socketmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_socket.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_socket.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/plat-linux2/_socket", 0x7fff529e27e0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/_socket.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/_socketmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/_socket.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/_socket.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/lib-dynload/_socket", 0x7fff529e27e0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/_socket.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/_socketmodule.so", O_RDONLY) = 7
fstat(7, {st_mode=S_IFREG|0555, st_size=60752, ...}) = 0
futex(0x32086030ec, FUTEX_WAKE_PRIVATE, 2147483647) = 0
open("/usr/lib64/python2.6/lib-dynload/_socketmodule.so", O_RDONLY) = 8
read(8, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0201\0\0\0\0\0\0"..., 832) = 832
fstat(8, {st_mode=S_IFREG|0555, st_size=60752, ...}) = 0
mmap(NULL, 2155960, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 8, 0) = 0x7f5b086f2000
mprotect(0x7f5b086fd000, 2097152, PROT_NONE) = 0
mmap(0x7f5b088fd000, 16384, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0xb000) = 0x7f5b088fd000
close(8)                                = 0
close(7)                                = 0
stat("/usr/lib64/python2.6/_ssl", 0x7fff529e27e0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_ssl.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_sslmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_ssl.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_ssl.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/plat-linux2/_ssl", 0x7fff529e27e0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/_ssl.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/_sslmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/_ssl.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/_ssl.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/lib-dynload/_ssl", 0x7fff529e27e0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/_ssl.so", O_RDONLY) = 7
fstat(7, {st_mode=S_IFREG|0555, st_size=33216, ...}) = 0
open("/usr/lib64/python2.6/lib-dynload/_ssl.so", O_RDONLY) = 8
read(8, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\2000\0\0\0\0\0\0"..., 832) = 832
fstat(8, {st_mode=S_IFREG|0555, st_size=33216, ...}) = 0
mmap(NULL, 2128440, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 8, 0) = 0x7f5b084ea000
mprotect(0x7f5b084f1000, 2093056, PROT_NONE) = 0
mmap(0x7f5b086f0000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0x6000) = 0x7f5b086f0000
close(8)                                = 0
open("/etc/ld.so.cache", O_RDONLY)      = 8
fstat(8, {st_mode=S_IFREG|0644, st_size=80908, ...}) = 0
mmap(NULL, 80908, PROT_READ, MAP_PRIVATE, 8, 0) = 0x7f5b089fb000
close(8)                                = 0
open("/usr/lib64/libssl.so.10", O_RDONLY) = 8
read(8, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0pE\301\0272\0\0\0"..., 832) = 832
fstat(8, {st_mode=S_IFREG|0755, st_size=375352, ...}) = 0
mmap(0x3217c00000, 2467888, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 8, 0) = 0x3217c00000
mprotect(0x3217c53000, 2097152, PROT_NONE) = 0
mmap(0x3217e53000, 32768, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0x53000) = 0x3217e53000
close(8)                                = 0
open("/usr/lib64/libcrypto.so.10", O_RDONLY) = 8
read(8, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\312E\0252\0\0\0"..., 832) = 832
fstat(8, {st_mode=S_IFREG|0755, st_size=1661232, ...}) = 0
mmap(0x3215400000, 3769480, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 8, 0) = 0x7f5b08151000
mprotect(0x7f5b082c4000, 2093056, PROT_NONE) = 0
mmap(0x7f5b084c3000, 143360, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0x172000) = 0x7f5b084c3000
mmap(0x7f5b084e6000, 13448, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f5b084e6000
close(8)                                = 0
open("/lib64/libgssapi_krb5.so.2", O_RDONLY) = 8
read(8, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\200\235\0\0262\0\0\0"..., 832) = 832
fstat(8, {st_mode=S_IFREG|0755, st_size=272360, ...}) = 0
mmap(0x3216000000, 2365152, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 8, 0) = 0x3216000000
mprotect(0x321603f000, 2097152, PROT_NONE) = 0
mmap(0x321623f000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0x3f000) = 0x321623f000
close(8)                                = 0
open("/lib64/libkrb5.so.3", O_RDONLY)   = 8
read(8, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\20\246\301\0242\0\0\0"..., 832) = 832
fstat(8, {st_mode=S_IFREG|0755, st_size=915736, ...}) = 0
mmap(0x3214c00000, 3008864, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 8, 0) = 0x3214c00000
mprotect(0x3214cd4000, 2097152, PROT_NONE) = 0
mmap(0x3214ed4000, 45056, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0xd4000) = 0x3214ed4000
close(8)                                = 0
open("/lib64/libcom_err.so.2", O_RDONLY) = 8
read(8, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\360\23\200\0232\0\0\0"..., 832) = 832
fstat(8, {st_mode=S_IFREG|0755, st_size=17256, ...}) = 0
mmap(0x3213800000, 2109872, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 8, 0) = 0x3213800000
mprotect(0x3213803000, 2093056, PROT_NONE) = 0
mmap(0x3213a02000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0x2000) = 0x3213a02000
close(8)                                = 0
open("/lib64/libk5crypto.so.3", O_RDONLY) = 8
read(8, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\300G@\0242\0\0\0"..., 832) = 832
fstat(8, {st_mode=S_IFREG|0755, st_size=181632, ...}) = 0
mmap(0x3214400000, 2275296, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 8, 0) = 0x3214400000
mprotect(0x321442a000, 2093056, PROT_NONE) = 0
mmap(0x3214629000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0x29000) = 0x3214629000
close(8)                                = 0
open("/lib64/libz.so.1", O_RDONLY)      = 8
read(8, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0000\37\200\t2\0\0\0"..., 832) = 832
fstat(8, {st_mode=S_IFREG|0755, st_size=90952, ...}) = 0
mmap(0x3209800000, 2183696, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 8, 0) = 0x3209800000
mprotect(0x3209815000, 2093056, PROT_NONE) = 0
mmap(0x3209a14000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0x14000) = 0x3209a14000
close(8)                                = 0
open("/lib64/libkrb5support.so.0", O_RDONLY) = 8
read(8, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0@(\200\0252\0\0\0"..., 832) = 832
fstat(8, {st_mode=S_IFREG|0755, st_size=46336, ...}) = 0
mmap(0x3215800000, 2139184, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 8, 0) = 0x3215800000
mprotect(0x321580a000, 2093056, PROT_NONE) = 0
mmap(0x3215a09000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0x9000) = 0x3215a09000
close(8)                                = 0
open("/lib64/libkeyutils.so.1", O_RDONLY) = 8
read(8, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\360\v\0\0242\0\0\0"..., 832) = 832
fstat(8, {st_mode=S_IFREG|0755, st_size=12592, ...}) = 0
mmap(0x3214000000, 2105424, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 8, 0) = 0x3214000000
mprotect(0x3214002000, 2093056, PROT_NONE) = 0
mmap(0x3214201000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0x1000) = 0x3214201000
close(8)                                = 0
open("/lib64/libresolv.so.2", O_RDONLY) = 8
read(8, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\00009@\n2\0\0\0"..., 832) = 832
fstat(8, {st_mode=S_IFREG|0755, st_size=113952, ...}) = 0
mmap(0x320a400000, 2202248, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 8, 0) = 0x320a400000
mprotect(0x320a416000, 2097152, PROT_NONE) = 0
mmap(0x320a616000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0x16000) = 0x320a616000
mmap(0x320a618000, 6792, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x320a618000
close(8)                                = 0
open("/lib64/libselinux.so.1", O_RDONLY) = 8
read(8, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0PX\0\n2\0\0\0"..., 832) = 832
fstat(8, {st_mode=S_IFREG|0755, st_size=124624, ...}) = 0
mmap(0x320a000000, 2221912, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 8, 0) = 0x320a000000
mprotect(0x320a01d000, 2093056, PROT_NONE) = 0
mmap(0x320a21c000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0x1c000) = 0x320a21c000
mmap(0x320a21e000, 1880, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x320a21e000
close(8)                                = 0
mprotect(0x320a21c000, 4096, PROT_READ) = 0
mprotect(0x320a616000, 4096, PROT_READ) = 0
mprotect(0x3214201000, 4096, PROT_READ) = 0
mprotect(0x3215a09000, 4096, PROT_READ) = 0
mprotect(0x3209a14000, 4096, PROT_READ) = 0
mprotect(0x3214629000, 8192, PROT_READ) = 0
mprotect(0x3213a02000, 4096, PROT_READ) = 0
mprotect(0x3214ed4000, 36864, PROT_READ) = 0
mprotect(0x321623f000, 4096, PROT_READ) = 0
mprotect(0x7f5b084c3000, 102400, PROT_READ) = 0
mprotect(0x3217e53000, 12288, PROT_READ) = 0
statfs("/selinux", {f_type=0xf97cff8c, f_bsize=4096, f_blocks=0, f_bfree=0, f_bavail=0, f_files=0, f_ffree=0, f_fsid={0, 0}, f_namelen=255, f_frsize=4096}) = 0
munmap(0x7f5b089fb000, 80908)           = 0
brk(0x1c16000)                          = 0x1c16000
open("/proc/sys/crypto/fips_enabled", O_RDONLY) = -1 ENOENT (No such file or directory)
close(7)                                = 0
stat("/usr/lib64/python2.6/cStringIO", 0x7fff529e27e0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/cStringIO.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/cStringIOmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/cStringIO.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/cStringIO.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/plat-linux2/cStringIO", 0x7fff529e27e0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/cStringIO.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/cStringIOmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/cStringIO.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/cStringIO.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/lib-dynload/cStringIO", 0x7fff529e27e0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/cStringIO.so", O_RDONLY) = 7
fstat(7, {st_mode=S_IFREG|0555, st_size=20112, ...}) = 0
open("/usr/lib64/python2.6/lib-dynload/cStringIO.so", O_RDONLY) = 8
read(8, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\240\32\0\0\0\0\0\0"..., 832) = 832
fstat(8, {st_mode=S_IFREG|0555, st_size=20112, ...}) = 0
mmap(NULL, 2115288, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 8, 0) = 0x7f5b07f4c000
mprotect(0x7f5b07f50000, 2093056, PROT_NONE) = 0
mmap(0x7f5b0814f000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0x3000) = 0x7f5b0814f000
close(8)                                = 0
close(7)                                = 0
brk(0x1c38000)                          = 0x1c38000
brk(0x1c2f000)                          = 0x1c2f000
close(6)                                = 0
close(5)                                = 0
read(4, "", 8192)                       = 0
close(4)                                = 0
munmap(0x7f5b08973000, 4096)            = 0
stat("/usr/lib/site-python", 0x7fff529edc60) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/sitecustomize", 0x7fff529e9b10) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/sitecustomize.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/sitecustomizemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/sitecustomize.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/sitecustomize.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/plat-linux2/sitecustomize", 0x7fff529e9b10) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/sitecustomize.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/sitecustomizemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/sitecustomize.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/sitecustomize.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/lib-dynload/sitecustomize", 0x7fff529e9b10) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/sitecustomize.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/sitecustomizemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/sitecustomize.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/sitecustomize.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/sitecustomize", 0x7fff529e9b10) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/sitecustomize.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/sitecustomizemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/sitecustomize.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/sitecustomize.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/gst-0.10/sitecustomize", 0x7fff529e9b10) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gst-0.10/sitecustomize.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gst-0.10/sitecustomizemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gst-0.10/sitecustomize.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gst-0.10/sitecustomize.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/gtk-2.0/sitecustomize", 0x7fff529e9b10) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gtk-2.0/sitecustomize.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gtk-2.0/sitecustomizemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gtk-2.0/sitecustomize.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gtk-2.0/sitecustomize.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/webkit-1.0/sitecustomize", 0x7fff529e9b10) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/webkit-1.0/sitecustomize.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/webkit-1.0/sitecustomizemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/webkit-1.0/sitecustomize.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/webkit-1.0/sitecustomize.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python2.6/site-packages/sitecustomize", 0x7fff529e9b10) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/sitecustomize.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/sitecustomizemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/sitecustomize.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/sitecustomize.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/usercustomize", 0x7fff529e9b10) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/usercustomize.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/usercustomizemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/usercustomize.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/usercustomize.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/plat-linux2/usercustomize", 0x7fff529e9b10) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/usercustomize.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/usercustomizemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/usercustomize.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/usercustomize.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/lib-dynload/usercustomize", 0x7fff529e9b10) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/usercustomize.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/usercustomizemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/usercustomize.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/usercustomize.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/usercustomize", 0x7fff529e9b10) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/usercustomize.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/usercustomizemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/usercustomize.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/usercustomize.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/gst-0.10/usercustomize", 0x7fff529e9b10) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gst-0.10/usercustomize.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gst-0.10/usercustomizemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gst-0.10/usercustomize.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gst-0.10/usercustomize.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/gtk-2.0/usercustomize", 0x7fff529e9b10) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gtk-2.0/usercustomize.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gtk-2.0/usercustomizemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gtk-2.0/usercustomize.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gtk-2.0/usercustomize.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/webkit-1.0/usercustomize", 0x7fff529e9b10) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/webkit-1.0/usercustomize.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/webkit-1.0/usercustomizemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/webkit-1.0/usercustomize.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/webkit-1.0/usercustomize.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python2.6/site-packages/usercustomize", 0x7fff529e9b10) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/usercustomize.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/usercustomizemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/usercustomize.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/usercustomize.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
close(3)                                = 0
open("/usr/lib/locale/locale-archive", O_RDONLY) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=99158704, ...}) = 0
mmap(NULL, 99158704, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f5b020bb000
close(3)                                = 0
stat("/usr/lib64/python2.6/encodings", {st_mode=S_IFDIR|0755, st_size=16384, ...}) = 0
stat("/usr/lib64/python2.6/encodings/__init__.py", {st_mode=S_IFREG|0644, st_size=5638, ...}) = 0
stat("/usr/lib64/python2.6/encodings/__init__", 0x7fff529ec500) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/encodings/__init__.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/encodings/__init__module.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/encodings/__init__.py", O_RDONLY) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=5638, ...}) = 0
open("/usr/lib64/python2.6/encodings/__init__.pyc", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=4416, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b08a0e000
read(4, "\321\362\r\n!\321\337Nc\0\0\0\0\0\0\0\0\6\0\0\0@\0\0\0s\216\0\0\0d\0"..., 4096) = 4096
fstat(4, {st_mode=S_IFREG|0644, st_size=4416, ...}) = 0
read(4, "\3\23\1\r\1\16\1\5\2\5\2\6\2\3\1\r\1\16\2\v\2\r\2\n\1\5\3\t\1\23\1$"..., 4096) = 320
read(4, "", 4096)                       = 0
close(4)                                = 0
munmap(0x7f5b08a0e000, 4096)            = 0
stat("/usr/lib64/python2.6/encodings", {st_mode=S_IFDIR|0755, st_size=16384, ...}) = 0
stat("/usr/lib64/python2.6/encodings", {st_mode=S_IFDIR|0755, st_size=16384, ...}) = 0
stat("/usr/lib64/python2.6/encodings/codecs", 0x7fff529e8ef0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/encodings/codecs.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/encodings/codecsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/encodings/codecs.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/encodings/codecs.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/codecs", 0x7fff529e8ef0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/codecs.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/codecsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/codecs.py", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=35266, ...}) = 0
open("/usr/lib64/python2.6/codecs.pyc", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=36721, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b08a0e000
read(5, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\36\0\0\0@\0\0\0sA\3\0\0d\0"..., 4096) = 4096
fstat(5, {st_mode=S_IFREG|0644, st_size=36721, ...}) = 0
read(5, "\0\0\0C\0\0\0s\n\0\0\0t\0\0\202\1\0d\1\0S(\2\0\0\0s\372\2\0\0"..., 28672) = 28672
read(5, " incremental encoder.\n\n    N(\4\0\0"..., 4096) = 3953
read(5, "", 4096)                       = 0
close(5)                                = 0
munmap(0x7f5b08a0e000, 4096)            = 0
close(4)                                = 0
stat("/usr/lib64/python2.6/encodings/encodings", 0x7fff529e8ef0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/encodings/encodings.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/encodings/encodingsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/encodings/encodings.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/encodings/encodings.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/encodings/aliases", 0x7fff529e8ee0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/encodings/aliases.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/encodings/aliasesmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/encodings/aliases.py", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=14721, ...}) = 0
open("/usr/lib64/python2.6/encodings/aliases.pyc", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=8701, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b08a0e000
read(5, "\321\362\r\n!\321\337Nc\0\0\0\0\0\0\0\0\3\0\0\0@\0\0\0s`\10\0\0d\0"..., 4096) = 4096
fstat(5, {st_mode=S_IFREG|0644, st_size=8701, ...}) = 0
read(5, "ibm861t\5\0\0\0cp862t\3\0\0\000862t\22\0\0\0csp"..., 4096) = 4096
read(5, "\1\7\3\7\1\7\1\7\1\7\3\7\1\7\1\7\3\7\1\7\1\7\1\7\1\7\3\7\1\7\1\7"..., 4096) = 509
read(5, "", 4096)                       = 0
close(5)                                = 0
munmap(0x7f5b08a0e000, 4096)            = 0
close(4)                                = 0
stat("/usr/lib64/python2.6/encodings/__builtin__", 0x7fff529e8ef0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/encodings/__builtin__.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/encodings/__builtin__module.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/encodings/__builtin__.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/encodings/__builtin__.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
close(3)                                = 0
stat("/usr/lib64/python2.6/encodings/utf_8", 0x7fff529ed220) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/encodings/utf_8.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/encodings/utf_8module.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/encodings/utf_8.py", O_RDONLY) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=1005, ...}) = 0
open("/usr/lib64/python2.6/encodings/utf_8.pyc", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=1966, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b08a0e000
read(4, "\321\362\r\n\"\321\337Nc\0\0\0\0\0\0\0\0\4\0\0\0@\0\0\0s\230\0\0\0d\0"..., 4096) = 1966
fstat(4, {st_mode=S_IFREG|0644, st_size=1966, ...}) = 0
read(4, "", 4096)                       = 0
close(4)                                = 0
munmap(0x7f5b08a0e000, 4096)            = 0
close(3)                                = 0
ioctl(0, SNDCTL_TMR_TIMEBASE or TCGETS, {B38400 opost isig icanon echo ...}) = 0
ioctl(1, SNDCTL_TMR_TIMEBASE or TCGETS, {B38400 opost isig icanon echo ...}) = 0
ioctl(2, SNDCTL_TMR_TIMEBASE or TCGETS, {B38400 opost isig icanon echo ...}) = 0
readlink("/usr/bin/virt-install", 0x7fff529ef8d0, 4096) = -1 EINVAL (Invalid argument)
lstat("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/bin", {st_mode=S_IFDIR|0755, st_size=69632, ...}) = 0
lstat("/usr/bin/virt-install", {st_mode=S_IFREG|0755, st_size=36737, ...}) = 0
stat("/usr/bin/virt-install", {st_mode=S_IFREG|0755, st_size=36737, ...}) = 0
open("/usr/bin/virt-install", O_RDONLY) = 3
fstat(3, {st_mode=S_IFREG|0755, st_size=36737, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b08a0e000
fstat(3, {st_mode=S_IFREG|0755, st_size=36737, ...}) = 0
lseek(3, 32768, SEEK_SET)               = 32768
read(3, "apic\",\n                    defau"..., 3947) = 3947
read(3, "\n        fail(main_e)\n", 4096) = 22
close(3)                                = 0
munmap(0x7f5b08a0e000, 4096)            = 0
stat("/usr/bin/virt-install", {st_mode=S_IFREG|0755, st_size=36737, ...}) = 0
open("/usr/bin/virt-install", O_RDONLY) = 3
fstat(3, {st_mode=S_IFREG|0755, st_size=36737, ...}) = 0
ioctl(3, SNDCTL_TMR_TIMEBASE or TCGETS, 0x7fff529f1860) = -1 ENOTTY (Inappropriate ioctl for device)
fstat(3, {st_mode=S_IFREG|0755, st_size=36737, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b08a0e000
lseek(3, 0, SEEK_CUR)                   = 0
read(3, "#!/usr/bin/python -tt\n#\n# Script"..., 4096) = 4096
lseek(3, 4096, SEEK_SET)                = 4096
mmap(NULL, 266240, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b0207a000
read(3, "esystem device parameters: %s\") "..., 4096) = 4096
brk(0x1c50000)                          = 0x1c50000
mmap(NULL, 266240, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b02039000
read(3, "thod '%s', hv type '%s'.\" %\n    "..., 4096) = 4096
read(3, "lse) and\n        options.diskopt"..., 4096) = 4096
mmap(NULL, 266240, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b01ff8000
read(3, "ions.filesystems, guest)\n    cli"..., 4096) = 4096
mmap(NULL, 266240, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b01fb7000
read(3, " wait_on_install\n\n    # --wait 0"..., 4096) = 4096
read(3, "ception, e:\n                rais"..., 4096) = 4096
mmap(NULL, 266240, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b01f76000
read(3, " a Live CD\"))\n    insg.add_optio"..., 4096) = 4096
mmap(NULL, 266240, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b01f35000
read(3, "apic\",\n                    defau"..., 4096) = 3969
read(3, "", 4096)                       = 0
brk(0x1c71000)                          = 0x1c71000
brk(0x1c95000)                          = 0x1c95000
munmap(0x7f5b01f76000, 266240)          = 0
munmap(0x7f5b01fb7000, 266240)          = 0
munmap(0x7f5b01ff8000, 266240)          = 0
munmap(0x7f5b02039000, 266240)          = 0
munmap(0x7f5b0207a000, 266240)          = 0
close(3)                                = 0
munmap(0x7f5b08a0e000, 4096)            = 0
stat("/usr/bin", {st_mode=S_IFDIR|0755, st_size=69632, ...}) = 0
stat("/usr/bin", {st_mode=S_IFDIR|0755, st_size=69632, ...}) = 0
stat("/usr/bin/time", {st_mode=S_IFREG|0755, st_size=17944, ...}) = 0
open("/usr/bin/time.so", O_RDONLY)      = -1 ENOENT (No such file or directory)
open("/usr/bin/timemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/time.py", O_RDONLY)      = -1 ENOENT (No such file or directory)
open("/usr/bin/time.pyc", O_RDONLY)     = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/time", 0x7fff529ed240) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/time.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/timemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/time.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/time.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/plat-linux2/time", 0x7fff529ed240) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/time.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/timemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/time.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/time.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/lib-dynload/time", 0x7fff529ed240) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/time.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/timemodule.so", O_RDONLY) = 3
fstat(3, {st_mode=S_IFREG|0555, st_size=20328, ...}) = 0
open("/usr/lib64/python2.6/lib-dynload/timemodule.so", O_RDONLY) = 4
read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\320\30\0\0\0\0\0\0"..., 832) = 832
fstat(4, {st_mode=S_IFREG|0555, st_size=20328, ...}) = 0
mmap(NULL, 2115944, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f5b01d30000
mprotect(0x7f5b01d33000, 2097152, PROT_NONE) = 0
mmap(0x7f5b01f33000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x3000) = 0x7f5b01f33000
close(4)                                = 0
time(NULL)                              = 1331923161
open("/etc/localtime", O_RDONLY)        = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=3543, ...}) = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=3543, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b08a0e000
read(4, "TZif2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\5\0\0\0\5\0\0\0\0"..., 4096) = 3543
lseek(4, -2264, SEEK_CUR)               = 1279
read(4, "TZif2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\6\0\0\0\6\0\0\0\0"..., 4096) = 2264
close(4)                                = 0
munmap(0x7f5b08a0e000, 4096)            = 0
stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=3543, ...}) = 0
close(3)                                = 0
stat("/usr/bin/re", 0x7fff529ed240)     = -1 ENOENT (No such file or directory)
open("/usr/bin/re.so", O_RDONLY)        = -1 ENOENT (No such file or directory)
open("/usr/bin/remodule.so", O_RDONLY)  = -1 ENOENT (No such file or directory)
open("/usr/bin/re.py", O_RDONLY)        = -1 ENOENT (No such file or directory)
open("/usr/bin/re.pyc", O_RDONLY)       = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/re", 0x7fff529ed240) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/re.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/remodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/re.py", O_RDONLY) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=12966, ...}) = 0
open("/usr/lib64/python2.6/re.pyc", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=13164, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b08a0e000
read(4, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\32\0\0\0@\0\0\0s8\2\0\0d\0"..., 4096) = 4096
fstat(4, {st_mode=S_IFREG|0644, st_size=13164, ...}) = 0
read(4, "ions:\n    match    Match a regul"..., 8192) = 8192
read(4, "\0\0\0mt\1\0\0\0jRR\0\0\0(\0\0\0\0(\0\0\0\0s\32\0\0\0/u"..., 4096) = 876
read(4, "", 4096)                       = 0
close(4)                                = 0
munmap(0x7f5b08a0e000, 4096)            = 0
stat("/usr/bin/sre_compile", 0x7fff529e9c30) = -1 ENOENT (No such file or directory)
open("/usr/bin/sre_compile.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/sre_compilemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/sre_compile.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/sre_compile.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/sre_compile", 0x7fff529e9c30) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/sre_compile.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/sre_compilemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/sre_compile.py", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=16507, ...}) = 0
open("/usr/lib64/python2.6/sre_compile.pyc", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=11483, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b08a0e000
read(5, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\v\0\0\0@\0\0\0sz\1\0\0d\0"..., 4096) = 4096
fstat(5, {st_mode=S_IFREG|0644, st_size=11483, ...}) = 0
read(5, "pt\2\0\0\0lot\2\0\0\0hit\4\0\0\0tailt\n\0\0\0tai"..., 4096) = 4096
read(5, "yR\37\0\0\0h\1\0\0s\10\0\0\0\0\2\26\1\32\1\r\1c\3\0\0\0\24\0\0\0"..., 4096) = 3291
read(5, "", 4096)                       = 0
close(5)                                = 0
munmap(0x7f5b08a0e000, 4096)            = 0
stat("/usr/bin/sre_parse", 0x7fff529e6620) = -1 ENOENT (No such file or directory)
open("/usr/bin/sre_parse.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/sre_parsemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/sre_parse.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/sre_parse.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/sre_parse", 0x7fff529e6620) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/sre_parse.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/sre_parsemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/sre_parse.py", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=26878, ...}) = 0
open("/usr/lib64/python2.6/sre_parse.pyc", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=19696, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b08a0e000
read(6, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\6\0\0\0@\0\0\0s\323\2\0\0d\0"..., 4096) = 4096
fstat(6, {st_mode=S_IFREG|0644, st_size=19696, ...}) = 0
read(6, "\0\0R6\0\0\0(\0\0\0\0(\0\0\0\0s!\0\0\0/usr/lib64"..., 12288) = 12288
read(6, "\0t\3\0\0\0strR\211\0\0\0R\26\0\0\0R\27\0\0\0t\16\0\0\0SRE"..., 4096) = 3312
read(6, "", 4096)                       = 0
close(6)                                = 0
munmap(0x7f5b08a0e000, 4096)            = 0
stat("/usr/bin/sre_constants", 0x7fff529e3010) = -1 ENOENT (No such file or directory)
open("/usr/bin/sre_constants.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/sre_constantsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/sre_constants.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/sre_constants.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/sre_constants", 0x7fff529e3010) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/sre_constants.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/sre_constantsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/sre_constants.py", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=7137, ...}) = 0
open("/usr/lib64/python2.6/sre_constants.pyc", O_RDONLY) = 7
fstat(7, {st_mode=S_IFREG|0644, st_size=6093, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b08a0e000
read(7, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0 \0\0\0@\0\0\0s\361\4\0\0d\0"..., 4096) = 4096
fstat(7, {st_mode=S_IFREG|0644, st_size=6093, ...}) = 0
read(7, "d\nt\4\0\0\0doneN(`\0\0\0t\7\0\0\0__doc__t\5\0"..., 4096) = 1997
read(7, "", 4096)                       = 0
close(7)                                = 0
munmap(0x7f5b08a0e000, 4096)            = 0
close(6)                                = 0
close(5)                                = 0
close(4)                                = 0
close(3)                                = 0
stat("/usr/bin/logging", 0x7fff529ed240) = -1 ENOENT (No such file or directory)
open("/usr/bin/logging.so", O_RDONLY)   = -1 ENOENT (No such file or directory)
open("/usr/bin/loggingmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/logging.py", O_RDONLY)   = -1 ENOENT (No such file or directory)
open("/usr/bin/logging.pyc", O_RDONLY)  = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/logging", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python2.6/logging/__init__.py", {st_mode=S_IFREG|0644, st_size=53688, ...}) = 0
stat("/usr/lib64/python2.6/logging/__init__", 0x7fff529ec1e0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/__init__.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/__init__module.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/__init__.py", O_RDONLY) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=53688, ...}) = 0
open("/usr/lib64/python2.6/logging/__init__.pyc", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=51971, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b08a0e000
read(4, "\321\362\r\n\"\321\337Nc\0\0\0\0\0\0\0\0#\0\0\0@\0\0\0s\3\5\0\0d\0"..., 4096) = 4096
fstat(4, {st_mode=S_IFREG|0644, st_size=51971, ...}) = 0
read(4, " acquired by calling _acquireLoc"..., 45056) = 45056
read(4, "\0\3\0\0\0O\0\0\0s<\0\0\0t\0\0t\1\0i\2\0\203\1\0d\1\0j\2\0"..., 4096) = 2819
read(4, "", 4096)                       = 0
close(4)                                = 0
munmap(0x7f5b08a0e000, 4096)            = 0
stat("/usr/lib64/python2.6/logging", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python2.6/logging", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python2.6/logging/sys", 0x7fff529e8bd0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/sys.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/sysmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/sys.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/sys.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/logging/os", 0x7fff529e8bd0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/os.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/osmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/os.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/os.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/logging/types", 0x7fff529e8bd0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/types.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/typesmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/types.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/types.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/logging/time", 0x7fff529e8bd0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/time.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/timemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/time.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/time.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/logging/string", 0x7fff529e8bd0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/string.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/stringmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/string.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/string.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/bin/string", 0x7fff529e8bd0) = -1 ENOENT (No such file or directory)
open("/usr/bin/string.so", O_RDONLY)    = -1 ENOENT (No such file or directory)
open("/usr/bin/stringmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/string.py", O_RDONLY)    = -1 ENOENT (No such file or directory)
open("/usr/bin/string.pyc", O_RDONLY)   = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/string", 0x7fff529e8bd0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/string.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/stringmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/string.py", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=20745, ...}) = 0
open("/usr/lib64/python2.6/string.pyc", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=20066, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b08a0e000
read(5, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\10\0\0\0@\0\0\0s\230\2\0\0d\0"..., 4096) = 4096
fstat(5, {st_mode=S_IFREG|0644, st_size=20066, ...}) = 0
read(5, "\0\0s/\1\0\0\n    %(delim)s(?:\n      ("..., 12288) = 12288
read(5, " of string str with all occurren"..., 4096) = 3682
read(5, "", 4096)                       = 0
close(5)                                = 0
munmap(0x7f5b08a0e000, 4096)            = 0
brk(0x1cef000)                          = 0x1cef000
stat("/usr/bin/strop", 0x7fff529e55c0)  = -1 ENOENT (No such file or directory)
open("/usr/bin/strop.so", O_RDONLY)     = -1 ENOENT (No such file or directory)
open("/usr/bin/stropmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/strop.py", O_RDONLY)     = -1 ENOENT (No such file or directory)
open("/usr/bin/strop.pyc", O_RDONLY)    = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/strop", 0x7fff529e55c0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/strop.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/stropmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/strop.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/strop.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/plat-linux2/strop", 0x7fff529e55c0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/strop.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/stropmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/strop.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/strop.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/lib-dynload/strop", 0x7fff529e55c0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/strop.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/stropmodule.so", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0555, st_size=25448, ...}) = 0
open("/usr/lib64/python2.6/lib-dynload/stropmodule.so", O_RDONLY) = 6
read(6, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\26\0\0\0\0\0\0"..., 832) = 832
fstat(6, {st_mode=S_IFREG|0555, st_size=25448, ...}) = 0
mmap(NULL, 2120624, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 6, 0) = 0x7f5b01b2a000
mprotect(0x7f5b01b2f000, 2093056, PROT_NONE) = 0
mmap(0x7f5b01d2e000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 6, 0x4000) = 0x7f5b01d2e000
close(6)                                = 0
close(5)                                = 0
close(4)                                = 0
stat("/usr/lib64/python2.6/logging/cStringIO", 0x7fff529e8bd0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/cStringIO.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/cStringIOmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/cStringIO.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/cStringIO.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/logging/traceback", 0x7fff529e8bd0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/traceback.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/tracebackmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/traceback.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/traceback.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/bin/traceback", 0x7fff529e8bd0) = -1 ENOENT (No such file or directory)
open("/usr/bin/traceback.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/tracebackmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/traceback.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/traceback.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/traceback", 0x7fff529e8bd0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/traceback.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/tracebackmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/traceback.py", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=11211, ...}) = 0
open("/usr/lib64/python2.6/traceback.pyc", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=11677, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b08a0e000
read(5, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\21\0\0\0@\0\0\0sB\1\0\0d\0"..., 4096) = 4096
fstat(5, {st_mode=S_IFREG|0644, st_size=11677, ...}) = 0
read(5, "source is not\n    available it i"..., 4096) = 4096
read(5, "\0\0\1\3\1\16\1\16\1\5\1\3\1\f\1\24\1\16\1\5\1c\2\0\0\0\5\0\0\0\t\0"..., 4096) = 3485
read(5, "", 4096)                       = 0
close(5)                                = 0
munmap(0x7f5b08a0e000, 4096)            = 0
close(4)                                = 0
stat("/usr/lib64/python2.6/logging/codecs", 0x7fff529e8bd0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/codecs.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/codecsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/codecs.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/codecs.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/logging/thread", 0x7fff529e8bd0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/thread.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/threadmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/thread.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/thread.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/logging/threading", 0x7fff529e8bd0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/threading.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/threadingmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/threading.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/threading.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/bin/threading", 0x7fff529e8bd0) = -1 ENOENT (No such file or directory)
open("/usr/bin/threading.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/threadingmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/threading.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/threading.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/threading", 0x7fff529e8bd0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/threading.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/threadingmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/threading.py", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=31808, ...}) = 0
open("/usr/lib64/python2.6/threading.pyc", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=28152, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b08a0e000
read(5, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\33\0\0\0@\0\0\0s6\3\0\0d\0"..., 4096) = 4096
fstat(5, {st_mode=S_IFREG|0644, st_size=28152, ...}) = 0
read(5, "ading.pyt\10\0\0\0__exit__\225\0\0\0s\2\0\0\0\0\1"..., 20480) = 20480
read(5, "\0\1d\0\0S(\r\0\0\0Nt\f\0\0\0BoundedQueuec\0\0"..., 4096) = 3576
read(5, "", 4096)                       = 0
close(5)                                = 0
munmap(0x7f5b08a0e000, 4096)            = 0
stat("/usr/bin/functools", 0x7fff529e55c0) = -1 ENOENT (No such file or directory)
open("/usr/bin/functools.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/functoolsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/functools.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/functools.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/functools", 0x7fff529e55c0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/functools.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/functoolsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/functools.py", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=2162, ...}) = 0
open("/usr/lib64/python2.6/functools.pyc", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=1927, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b08a0e000
read(6, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\4\0\0\0@\0\0\0sJ\0\0\0d\0"..., 4096) = 1927
fstat(6, {st_mode=S_IFREG|0644, st_size=1927, ...}) = 0
read(6, "", 4096)                       = 0
close(6)                                = 0
munmap(0x7f5b08a0e000, 4096)            = 0
stat("/usr/bin/_functools", 0x7fff529e1fb0) = -1 ENOENT (No such file or directory)
open("/usr/bin/_functools.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/_functoolsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/_functools.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/_functools.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/_functools", 0x7fff529e1fb0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_functools.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_functoolsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_functools.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_functools.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/plat-linux2/_functools", 0x7fff529e1fb0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/_functools.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/_functoolsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/_functools.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/_functools.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/lib-dynload/_functools", 0x7fff529e1fb0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/_functools.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/_functoolsmodule.so", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0555, st_size=12256, ...}) = 0
open("/usr/lib64/python2.6/lib-dynload/_functoolsmodule.so", O_RDONLY) = 7
read(7, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\300\16\0\0\0\0\0\0"..., 832) = 832
fstat(7, {st_mode=S_IFREG|0555, st_size=12256, ...}) = 0
mmap(NULL, 2107424, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 7, 0) = 0x7f5b01927000
mprotect(0x7f5b01929000, 2097152, PROT_NONE) = 0
mmap(0x7f5b01b29000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 7, 0x2000) = 0x7f5b01b29000
close(7)                                = 0
close(6)                                = 0
close(5)                                = 0
stat("/usr/bin/collections", 0x7fff529e55c0) = -1 ENOENT (No such file or directory)
open("/usr/bin/collections.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/collectionsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/collections.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/collections.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/collections", 0x7fff529e55c0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/collections.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/collectionsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/collections.py", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=6150, ...}) = 0
open("/usr/lib64/python2.6/collections.pyc", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=6631, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b08a0e000
read(6, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\r\0\0\0@\0\0\0s\306\1\0\0d\0"..., 4096) = 4096
fstat(6, {st_mode=S_IFREG|0644, st_size=6631, ...}) = 0
read(6, " kwds.keys())\n            return"..., 4096) = 2535
read(6, "", 4096)                       = 0
close(6)                                = 0
munmap(0x7f5b08a0e000, 4096)            = 0
stat("/usr/bin/_collections", 0x7fff529e1fb0) = -1 ENOENT (No such file or directory)
open("/usr/bin/_collections.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/_collectionsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/_collections.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/_collections.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/_collections", 0x7fff529e1fb0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_collections.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_collectionsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_collections.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_collections.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/plat-linux2/_collections", 0x7fff529e1fb0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/_collections.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/_collectionsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/_collections.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/_collections.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/lib-dynload/_collections", 0x7fff529e1fb0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/_collections.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/_collectionsmodule.so", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0555, st_size=30352, ...}) = 0
open("/usr/lib64/python2.6/lib-dynload/_collectionsmodule.so", O_RDONLY) = 7
read(7, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0@!\0\0\0\0\0\0"..., 832) = 832
fstat(7, {st_mode=S_IFREG|0555, st_size=30352, ...}) = 0
mmap(NULL, 2125648, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 7, 0) = 0x7f5b01720000
mprotect(0x7f5b01726000, 2093056, PROT_NONE) = 0
mmap(0x7f5b01925000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 7, 0x5000) = 0x7f5b01925000
close(7)                                = 0
close(6)                                = 0
stat("/usr/bin/operator", 0x7fff529e1fb0) = -1 ENOENT (No such file or directory)
open("/usr/bin/operator.so", O_RDONLY)  = -1 ENOENT (No such file or directory)
open("/usr/bin/operatormodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/operator.py", O_RDONLY)  = -1 ENOENT (No such file or directory)
open("/usr/bin/operator.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/operator", 0x7fff529e1fb0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/operator.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/operatormodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/operator.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/operator.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/plat-linux2/operator", 0x7fff529e1fb0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/operator.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/operatormodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/operator.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/operator.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/lib-dynload/operator", 0x7fff529e1fb0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/operator.so", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0555, st_size=41936, ...}) = 0
open("/usr/lib64/python2.6/lib-dynload/operator.so", O_RDONLY) = 7
read(7, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\260>\0\0\0\0\0\0"..., 832) = 832
fstat(7, {st_mode=S_IFREG|0555, st_size=41936, ...}) = 0
mmap(NULL, 2137112, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 7, 0) = 0x7f5b01516000
mprotect(0x7f5b0151e000, 2097152, PROT_NONE) = 0
mmap(0x7f5b0171e000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 7, 0x8000) = 0x7f5b0171e000
close(7)                                = 0
close(6)                                = 0
stat("/usr/bin/keyword", 0x7fff529e1fb0) = -1 ENOENT (No such file or directory)
open("/usr/bin/keyword.so", O_RDONLY)   = -1 ENOENT (No such file or directory)
open("/usr/bin/keywordmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/keyword.py", O_RDONLY)   = -1 ENOENT (No such file or directory)
open("/usr/bin/keyword.pyc", O_RDONLY)  = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/keyword", 0x7fff529e1fb0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/keyword.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/keywordmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/keyword.py", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0755, st_size=1997, ...}) = 0
open("/usr/lib64/python2.6/keyword.pyc", O_RDONLY) = 7
fstat(7, {st_mode=S_IFREG|0644, st_size=2117, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b08a0e000
read(7, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\37\0\0\0@\0\0\0s\251\0\0\0d\0"..., 4096) = 2117
fstat(7, {st_mode=S_IFREG|0644, st_size=2117, ...}) = 0
read(7, "", 4096)                       = 0
close(7)                                = 0
munmap(0x7f5b08a0e000, 4096)            = 0
close(6)                                = 0
close(5)                                = 0
close(4)                                = 0
gettimeofday({1331923161, 867830}, NULL) = 0
stat("/usr/lib64/python2.6/logging/atexit", 0x7fff529e8bd0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/atexit.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/atexitmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/atexit.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/logging/atexit.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/bin/atexit", 0x7fff529e8bd0) = -1 ENOENT (No such file or directory)
open("/usr/bin/atexit.so", O_RDONLY)    = -1 ENOENT (No such file or directory)
open("/usr/bin/atexitmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/atexit.py", O_RDONLY)    = -1 ENOENT (No such file or directory)
open("/usr/bin/atexit.pyc", O_RDONLY)   = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/atexit", 0x7fff529e8bd0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/atexit.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/atexitmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/atexit.py", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=1705, ...}) = 0
open("/usr/lib64/python2.6/atexit.pyc", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=2215, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b08a0e000
read(5, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\5\0\0\0@\0\0\0s\304\0\0\0d\0"..., 4096) = 2215
fstat(5, {st_mode=S_IFREG|0644, st_size=2215, ...}) = 0
read(5, "", 4096)                       = 0
close(5)                                = 0
munmap(0x7f5b08a0e000, 4096)            = 0
close(4)                                = 0
close(3)                                = 0
stat("/usr/bin/optparse", 0x7fff529ed240) = -1 ENOENT (No such file or directory)
open("/usr/bin/optparse.so", O_RDONLY)  = -1 ENOENT (No such file or directory)
open("/usr/bin/optparsemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/optparse.py", O_RDONLY)  = -1 ENOENT (No such file or directory)
open("/usr/bin/optparse.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/optparse", 0x7fff529ed240) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/optparse.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/optparsemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/optparse.py", O_RDONLY) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=60849, ...}) = 0
open("/usr/lib64/python2.6/optparse.pyc", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=54239, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b08a0e000
read(4, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\20\0\0\0@\0\0\0s\304\2\0\0d\0"..., 4096) = 4096
fstat(4, {st_mode=S_IFREG|0644, st_size=54239, ...}) = 0
brk(0x1d16000)                          = 0x1d16000
read(4, "d\0\0Z\2\0d\1\0\204\0\0Z\3\0d\2\0\204\0\0Z\4\0RS(\3\0\0\0s"..., 49152) = 49152
read(4, "\4\0t\2\0|\4\0\203\1\0d\1\0j\2\0o\t\0\1|\4\0d\2\0\31S\1|\4"..., 4096) = 991
read(4, "", 4096)                       = 0
close(4)                                = 0
munmap(0x7f5b08a0e000, 4096)            = 0
stat("/usr/bin/textwrap", 0x7fff529e9c30) = -1 ENOENT (No such file or directory)
open("/usr/bin/textwrap.so", O_RDONLY)  = -1 ENOENT (No such file or directory)
open("/usr/bin/textwrapmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/textwrap.py", O_RDONLY)  = -1 ENOENT (No such file or directory)
open("/usr/bin/textwrap.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/textwrap", 0x7fff529e9c30) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/textwrap.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/textwrapmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/textwrap.py", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=16889, ...}) = 0
open("/usr/lib64/python2.6/textwrap.pyc", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=11792, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b08a0e000
read(5, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\6\0\0\0@\0\0\0s\272\0\0\0d\0"..., 4096) = 4096
fstat(5, {st_mode=S_IFREG|0644, st_size=11792, ...}) = 0
read(5, "\0\0|\1\0t\1\0\203\2\0o$\0\1|\0\0i\2\0o\r\0\1|\0\0i\3\0}"..., 4096) = 4096
read(5, "wline) are\n        converted to "..., 4096) = 3600
read(5, "", 4096)                       = 0
close(5)                                = 0
munmap(0x7f5b08a0e000, 4096)            = 0
brk(0x1d5a000)                          = 0x1d5a000
close(4)                                = 0
stat("/usr/bin/gettext", {st_mode=S_IFREG|0755, st_size=33512, ...}) = 0
open("/usr/bin/gettext.so", O_RDONLY)   = -1 ENOENT (No such file or directory)
open("/usr/bin/gettextmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/gettext.py", O_RDONLY)   = -1 ENOENT (No such file or directory)
open("/usr/bin/gettext.pyc", O_RDONLY)  = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/gettext", 0x7fff529e9c30) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/gettext.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/gettextmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/gettext.py", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=19968, ...}) = 0
open("/usr/lib64/python2.6/gettext.pyc", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=15760, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b08a0e000
read(5, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\23\0\0\0@\0\0\0s\264\1\0\0d\0"..., 4096) = 4096
fstat(5, {st_mode=S_IFREG|0644, st_size=15760, ...}) = 0
read(5, "Z\10\0d\6\0\204\0\0Z\t\0d\7\0\204\0\0Z\n\0d\10\0\204\0\0Z\v\0d\t"..., 8192) = 8192
read(5, "\1\r\1\5\1\37\1\23\1\7\1\21\2\f\1c\6\0\0\0\v\0\0\0\7\0\0\0C\0\0\0"..., 4096) = 3472
read(5, "", 4096)                       = 0
close(5)                                = 0
munmap(0x7f5b08a0e000, 4096)            = 0
stat("/usr/bin/locale", {st_mode=S_IFREG|0755, st_size=41368, ...}) = 0
open("/usr/bin/locale.so", O_RDONLY)    = -1 ENOENT (No such file or directory)
open("/usr/bin/localemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/locale.py", O_RDONLY)    = -1 ENOENT (No such file or directory)
open("/usr/bin/locale.pyc", O_RDONLY)   = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/locale", 0x7fff529e6620) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/locale.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/localemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/locale.py", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=82674, ...}) = 0
open("/usr/lib64/python2.6/locale.pyc", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=46676, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b08a0e000
read(6, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\33\0\0\0@\0\0\0s&\36\0\0d\0"..., 4096) = 4096
fstat(6, {st_mode=S_IFREG|0644, st_size=46676, ...}) = 0
read(6, "6d\341\2d\361\0026d\341\2d\362\0026d\341\2d\363\0026d\341\2d\364\0026d\341\2"..., 40960) = 40960
read(6, "\7\1\7\1\7\1\7\1\7\1\7\1\7\1\7\1\7\1\7\1\7\1\7\1\7\1\7\1\7\1\7\1"..., 4096) = 1620
read(6, "", 4096)                       = 0
close(6)                                = 0
munmap(0x7f5b08a0e000, 4096)            = 0
stat("/usr/bin/_locale", 0x7fff529e3010) = -1 ENOENT (No such file or directory)
open("/usr/bin/_locale.so", O_RDONLY)   = -1 ENOENT (No such file or directory)
open("/usr/bin/_localemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/_locale.py", O_RDONLY)   = -1 ENOENT (No such file or directory)
open("/usr/bin/_locale.pyc", O_RDONLY)  = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/_locale", 0x7fff529e3010) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_locale.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_localemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_locale.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_locale.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/plat-linux2/_locale", 0x7fff529e3010) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/_locale.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/_localemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/_locale.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/_locale.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/lib-dynload/_locale", 0x7fff529e3010) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/_locale.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/_localemodule.so", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0555, st_size=21608, ...}) = 0
open("/usr/lib64/python2.6/lib-dynload/_localemodule.so", O_RDONLY) = 7
read(7, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0 \32\0\0\0\0\0\0"..., 832) = 832
fstat(7, {st_mode=S_IFREG|0555, st_size=21608, ...}) = 0
mmap(NULL, 2116792, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 7, 0) = 0x7f5b01311000
mprotect(0x7f5b01315000, 2097152, PROT_NONE) = 0
mmap(0x7f5b01515000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 7, 0x4000) = 0x7f5b01515000
close(7)                                = 0
close(6)                                = 0
brk(0x1d86000)                          = 0x1d86000
close(5)                                = 0
stat("/usr/bin/copy", 0x7fff529e6620)   = -1 ENOENT (No such file or directory)
open("/usr/bin/copy.so", O_RDONLY)      = -1 ENOENT (No such file or directory)
open("/usr/bin/copymodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/copy.py", O_RDONLY)      = -1 ENOENT (No such file or directory)
open("/usr/bin/copy.pyc", O_RDONLY)     = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/copy", 0x7fff529e6620) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/copy.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/copymodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/copy.py", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=10996, ...}) = 0
open("/usr/lib64/python2.6/copy.pyc", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=11419, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b08a0e000
read(6, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\30\0\0\0@\0\0\0sv\3\0\0d\0"..., 4096) = 4096
fstat(6, {st_mode=S_IFREG|0644, st_size=11419, ...}) = 0
read(6, "\0\1|\0\0i\2\0\203\0\0}\1\0|\0\0i\3\0|\1\0\214\0\0}\2\0n\26\0"..., 4096) = 4096
read(6, "Wq\216\2\1n\1\0\1|\n\0S(\7\0\0\0Ni\2\0\0\0i\3\0\0\0i\4\0"..., 4096) = 3227
read(6, "", 4096)                       = 0
close(6)                                = 0
munmap(0x7f5b08a0e000, 4096)            = 0
stat("/usr/bin/org", 0x7fff529e3010)    = -1 ENOENT (No such file or directory)
open("/usr/bin/org.so", O_RDONLY)       = -1 ENOENT (No such file or directory)
open("/usr/bin/orgmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/org.py", O_RDONLY)       = -1 ENOENT (No such file or directory)
open("/usr/bin/org.pyc", O_RDONLY)      = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/org", 0x7fff529e3010) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/org.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/orgmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/org.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/org.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/plat-linux2/org", 0x7fff529e3010) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/org.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/orgmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/org.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/org.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/lib-dynload/org", 0x7fff529e3010) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/org.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/orgmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/org.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/org.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/org", 0x7fff529e3010) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/org.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/orgmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/org.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/org.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/gst-0.10/org", 0x7fff529e3010) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gst-0.10/org.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gst-0.10/orgmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gst-0.10/org.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gst-0.10/org.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/gtk-2.0/org", 0x7fff529e3010) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gtk-2.0/org.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gtk-2.0/orgmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gtk-2.0/org.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gtk-2.0/org.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/webkit-1.0/org", 0x7fff529e3010) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/webkit-1.0/org.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/webkit-1.0/orgmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/webkit-1.0/org.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/webkit-1.0/org.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python2.6/site-packages/org", 0x7fff529e3010) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/org.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/orgmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/org.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/org.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
close(5)                                = 0
stat("/usr/bin/struct", 0x7fff529e6620) = -1 ENOENT (No such file or directory)
open("/usr/bin/struct.so", O_RDONLY)    = -1 ENOENT (No such file or directory)
open("/usr/bin/structmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/struct.py", O_RDONLY)    = -1 ENOENT (No such file or directory)
open("/usr/bin/struct.pyc", O_RDONLY)   = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/struct", 0x7fff529e6620) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/struct.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/structmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/struct.py", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=82, ...}) = 0
open("/usr/lib64/python2.6/struct.pyc", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=239, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b08a0e000
read(6, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\5\0\0\0@\0\0\0s.\0\0\0d\0"..., 4096) = 239
fstat(6, {st_mode=S_IFREG|0644, st_size=239, ...}) = 0
read(6, "", 4096)                       = 0
close(6)                                = 0
munmap(0x7f5b08a0e000, 4096)            = 0
stat("/usr/bin/_struct", 0x7fff529e3010) = -1 ENOENT (No such file or directory)
open("/usr/bin/_struct.so", O_RDONLY)   = -1 ENOENT (No such file or directory)
open("/usr/bin/_structmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/_struct.py", O_RDONLY)   = -1 ENOENT (No such file or directory)
open("/usr/bin/_struct.pyc", O_RDONLY)  = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/_struct", 0x7fff529e3010) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_struct.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_structmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_struct.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_struct.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/plat-linux2/_struct", 0x7fff529e3010) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/_struct.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/_structmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/_struct.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/_struct.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/lib-dynload/_struct", 0x7fff529e3010) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/_struct.so", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0555, st_size=37872, ...}) = 0
open("/usr/lib64/python2.6/lib-dynload/_struct.so", O_RDONLY) = 7
read(7, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0 (\0\0\0\0\0\0"..., 832) = 832
fstat(7, {st_mode=S_IFREG|0555, st_size=37872, ...}) = 0
mmap(NULL, 2133080, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 7, 0) = 0x7f5b01108000
mprotect(0x7f5b0110f000, 2097152, PROT_NONE) = 0
mmap(0x7f5b0130f000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 7, 0x7000) = 0x7f5b0130f000
close(7)                                = 0
close(6)                                = 0
close(5)                                = 0
close(4)                                = 0
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/messages.mo", 0x7fff529ed660) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/messages.mo", 0x7fff529ed660) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/messages.mo", 0x7fff529ed660) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/messages.mo", 0x7fff529ed660) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/messages.mo", 0x7fff529ed660) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/messages.mo", 0x7fff529ed660) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/messages.mo", 0x7fff529ed660) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/messages.mo", 0x7fff529ed660) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/messages.mo", 0x7fff529ed660) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/messages.mo", 0x7fff529ed660) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/messages.mo", 0x7fff529ed660) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/messages.mo", 0x7fff529ed660) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US.UTF8/LC_MESSAGES/messages.mo", 0x7fff529ed660) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en_US/LC_MESSAGES/messages.mo", 0x7fff529ed660) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en.UTF8/LC_MESSAGES/messages.mo", 0x7fff529ed660) = -1 ENOENT (No such file or directory)
stat("/usr/share/locale/en/LC_MESSAGES/messages.mo", 0x7fff529ed660) = -1 ENOENT (No such file or directory)
close(3)                                = 0
stat("/usr/bin/urlgrabber", {st_mode=S_IFREG|0755, st_size=12437, ...}) = 0
open("/usr/bin/urlgrabber.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/urlgrabbermodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/urlgrabber.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/urlgrabber.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/urlgrabber", 0x7fff529ed240) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/urlgrabber.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/urlgrabbermodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/urlgrabber.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/urlgrabber.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/plat-linux2/urlgrabber", 0x7fff529ed240) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/urlgrabber.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/urlgrabbermodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/urlgrabber.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/urlgrabber.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/lib-dynload/urlgrabber", 0x7fff529ed240) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/urlgrabber.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/urlgrabbermodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/urlgrabber.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/urlgrabber.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/urlgrabber", 0x7fff529ed240) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/urlgrabber.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/urlgrabbermodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/urlgrabber.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/urlgrabber.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/gst-0.10/urlgrabber", 0x7fff529ed240) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gst-0.10/urlgrabber.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gst-0.10/urlgrabbermodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gst-0.10/urlgrabber.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gst-0.10/urlgrabber.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/gtk-2.0/urlgrabber", 0x7fff529ed240) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gtk-2.0/urlgrabber.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gtk-2.0/urlgrabbermodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gtk-2.0/urlgrabber.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gtk-2.0/urlgrabber.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/webkit-1.0/urlgrabber", 0x7fff529ed240) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/webkit-1.0/urlgrabber.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/webkit-1.0/urlgrabbermodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/webkit-1.0/urlgrabber.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/webkit-1.0/urlgrabber.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python2.6/site-packages/urlgrabber", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python2.6/site-packages/urlgrabber/__init__.py", {st_mode=S_IFREG|0644, st_size=2323, ...}) = 0
stat("/usr/lib/python2.6/site-packages/urlgrabber/__init__", 0x7fff529ec1e0) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/__init__.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/__init__module.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/__init__.py", O_RDONLY) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=2323, ...}) = 0
open("/usr/lib/python2.6/site-packages/urlgrabber/__init__.pyc", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=1703, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b08a0e000
read(4, "\321\362\r\n\10\367\274Jc\0\0\0\0\0\0\0\0\3\0\0\0@\0\0\0s>\0\0\0d\0"..., 4096) = 1703
fstat(4, {st_mode=S_IFREG|0644, st_size=1703, ...}) = 0
read(4, "", 4096)                       = 0
close(4)                                = 0
munmap(0x7f5b08a0e000, 4096)            = 0
stat("/usr/lib/python2.6/site-packages/urlgrabber", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python2.6/site-packages/urlgrabber", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python2.6/site-packages/urlgrabber/grabber", 0x7fff529e8bd0) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/grabber.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/grabbermodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/grabber.py", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=68026, ...}) = 0
open("/usr/lib/python2.6/site-packages/urlgrabber/grabber.pyc", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=60729, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b08a0e000
read(5, "\321\362\r\n\243\274%Nc\0\0\0\0\0\0\0\0%\0\0\0@\0\0\0s\f\3\0\0d\0"..., 4096) = 4096
fstat(5, {st_mode=S_IFREG|0644, st_size=60729, ...}) = 0
read(5, "0 bytes into the requested file."..., 53248) = 53248
read(5, "\20\0\5\1\r\2\3\0\34\1\20\0\n\1c\0\0\0\0\n\0\0\0\22\0\0\0C\0\0\0s"..., 4096) = 3385
read(5, "", 4096)                       = 0
close(5)                                = 0
munmap(0x7f5b08a0e000, 4096)            = 0
stat("/usr/lib/python2.6/site-packages/urlgrabber/os", 0x7fff529e55c0) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/os.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/osmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/os.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/os.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python2.6/site-packages/urlgrabber/sys", 0x7fff529e55c0) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/sys.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/sysmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/sys.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/sys.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python2.6/site-packages/urlgrabber/urlparse", 0x7fff529e55c0) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/urlparse.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/urlparsemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/urlparse.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/urlparse.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/bin/urlparse", 0x7fff529e55c0) = -1 ENOENT (No such file or directory)
open("/usr/bin/urlparse.so", O_RDONLY)  = -1 ENOENT (No such file or directory)
open("/usr/bin/urlparsemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/urlparse.py", O_RDONLY)  = -1 ENOENT (No such file or directory)
open("/usr/bin/urlparse.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/urlparse", 0x7fff529e55c0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/urlparse.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/urlparsemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/urlparse.py", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=13618, ...}) = 0
open("/usr/lib64/python2.6/urlparse.pyc", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=13478, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b08a0e000
read(6, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\27\0\0\0@\0\0\0ss\2\0\0d\0"..., 4096) = 4096
fstat(6, {st_mode=S_IFREG|0644, st_size=13478, ...}) = 0
read(6, ".pyR9\0\0\0k\0\0\0s\4\0\0\0\6\2\6\2t\v\0\0\0ParseR"..., 8192) = 8192
read(6, "ues in\n        URL encoded queri"..., 4096) = 1190
read(6, "", 4096)                       = 0
brk(0x1ddf000)                          = 0x1ddf000
close(6)                                = 0
munmap(0x7f5b08a0e000, 4096)            = 0
close(5)                                = 0
stat("/usr/lib/python2.6/site-packages/urlgrabber/time", 0x7fff529e55c0) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/time.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/timemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/time.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/time.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python2.6/site-packages/urlgrabber/string", 0x7fff529e55c0) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/string.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/stringmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/string.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/string.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python2.6/site-packages/urlgrabber/urllib", 0x7fff529e55c0) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/urllib.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/urllibmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/urllib.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/urllib.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/bin/urllib", 0x7fff529e55c0) = -1 ENOENT (No such file or directory)
open("/usr/bin/urllib.so", O_RDONLY)    = -1 ENOENT (No such file or directory)
open("/usr/bin/urllibmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/urllib.py", O_RDONLY)    = -1 ENOENT (No such file or directory)
open("/usr/bin/urllib.pyc", O_RDONLY)   = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/urllib", 0x7fff529e55c0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/urllib.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/urllibmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/urllib.py", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=58663, ...}) = 0
open("/usr/lib64/python2.6/urllib.pyc", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=51270, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b08a0e000
read(6, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\"\0\0\0@\0\0\0s\241\4\0\0d\0"..., 4096) = 4096
fstat(6, {st_mode=S_IFREG|0644, st_size=51270, ...}) = 0
read(6, "4/python2.6/urllib.pyR\5\0\0\0^\0\0\0s\10"..., 45056) = 45056
read(6, "GHWd\0\0t\f\0\203\0\0\1Xd\0\0S(\23\0\0\0Ns\v\0\0\0/et"..., 4096) = 2118
read(6, "", 4096)                       = 0
close(6)                                = 0
munmap(0x7f5b08a0e000, 4096)            = 0
stat("/usr/bin/ssl", 0x7fff529e1fb0)    = -1 ENOENT (No such file or directory)
open("/usr/bin/ssl.so", O_RDONLY)       = -1 ENOENT (No such file or directory)
open("/usr/bin/sslmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/ssl.py", O_RDONLY)       = -1 ENOENT (No such file or directory)
open("/usr/bin/ssl.pyc", O_RDONLY)      = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/ssl", 0x7fff529e1fb0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/ssl.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/sslmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/ssl.py", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=14688, ...}) = 0
open("/usr/lib64/python2.6/ssl.pyc", O_RDONLY) = 7
fstat(7, {st_mode=S_IFREG|0644, st_size=13601, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b08a0e000
read(7, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\25\0\0\0@\0\0\0s\245\1\0\0d\0"..., 4096) = 4096
fstat(7, {st_mode=S_IFREG|0644, st_size=13601, ...}) = 0
read(7, "h string on EOF.i\0\0\0\0t\0\0\0\0N(\6\0\0\0"..., 8192) = 8192
read(7, "d\0\0\0R\24\0\0\0RY\0\0\0R=\0\0\0RA\0\0\0RX\0\0\0Rt\0"..., 4096) = 1313
read(7, "", 4096)                       = 0
mmap(NULL, 790528, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b01ffa000
munmap(0x7f5b08942000, 200704)          = 0
close(7)                                = 0
munmap(0x7f5b08a0e000, 4096)            = 0
stat("/usr/bin/base64", {st_mode=S_IFREG|0755, st_size=32848, ...}) = 0
open("/usr/bin/base64.so", O_RDONLY)    = -1 ENOENT (No such file or directory)
open("/usr/bin/base64module.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/base64.py", O_RDONLY)    = -1 ENOENT (No such file or directory)
open("/usr/bin/base64.pyc", O_RDONLY)   = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/base64", 0x7fff529de9a0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/base64.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/base64module.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/base64.py", O_RDONLY) = 7
fstat(7, {st_mode=S_IFREG|0755, st_size=11335, ...}) = 0
open("/usr/lib64/python2.6/base64.pyc", O_RDONLY) = 8
fstat(8, {st_mode=S_IFREG|0644, st_size=11003, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b08a0e000
read(8, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\21\0\0\0@\0\0\0s\307\2\0\0d\0"..., 4096) = 4096
fstat(8, {st_mode=S_IFREG|0644, st_size=11003, ...}) = 0
read(8, "4.pyR\r\0\0\0g\0\0\0s\2\0\0\0\0\tt\1\0\0\0Ai\0\0\0\0t"..., 4096) = 4096
read(8, "\0R\34\0\0\0R_\0\0\0(\2\0\0\0R\24\0\0\0R`\0\0\0(\0\0\0\0("..., 4096) = 2811
read(8, "", 4096)                       = 0
close(8)                                = 0
munmap(0x7f5b08a0e000, 4096)            = 0
stat("/usr/bin/binascii", 0x7fff529db390) = -1 ENOENT (No such file or directory)
open("/usr/bin/binascii.so", O_RDONLY)  = -1 ENOENT (No such file or directory)
open("/usr/bin/binasciimodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/binascii.py", O_RDONLY)  = -1 ENOENT (No such file or directory)
open("/usr/bin/binascii.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/binascii", 0x7fff529db390) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/binascii.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/binasciimodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/binascii.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/binascii.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/plat-linux2/binascii", 0x7fff529db390) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/binascii.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/binasciimodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/binascii.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/binascii.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/lib-dynload/binascii", 0x7fff529db390) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/binascii.so", O_RDONLY) = 8
fstat(8, {st_mode=S_IFREG|0555, st_size=21232, ...}) = 0
open("/usr/lib64/python2.6/lib-dynload/binascii.so", O_RDONLY) = 9
read(9, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\300\20\0\0\0\0\0\0"..., 832) = 832
fstat(9, {st_mode=S_IFREG|0555, st_size=21232, ...}) = 0
mmap(NULL, 2116424, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 9, 0) = 0x7f5b00f03000
mprotect(0x7f5b00f08000, 2093056, PROT_NONE) = 0
mmap(0x7f5b01107000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 9, 0x4000) = 0x7f5b01107000
close(9)                                = 0
close(8)                                = 0
close(7)                                = 0
close(6)                                = 0
brk(0x1e04000)                          = 0x1e04000
close(5)                                = 0
stat("/usr/lib/python2.6/site-packages/urlgrabber/urllib2", 0x7fff529e55c0) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/urllib2.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/urllib2module.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/urllib2.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/urllib2.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/bin/urllib2", 0x7fff529e55c0) = -1 ENOENT (No such file or directory)
open("/usr/bin/urllib2.so", O_RDONLY)   = -1 ENOENT (No such file or directory)
open("/usr/bin/urllib2module.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/urllib2.py", O_RDONLY)   = -1 ENOENT (No such file or directory)
open("/usr/bin/urllib2.pyc", O_RDONLY)  = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/urllib2", 0x7fff529e55c0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/urllib2.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/urllib2module.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/urllib2.py", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=50572, ...}) = 0
open("/usr/lib64/python2.6/urllib2.pyc", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=45814, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b08a0e000
read(6, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\27\0\0\0@\0\0\0s\376\3\0\0d\0"..., 4096) = 4096
fstat(6, {st_mode=S_IFREG|0644, st_size=45814, ...}) = 0
read(6, "litvalue(\4\0\0\0t\t\0\0\0localhostt\f\0\0\0"..., 40960) = 40960
read(6, "\1\t\1(\7\0\0\0R!\0\0\0R\"\0\0\0R\37\0\0\0R\311\1\0\0R\312\1\0"..., 4096) = 758
read(6, "", 4096)                       = 0
brk(0x1e50000)                          = 0x1e50000
close(6)                                = 0
munmap(0x7f5b08a0e000, 4096)            = 0
stat("/usr/bin/hashlib", 0x7fff529e1fb0) = -1 ENOENT (No such file or directory)
open("/usr/bin/hashlib.so", O_RDONLY)   = -1 ENOENT (No such file or directory)
open("/usr/bin/hashlibmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/hashlib.py", O_RDONLY)   = -1 ENOENT (No such file or directory)
open("/usr/bin/hashlib.pyc", O_RDONLY)  = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/hashlib", 0x7fff529e1fb0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/hashlib.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/hashlibmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/hashlib.py", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=4427, ...}) = 0
open("/usr/lib64/python2.6/hashlib.pyc", O_RDONLY) = 7
fstat(7, {st_mode=S_IFREG|0644, st_size=3981, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b08a0e000
read(7, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\f\0\0\0@\0\0\0s\311\0\0\0d\0"..., 4096) = 3981
fstat(7, {st_mode=S_IFREG|0644, st_size=3981, ...}) = 0
read(7, "", 4096)                       = 0
close(7)                                = 0
munmap(0x7f5b08a0e000, 4096)            = 0
stat("/usr/bin/_hashlib", 0x7fff529de9a0) = -1 ENOENT (No such file or directory)
open("/usr/bin/_hashlib.so", O_RDONLY)  = -1 ENOENT (No such file or directory)
open("/usr/bin/_hashlibmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/_hashlib.py", O_RDONLY)  = -1 ENOENT (No such file or directory)
open("/usr/bin/_hashlib.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/_hashlib", 0x7fff529de9a0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_hashlib.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_hashlibmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_hashlib.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_hashlib.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/plat-linux2/_hashlib", 0x7fff529de9a0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/_hashlib.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/_hashlibmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/_hashlib.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/_hashlib.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/lib-dynload/_hashlib", 0x7fff529de9a0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/_hashlib.so", O_RDONLY) = 7
fstat(7, {st_mode=S_IFREG|0755, st_size=15368, ...}) = 0
open("/usr/lib64/python2.6/lib-dynload/_hashlib.so", O_RDONLY) = 8
read(8, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0@\25\0\0\0\0\0\0"..., 832) = 832
fstat(8, {st_mode=S_IFREG|0755, st_size=15368, ...}) = 0
mmap(NULL, 2111496, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 8, 0) = 0x7f5b00cff000
mprotect(0x7f5b00d02000, 2093056, PROT_NONE) = 0
mmap(0x7f5b00f01000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0x2000) = 0x7f5b00f01000
close(8)                                = 0
close(7)                                = 0
close(6)                                = 0
stat("/usr/bin/httplib", 0x7fff529e1fb0) = -1 ENOENT (No such file or directory)
open("/usr/bin/httplib.so", O_RDONLY)   = -1 ENOENT (No such file or directory)
open("/usr/bin/httplibmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/httplib.py", O_RDONLY)   = -1 ENOENT (No such file or directory)
open("/usr/bin/httplib.pyc", O_RDONLY)  = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/httplib", 0x7fff529e1fb0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/httplib.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/httplibmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/httplib.py", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=45486, ...}) = 0
open("/usr/lib64/python2.6/httplib.pyc", O_RDONLY) = 7
fstat(7, {st_mode=S_IFREG|0644, st_size=35681, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b08a0e000
read(7, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\36\0\0\0@\0\0\0s~\5\0\0d\0"..., 4096) = 4096
fstat(7, {st_mode=S_IFREG|0644, st_size=35681, ...}) = 0
read(7, "een removed(\1\0\0\0t\10\0\0\0StringIOt\4\0"..., 28672) = 28672
read(7, "\1n\323\0\1Xx\316\0d\24\0D]\306\0\\\2\0}\7\0}\10\0d\22\0|\7\0|"..., 4096) = 2913
read(7, "", 4096)                       = 0
close(7)                                = 0
munmap(0x7f5b08a0e000, 4096)            = 0
stat("/usr/bin/array", 0x7fff529de9a0)  = -1 ENOENT (No such file or directory)
open("/usr/bin/array.so", O_RDONLY)     = -1 ENOENT (No such file or directory)
open("/usr/bin/arraymodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/array.py", O_RDONLY)     = -1 ENOENT (No such file or directory)
open("/usr/bin/array.pyc", O_RDONLY)    = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/array", 0x7fff529de9a0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/array.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/arraymodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/array.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/array.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/plat-linux2/array", 0x7fff529de9a0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/array.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/arraymodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/array.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/array.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/lib-dynload/array", 0x7fff529de9a0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/array.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/arraymodule.so", O_RDONLY) = 7
fstat(7, {st_mode=S_IFREG|0555, st_size=42304, ...}) = 0
open("/usr/lib64/python2.6/lib-dynload/arraymodule.so", O_RDONLY) = 8
read(8, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0000*\0\0\0\0\0\0"..., 832) = 832
fstat(8, {st_mode=S_IFREG|0555, st_size=42304, ...}) = 0
mmap(NULL, 2137536, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 8, 0) = 0x7f5b00af5000
mprotect(0x7f5b00afd000, 2093056, PROT_NONE) = 0
mmap(0x7f5b00cfc000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0x7000) = 0x7f5b00cfc000
close(8)                                = 0
close(7)                                = 0
stat("/usr/bin/mimetools", 0x7fff529de9a0) = -1 ENOENT (No such file or directory)
open("/usr/bin/mimetools.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/mimetoolsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/mimetools.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/mimetools.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/mimetools", 0x7fff529de9a0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/mimetools.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/mimetoolsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/mimetools.py", O_RDONLY) = 7
fstat(7, {st_mode=S_IFREG|0644, st_size=7168, ...}) = 0
open("/usr/lib64/python2.6/mimetools.pyc", O_RDONLY) = 8
fstat(8, {st_mode=S_IFREG|0644, st_size=8320, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b08a0e000
read(8, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\20\0\0\0@\0\0\0s\325\1\0\0d\0"..., 4096) = 4096
fstat(8, {st_mode=S_IFREG|0644, st_size=8320, ...}) = 0
read(8, "python2.6/mimetools.pyt\21\0\0\0_get_"..., 4096) = 4096
read(8, "2.6/mimetools.pyt\10\0\0\0<module>\1\0\0"..., 4096) = 128
read(8, "", 4096)                       = 0
close(8)                                = 0
munmap(0x7f5b08a0e000, 4096)            = 0
stat("/usr/bin/tempfile", 0x7fff529db390) = -1 ENOENT (No such file or directory)
open("/usr/bin/tempfile.so", O_RDONLY)  = -1 ENOENT (No such file or directory)
open("/usr/bin/tempfilemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/tempfile.py", O_RDONLY)  = -1 ENOENT (No such file or directory)
open("/usr/bin/tempfile.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/tempfile", 0x7fff529db390) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/tempfile.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/tempfilemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/tempfile.py", O_RDONLY) = 8
fstat(8, {st_mode=S_IFREG|0644, st_size=17774, ...}) = 0
open("/usr/lib64/python2.6/tempfile.pyc", O_RDONLY) = 9
fstat(9, {st_mode=S_IFREG|0644, st_size=19571, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b08a0e000
read(9, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\26\0\0\0@\0\0\0s\25\3\0\0d\0"..., 4096) = 4096
fstat(9, {st_mode=S_IFREG|0644, st_size=19571, ...}) = 0
read(9, "\0\10\0\0\0C\0\0\0s\6\1\0\0g\0\0}\0\0x5\0d\16\0D]-\0}\1"..., 12288) = 12288
read(9, "(\2\0\0\0R\216\0\0\0t\5\0\0\0flush(\1\0\0\0R/\0\0\0(\0"..., 4096) = 3187
read(9, "", 4096)                       = 0
close(9)                                = 0
munmap(0x7f5b08a0e000, 4096)            = 0
stat("/usr/bin/random", 0x7fff529d7d80) = -1 ENOENT (No such file or directory)
open("/usr/bin/random.so", O_RDONLY)    = -1 ENOENT (No such file or directory)
open("/usr/bin/randommodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/random.py", O_RDONLY)    = -1 ENOENT (No such file or directory)
open("/usr/bin/random.pyc", O_RDONLY)   = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/random", 0x7fff529d7d80) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/random.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/randommodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/random.py", O_RDONLY) = 9
fstat(9, {st_mode=S_IFREG|0644, st_size=31966, ...}) = 0
open("/usr/lib64/python2.6/random.pyc", O_RDONLY) = 10
fstat(10, {st_mode=S_IFREG|0644, st_size=25106, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b08a0e000
read(10, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0 \0\0\0@ \0\0s\231\2\0\0d\0"..., 4096) = 4096
fstat(10, {st_mode=S_IFREG|0644, st_size=25106, ...}) = 0
read(10, "if available.\n\n        If a is n"..., 20480) = 20480
read(10, "\0R\3\0\0\0R\226\0\0\0t\4\0\0\0mathR\4\0\0\0RP\0\0\0R\5"..., 4096) = 530
read(10, "", 4096)                      = 0
close(10)                               = 0
munmap(0x7f5b08a0e000, 4096)            = 0
stat("/usr/bin/__future__", 0x7fff529d4770) = -1 ENOENT (No such file or directory)
open("/usr/bin/__future__.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/__future__module.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/__future__.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/__future__.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/__future__", 0x7fff529d4770) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/__future__.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/__future__module.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/__future__.py", O_RDONLY) = 10
fstat(10, {st_mode=S_IFREG|0644, st_size=4380, ...}) = 0
open("/usr/lib64/python2.6/__future__.pyc", O_RDONLY) = 11
fstat(11, {st_mode=S_IFREG|0644, st_size=4233, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b08a0e000
read(11, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\7\0\0\0@\0\0\0s\355\0\0\0d\0"..., 4096) = 4096
fstat(11, {st_mode=S_IFREG|0644, st_size=4233, ...}) = 0
read(11, "\0\0s\"\0\0\0/usr/lib64/python2.6/__fu"..., 4096) = 137
read(11, "", 4096)                      = 0
close(11)                               = 0
munmap(0x7f5b08a0e000, 4096)            = 0
close(10)                               = 0
stat("/usr/bin/math", 0x7fff529d4770)   = -1 ENOENT (No such file or directory)
open("/usr/bin/math.so", O_RDONLY)      = -1 ENOENT (No such file or directory)
open("/usr/bin/mathmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/math.py", O_RDONLY)      = -1 ENOENT (No such file or directory)
open("/usr/bin/math.pyc", O_RDONLY)     = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/math", 0x7fff529d4770) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/math.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/mathmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/math.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/math.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/plat-linux2/math", 0x7fff529d4770) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/math.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/mathmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/math.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/math.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/lib-dynload/math", 0x7fff529d4770) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/math.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/mathmodule.so", O_RDONLY) = 10
fstat(10, {st_mode=S_IFREG|0555, st_size=27816, ...}) = 0
open("/usr/lib64/python2.6/lib-dynload/mathmodule.so", O_RDONLY) = 11
read(11, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\200 \0\0\0\0\0\0"..., 832) = 832
fstat(11, {st_mode=S_IFREG|0555, st_size=27816, ...}) = 0
mmap(NULL, 2122992, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 11, 0) = 0x7f5b008ee000
mprotect(0x7f5b008f3000, 2097152, PROT_NONE) = 0
mmap(0x7f5b00af3000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 11, 0x5000) = 0x7f5b00af3000
close(11)                               = 0
close(10)                               = 0
stat("/usr/bin/_random", 0x7fff529d4770) = -1 ENOENT (No such file or directory)
open("/usr/bin/_random.so", O_RDONLY)   = -1 ENOENT (No such file or directory)
open("/usr/bin/_randommodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/_random.py", O_RDONLY)   = -1 ENOENT (No such file or directory)
open("/usr/bin/_random.pyc", O_RDONLY)  = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/_random", 0x7fff529d4770) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_random.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_randommodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_random.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_random.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/plat-linux2/_random", 0x7fff529d4770) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/_random.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/_randommodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/_random.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/_random.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/lib-dynload/_random", 0x7fff529d4770) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/_random.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/_randommodule.so", O_RDONLY) = 10
fstat(10, {st_mode=S_IFREG|0555, st_size=12904, ...}) = 0
open("/usr/lib64/python2.6/lib-dynload/_randommodule.so", O_RDONLY) = 11
read(11, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\300\21\0\0\0\0\0\0"..., 832) = 832
fstat(11, {st_mode=S_IFREG|0555, st_size=12904, ...}) = 0
mmap(NULL, 2108080, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 11, 0) = 0x7f5b006eb000
mprotect(0x7f5b006ee000, 2093056, PROT_NONE) = 0
mmap(0x7f5b008ed000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 11, 0x2000) = 0x7f5b008ed000
close(11)                               = 0
close(10)                               = 0
time([1331923161])                      = 1331923161
open("/dev/urandom", O_RDONLY)          = 10
read(10, "Z\352\355\206\203Hr$6g+\266l\201C8", 16) = 16
close(10)                               = 0
close(9)                                = 0
stat("/usr/bin/fcntl", 0x7fff529d7d80)  = -1 ENOENT (No such file or directory)
open("/usr/bin/fcntl.so", O_RDONLY)     = -1 ENOENT (No such file or directory)
open("/usr/bin/fcntlmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/fcntl.py", O_RDONLY)     = -1 ENOENT (No such file or directory)
open("/usr/bin/fcntl.pyc", O_RDONLY)    = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/fcntl", 0x7fff529d7d80) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/fcntl.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/fcntlmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/fcntl.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/fcntl.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/plat-linux2/fcntl", 0x7fff529d7d80) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/fcntl.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/fcntlmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/fcntl.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/fcntl.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/lib-dynload/fcntl", 0x7fff529d7d80) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/fcntl.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/fcntlmodule.so", O_RDONLY) = 9
fstat(9, {st_mode=S_IFREG|0555, st_size=14632, ...}) = 0
open("/usr/lib64/python2.6/lib-dynload/fcntlmodule.so", O_RDONLY) = 10
read(10, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\20\r\0\0\0\0\0\0"..., 832) = 832
fstat(10, {st_mode=S_IFREG|0555, st_size=14632, ...}) = 0
mmap(NULL, 2109808, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 10, 0) = 0x7f5b004e7000
mprotect(0x7f5b004e9000, 2097152, PROT_NONE) = 0
mmap(0x7f5b006e9000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 10, 0x2000) = 0x7f5b006e9000
close(10)                               = 0
close(9)                                = 0
close(8)                                = 0
stat("/usr/bin/rfc822", 0x7fff529db390) = -1 ENOENT (No such file or directory)
open("/usr/bin/rfc822.so", O_RDONLY)    = -1 ENOENT (No such file or directory)
open("/usr/bin/rfc822module.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/rfc822.py", O_RDONLY)    = -1 ENOENT (No such file or directory)
open("/usr/bin/rfc822.pyc", O_RDONLY)   = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/rfc822", 0x7fff529db390) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/rfc822.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/rfc822module.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/rfc822.py", O_RDONLY) = 8
fstat(8, {st_mode=S_IFREG|0644, st_size=33295, ...}) = 0
open("/usr/lib64/python2.6/rfc822.pyc", O_RDONLY) = 9
fstat(9, {st_mode=S_IFREG|0644, st_size=32110, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b08a0e000
read(9, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\32\0\0\0@\0\0\0s\307\3\0\0d\0"..., 4096) = 4096
fstat(9, {st_mode=S_IFREG|0644, st_size=32110, ...}) = 0
read(9, "\0d\1\0d\2\0\204\1\0Z\3\0d\3\0\204\0\0Z\4\0d\4\0\204\0\0Z\5\0d"..., 24576) = 24576
read(9, "\21\0\1|\10\0|\6\0\2}\6\0}\10\0n\1\0\1|\7\0d\2\0\31d\3\0j\2"..., 4096) = 3438
read(9, "", 4096)                       = 0
brk(0x1eab000)                          = 0x1eab000
close(9)                                = 0
munmap(0x7f5b08a0e000, 4096)            = 0
close(8)                                = 0
close(7)                                = 0
close(6)                                = 0
stat("/usr/bin/bisect", 0x7fff529e1fb0) = -1 ENOENT (No such file or directory)
open("/usr/bin/bisect.so", O_RDONLY)    = -1 ENOENT (No such file or directory)
open("/usr/bin/bisectmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/bisect.py", O_RDONLY)    = -1 ENOENT (No such file or directory)
open("/usr/bin/bisect.pyc", O_RDONLY)   = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/bisect", 0x7fff529e1fb0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/bisect.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/bisectmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/bisect.py", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=2662, ...}) = 0
open("/usr/lib64/python2.6/bisect.pyc", O_RDONLY) = 7
fstat(7, {st_mode=S_IFREG|0644, st_size=3173, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b08a0e000
read(7, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\6\0\0\0@\0\0\0s\232\0\0\0d\0"..., 4096) = 3173
fstat(7, {st_mode=S_IFREG|0644, st_size=3173, ...}) = 0
read(7, "", 4096)                       = 0
close(7)                                = 0
munmap(0x7f5b08a0e000, 4096)            = 0
stat("/usr/bin/_bisect", 0x7fff529de9a0) = -1 ENOENT (No such file or directory)
open("/usr/bin/_bisect.so", O_RDONLY)   = -1 ENOENT (No such file or directory)
open("/usr/bin/_bisectmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/_bisect.py", O_RDONLY)   = -1 ENOENT (No such file or directory)
open("/usr/bin/_bisect.pyc", O_RDONLY)  = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/_bisect", 0x7fff529de9a0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_bisect.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_bisectmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_bisect.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/_bisect.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/plat-linux2/_bisect", 0x7fff529de9a0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/_bisect.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/_bisectmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/_bisect.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/_bisect.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/lib-dynload/_bisect", 0x7fff529de9a0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/_bisect.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/_bisectmodule.so", O_RDONLY) = 7
fstat(7, {st_mode=S_IFREG|0555, st_size=9872, ...}) = 0
open("/usr/lib64/python2.6/lib-dynload/_bisectmodule.so", O_RDONLY) = 8
read(8, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0p\v\0\0\0\0\0\0"..., 832) = 832
fstat(8, {st_mode=S_IFREG|0555, st_size=9872, ...}) = 0
mmap(NULL, 2105048, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 8, 0) = 0x7f5b002e5000
mprotect(0x7f5b002e7000, 2093056, PROT_NONE) = 0
mmap(0x7f5b004e6000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0x1000) = 0x7f5b004e6000
close(8)                                = 0
close(7)                                = 0
close(6)                                = 0
close(5)                                = 0
stat("/usr/lib/python2.6/site-packages/urlgrabber/mimetools", 0x7fff529e55c0) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/mimetools.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/mimetoolsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/mimetools.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/mimetools.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python2.6/site-packages/urlgrabber/thread", 0x7fff529e55c0) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/thread.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/threadmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/thread.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/thread.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python2.6/site-packages/urlgrabber/types", 0x7fff529e55c0) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/types.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/typesmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/types.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/types.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python2.6/site-packages/urlgrabber/stat", 0x7fff529e55c0) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/stat.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/statmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/stat.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/stat.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python2.6/site-packages/urlgrabber/pycurl", 0x7fff529e55c0) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/pycurl.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/pycurlmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/pycurl.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/pycurl.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/bin/pycurl", 0x7fff529e55c0) = -1 ENOENT (No such file or directory)
open("/usr/bin/pycurl.so", O_RDONLY)    = -1 ENOENT (No such file or directory)
open("/usr/bin/pycurlmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/pycurl.py", O_RDONLY)    = -1 ENOENT (No such file or directory)
open("/usr/bin/pycurl.pyc", O_RDONLY)   = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/pycurl", 0x7fff529e55c0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/pycurl.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/pycurlmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/pycurl.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/pycurl.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/plat-linux2/pycurl", 0x7fff529e55c0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/pycurl.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/pycurlmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/pycurl.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/pycurl.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/lib-dynload/pycurl", 0x7fff529e55c0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/pycurl.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/pycurlmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/pycurl.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/pycurl.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/pycurl", 0x7fff529e55c0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/pycurl.so", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0755, st_size=69504, ...}) = 0
open("/usr/lib64/python2.6/site-packages/pycurl.so", O_RDONLY) = 6
read(6, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\3600\0\0\0\0\0\0"..., 832) = 832
fstat(6, {st_mode=S_IFREG|0755, st_size=69504, ...}) = 0
mmap(NULL, 2164744, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 6, 0) = 0x7f5b000d4000
mprotect(0x7f5b000e3000, 2097152, PROT_NONE) = 0
mmap(0x7f5b002e3000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 6, 0xf000) = 0x7f5b002e3000
close(6)                                = 0
open("/etc/ld.so.cache", O_RDONLY)      = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=80908, ...}) = 0
mmap(NULL, 80908, PROT_READ, MAP_PRIVATE, 6, 0) = 0x7f5b089fb000
close(6)                                = 0
open("/usr/lib64/libcurl.so.4", O_RDONLY) = 6
read(6, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\260\333\200\0312\0\0\0"..., 832) = 832
fstat(6, {st_mode=S_IFREG|0755, st_size=343608, ...}) = 0
mmap(0x3219800000, 2436200, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 6, 0) = 0x3219800000
mprotect(0x3219851000, 2093056, PROT_NONE) = 0
mmap(0x3219a50000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 6, 0x50000) = 0x3219a50000
close(6)                                = 0
open("/lib64/libidn.so.11", O_RDONLY)   = 6
read(6, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0/\200\0222\0\0\0"..., 832) = 832
fstat(6, {st_mode=S_IFREG|0755, st_size=209120, ...}) = 0
mmap(0x3212800000, 2301768, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 6, 0) = 0x3212800000
mprotect(0x3212832000, 2093056, PROT_NONE) = 0
mmap(0x3212a31000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 6, 0x31000) = 0x3212a31000
close(6)                                = 0
open("/lib64/libldap-2.4.so.2", O_RDONLY) = 6
read(6, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0p\340\300\0342\0\0\0"..., 832) = 832
fstat(6, {st_mode=S_IFREG|0755, st_size=308912, ...}) = 0
mmap(0x321cc00000, 2401240, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 6, 0) = 0x321cc00000
mprotect(0x321cc48000, 2097152, PROT_NONE) = 0
mmap(0x321ce48000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 6, 0x48000) = 0x321ce48000
close(6)                                = 0
open("/lib64/librt.so.1", O_RDONLY)     = 6
read(6, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0@!@\t2\0\0\0"..., 832) = 832
fstat(6, {st_mode=S_IFREG|0755, st_size=47064, ...}) = 0
mmap(0x3209400000, 2128816, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 6, 0) = 0x3209400000
mprotect(0x3209407000, 2093056, PROT_NONE) = 0
mmap(0x3209606000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 6, 0x6000) = 0x3209606000
close(6)                                = 0
open("/usr/lib64/libssl3.so", O_RDONLY) = 6
read(6, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0000\223\200\0302\0\0\0"..., 832) = 832
fstat(6, {st_mode=S_IFREG|0755, st_size=240680, ...}) = 0
mmap(0x3218800000, 2334816, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 6, 0) = 0x3218800000
mprotect(0x3218837000, 2097152, PROT_NONE) = 0
mmap(0x3218a37000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 6, 0x37000) = 0x3218a37000
mmap(0x3218a3a000, 96, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x3218a3a000
close(6)                                = 0
open("/usr/lib64/libsmime3.so", O_RDONLY) = 6
read(6, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\260\233\300\0302\0\0\0"..., 832) = 832
fstat(6, {st_mode=S_IFREG|0755, st_size=183864, ...}) = 0
mmap(0x3218c00000, 2276416, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 6, 0) = 0x3218c00000
mprotect(0x3218c28000, 2097152, PROT_NONE) = 0
mmap(0x3218e28000, 16384, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 6, 0x28000) = 0x3218e28000
close(6)                                = 0
open("/usr/lib64/libnss3.so", O_RDONLY) = 6
read(6, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\240\212A\0302\0\0\0"..., 832) = 832
fstat(6, {st_mode=S_IFREG|0755, st_size=1286584, ...}) = 0
mmap(0x3218400000, 3385000, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 6, 0) = 0x3218400000
mprotect(0x3218533000, 2093056, PROT_NONE) = 0
mmap(0x3218732000, 28672, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 6, 0x132000) = 0x3218732000
mmap(0x3218739000, 5800, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x3218739000
close(6)                                = 0
open("/usr/lib64/libnssutil3.so", O_RDONLY) = 6
read(6, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\251\0\0302\0\0\0"..., 832) = 832
fstat(6, {st_mode=S_IFREG|0755, st_size=157056, ...}) = 0
mmap(0x3218000000, 2251040, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 6, 0) = 0x3218000000
mprotect(0x3218020000, 2093056, PROT_NONE) = 0
mmap(0x321821f000, 28672, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 6, 0x1f000) = 0x321821f000
close(6)                                = 0
open("/lib64/libplds4.so", O_RDONLY)    = 6
read(6, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\340\16@\0272\0\0\0"..., 832) = 832
fstat(6, {st_mode=S_IFREG|0755, st_size=17096, ...}) = 0
mmap(0x3217400000, 2109776, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 6, 0) = 0x3217400000
mprotect(0x3217403000, 2093056, PROT_NONE) = 0
mmap(0x3217602000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 6, 0x2000) = 0x3217602000
close(6)                                = 0
open("/lib64/libplc4.so", O_RDONLY)     = 6
read(6, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\20\24\0\0272\0\0\0"..., 832) = 832
fstat(6, {st_mode=S_IFREG|0755, st_size=21256, ...}) = 0
mmap(0x3217000000, 2113912, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 6, 0) = 0x3217000000
mprotect(0x3217004000, 2093056, PROT_NONE) = 0
mmap(0x3217203000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 6, 0x3000) = 0x3217203000
close(6)                                = 0
open("/lib64/libnspr4.so", O_RDONLY)    = 6
read(6, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\320\320\200\0272\0\0\0"..., 832) = 832
fstat(6, {st_mode=S_IFREG|0755, st_size=243096, ...}) = 0
mmap(0x3217800000, 2346304, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 6, 0) = 0x3217800000
mprotect(0x3217839000, 2093056, PROT_NONE) = 0
mmap(0x3217a38000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 6, 0x38000) = 0x3217a38000
mmap(0x3217a3b000, 7488, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x3217a3b000
close(6)                                = 0
open("/usr/lib64/libssh2.so.1", O_RDONLY) = 6
read(6, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0pG@\0232\0\0\0"..., 832) = 832
fstat(6, {st_mode=S_IFREG|0755, st_size=160312, ...}) = 0
mmap(0x3213400000, 2252760, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 6, 0) = 0x3213400000
mprotect(0x3213426000, 2093056, PROT_NONE) = 0
mmap(0x3213625000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 6, 0x25000) = 0x3213625000
close(6)                                = 0
open("/lib64/liblber-2.4.so.2", O_RDONLY) = 6
read(6, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\3005@\0312\0\0\0"..., 832) = 832
fstat(6, {st_mode=S_IFREG|0755, st_size=63304, ...}) = 0
mmap(0x3219400000, 2155816, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 6, 0) = 0x3219400000
mprotect(0x321940e000, 2093056, PROT_NONE) = 0
mmap(0x321960d000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 6, 0xd000) = 0x321960d000
close(6)                                = 0
open("/usr/lib64/libsasl2.so.2", O_RDONLY) = 6
read(6, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\340F\0\0332\0\0\0"..., 832) = 832
fstat(6, {st_mode=S_IFREG|0755, st_size=108728, ...}) = 0
mmap(0x321b000000, 2201520, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 6, 0) = 0x321b000000
mprotect(0x321b019000, 2093056, PROT_NONE) = 0
mmap(0x321b218000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 6, 0x18000) = 0x321b218000
close(6)                                = 0
open("/lib64/libcrypt.so.1", O_RDONLY)  = 6
read(6, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\f\200\0242\0\0\0"..., 832) = 832
fstat(6, {st_mode=S_IFREG|0755, st_size=43392, ...}) = 0
mmap(0x3214800000, 2318816, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 6, 0) = 0x3214800000
mprotect(0x3214807000, 2097152, PROT_NONE) = 0
mmap(0x3214a07000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 6, 0x7000) = 0x3214a07000
mmap(0x3214a09000, 184800, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x3214a09000
close(6)                                = 0
open("/lib64/libfreebl3.so", O_RDONLY)  = 6
read(6, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\2602\0\0252\0\0\0"..., 832) = 832
fstat(6, {st_mode=S_IFREG|0755, st_size=386040, ...}) = 0
mmap(0x3215000000, 2496224, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 6, 0) = 0x3215000000
mprotect(0x321505d000, 2093056, PROT_NONE) = 0
mmap(0x321525c000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 6, 0x5c000) = 0x321525c000
mmap(0x321525e000, 14048, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x321525e000
close(6)                                = 0
mprotect(0x321525c000, 4096, PROT_READ) = 0
mprotect(0x3214a07000, 4096, PROT_READ) = 0
mprotect(0x321b218000, 4096, PROT_READ) = 0
mprotect(0x321960d000, 4096, PROT_READ) = 0
mprotect(0x3217a38000, 4096, PROT_READ) = 0
mprotect(0x3217203000, 4096, PROT_READ) = 0
mprotect(0x3217602000, 4096, PROT_READ) = 0
mprotect(0x321821f000, 24576, PROT_READ) = 0
mprotect(0x3218732000, 20480, PROT_READ) = 0
mprotect(0x3218e28000, 12288, PROT_READ) = 0
mprotect(0x3218a37000, 8192, PROT_READ) = 0
mprotect(0x3209606000, 4096, PROT_READ) = 0
mprotect(0x321ce48000, 4096, PROT_READ) = 0
munmap(0x7f5b089fb000, 80908)           = 0
brk(0x1ed0000)                          = 0x1ed0000
close(5)                                = 0
stat("/usr/lib/python2.6/site-packages/urlgrabber/ftplib", 0x7fff529e55c0) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/ftplib.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/ftplibmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/ftplib.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/ftplib.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/bin/ftplib", 0x7fff529e55c0) = -1 ENOENT (No such file or directory)
open("/usr/bin/ftplib.so", O_RDONLY)    = -1 ENOENT (No such file or directory)
open("/usr/bin/ftplibmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/ftplib.py", O_RDONLY)    = -1 ENOENT (No such file or directory)
open("/usr/bin/ftplib.pyc", O_RDONLY)   = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/ftplib", 0x7fff529e55c0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/ftplib.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/ftplibmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/ftplib.py", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=28739, ...}) = 0
open("/usr/lib64/python2.6/ftplib.pyc", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=28138, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b08a0e000
read(6, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\v\0\0\0@\0\0\0s\263\1\0\0d\0"..., 4096) = 4096
fstat(6, {st_mode=S_IFREG|0644, st_size=28138, ...}) = 0
read(6, "|\3\0|\0\0_\2\0n\1\0\1t\3\0i\4\0|\0\0i\0\0|\0\0i\1\0f"..., 20480) = 20480
read(6, "\1d\0\0S(\r\0\0\0Nt\4\0\0\0HOMEs\6\0\0\0.netrcs"..., 4096) = 3562
read(6, "", 4096)                       = 0
close(6)                                = 0
munmap(0x7f5b08a0e000, 4096)            = 0
stat("/usr/bin/SOCKS", 0x7fff529e1fb0)  = -1 ENOENT (No such file or directory)
open("/usr/bin/SOCKS.so", O_RDONLY)     = -1 ENOENT (No such file or directory)
open("/usr/bin/SOCKSmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/SOCKS.py", O_RDONLY)     = -1 ENOENT (No such file or directory)
open("/usr/bin/SOCKS.pyc", O_RDONLY)    = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/SOCKS", 0x7fff529e1fb0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/SOCKS.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/SOCKSmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/SOCKS.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/SOCKS.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/plat-linux2/SOCKS", 0x7fff529e1fb0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/SOCKS.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/SOCKSmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/SOCKS.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/SOCKS.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/lib-dynload/SOCKS", 0x7fff529e1fb0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/SOCKS.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/SOCKSmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/SOCKS.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/SOCKS.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/SOCKS", 0x7fff529e1fb0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/SOCKS.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/SOCKSmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/SOCKS.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/SOCKS.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/gst-0.10/SOCKS", 0x7fff529e1fb0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gst-0.10/SOCKS.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gst-0.10/SOCKSmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gst-0.10/SOCKS.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gst-0.10/SOCKS.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/gtk-2.0/SOCKS", 0x7fff529e1fb0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gtk-2.0/SOCKS.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gtk-2.0/SOCKSmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gtk-2.0/SOCKS.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gtk-2.0/SOCKS.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/webkit-1.0/SOCKS", 0x7fff529e1fb0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/webkit-1.0/SOCKS.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/webkit-1.0/SOCKSmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/webkit-1.0/SOCKS.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/webkit-1.0/SOCKS.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python2.6/site-packages/SOCKS", 0x7fff529e1fb0) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/SOCKS.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/SOCKSmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/SOCKS.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/SOCKS.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
close(5)                                = 0
stat("/usr/lib/python2.6/site-packages/urlgrabber/StringIO", 0x7fff529e55c0) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/StringIO.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/StringIOmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/StringIO.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/StringIO.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/bin/StringIO", 0x7fff529e55c0) = -1 ENOENT (No such file or directory)
open("/usr/bin/StringIO.so", O_RDONLY)  = -1 ENOENT (No such file or directory)
open("/usr/bin/StringIOmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/StringIO.py", O_RDONLY)  = -1 ENOENT (No such file or directory)
open("/usr/bin/StringIO.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/StringIO", 0x7fff529e55c0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/StringIO.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/StringIOmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/StringIO.py", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=10621, ...}) = 0
open("/usr/lib64/python2.6/StringIO.pyc", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=11532, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b08a0e000
read(6, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\7\0\0\0@\0\0\0s\200\0\0\0d\0"..., 4096) = 4096
fstat(6, {st_mode=S_IFREG|0644, st_size=11532, ...}) = 0
read(6, "osition.\n\n        The mode argum"..., 4096) = 4096
read(6, "S(\4\0\0\0sG\0\0\0Write a string to the"..., 4096) = 3340
read(6, "", 4096)                       = 0
close(6)                                = 0
munmap(0x7f5b08a0e000, 4096)            = 0
close(5)                                = 0
stat("/usr/lib/python2.6/site-packages/urlgrabber/httplib", 0x7fff529e55c0) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/httplib.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/httplibmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/httplib.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/httplib.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python2.6/site-packages/urlgrabber/socket", 0x7fff529e55c0) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/socket.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/socketmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/socket.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/socket.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python2.6/site-packages/urlgrabber/byterange", 0x7fff529e55c0) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/byterange.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/byterangemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/byterange.py", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=17124, ...}) = 0
open("/usr/lib/python2.6/site-packages/urlgrabber/byterange.pyc", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=16544, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b08a0e000
read(6, "\321\362\r\n\233\345\274Jc\0\0\0\0\0\0\0\0\22\0\0\0@\0\0\0s\266\1\0\0d\0"..., 4096) = 4096
fstat(6, {st_mode=S_IFREG|0644, st_size=16544, ...}) = 0
read(6, "\n        rangetup -- a (firstbyt"..., 12288) = 12288
read(6, "R\234\0\0\0R\27\0\0\0(\0\0\0\0(\0\0\0\0(\0\0\0\0s8\0\0\0/u"..., 4096) = 160
read(6, "", 4096)                       = 0
close(6)                                = 0
munmap(0x7f5b08a0e000, 4096)            = 0
stat("/usr/lib/python2.6/site-packages/urlgrabber/rfc822", 0x7fff529e1fb0) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/rfc822.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/rfc822module.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/rfc822.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/rfc822.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python2.6/site-packages/urlgrabber/cStringIO", 0x7fff529e1fb0) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/cStringIO.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/cStringIOmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/cStringIO.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/cStringIO.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python2.6/site-packages/urlgrabber/mimetypes", 0x7fff529e1fb0) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/mimetypes.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/mimetypesmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/mimetypes.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/mimetypes.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/bin/mimetypes", 0x7fff529e1fb0) = -1 ENOENT (No such file or directory)
open("/usr/bin/mimetypes.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/mimetypesmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/mimetypes.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/mimetypes.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/mimetypes", 0x7fff529e1fb0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/mimetypes.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/mimetypesmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/mimetypes.py", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=18822, ...}) = 0
open("/usr/lib64/python2.6/mimetypes.pyc", O_RDONLY) = 7
fstat(7, {st_mode=S_IFREG|0644, st_size=16872, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b08a0e000
read(7, "\321\362\r\n \321\337Nc\0\0\0\0\0\0\0\0\17\0\0\0@\0\0\0sW\2\0\0d\0"..., 4096) = 4096
fstat(7, {st_mode=S_IFREG|0644, st_size=16872, ...}) = 0
read(7, "name of\n        the program used"..., 12288) = 12288
read(7, "\0\0\0-hs\6\0\0\0--help(\2\0\0\0s\2\0\0\0-ls\t\0\0"..., 4096) = 488
read(7, "", 4096)                       = 0
close(7)                                = 0
munmap(0x7f5b08a0e000, 4096)            = 0
close(6)                                = 0
close(5)                                = 0
brk(0x1ef2000)                          = 0x1ef2000
stat("/usr/lib/python2.6/site-packages/urlgrabber/urlgrabber", 0x7fff529e52f0) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/urlgrabber.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/urlgrabbermodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/urlgrabber.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/urlgrabber.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python2.6/site-packages/urlgrabber/i18n", 0x7fff529e55c0) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/i18n.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/i18nmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/i18n.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/i18n.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/bin/i18n", 0x7fff529e55c0)   = -1 ENOENT (No such file or directory)
open("/usr/bin/i18n.so", O_RDONLY)      = -1 ENOENT (No such file or directory)
open("/usr/bin/i18nmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/i18n.py", O_RDONLY)      = -1 ENOENT (No such file or directory)
open("/usr/bin/i18n.pyc", O_RDONLY)     = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/i18n", 0x7fff529e55c0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/i18n.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/i18nmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/i18n.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/i18n.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/plat-linux2/i18n", 0x7fff529e55c0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/i18n.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/i18nmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/i18n.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/i18n.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/lib-dynload/i18n", 0x7fff529e55c0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/i18n.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/i18nmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/i18n.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/i18n.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/i18n", 0x7fff529e55c0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/i18n.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/i18nmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/i18n.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/i18n.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/gst-0.10/i18n", 0x7fff529e55c0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gst-0.10/i18n.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gst-0.10/i18nmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gst-0.10/i18n.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gst-0.10/i18n.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/gtk-2.0/i18n", 0x7fff529e55c0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gtk-2.0/i18n.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gtk-2.0/i18nmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gtk-2.0/i18n.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gtk-2.0/i18n.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/webkit-1.0/i18n", 0x7fff529e55c0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/webkit-1.0/i18n.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/webkit-1.0/i18nmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/webkit-1.0/i18n.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/webkit-1.0/i18n.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python2.6/site-packages/i18n", 0x7fff529e55c0) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/i18n.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/i18nmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/i18n.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/i18n.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
sched_get_priority_min(SCHED_OTHER)     = 0
sched_get_priority_max(SCHED_OTHER)     = 0
sched_getparam(12818, { 0 })            = 0
sched_getscheduler(12818)               = 0 (SCHED_OTHER)
sched_setscheduler(12818, SCHED_OTHER, { 0 }) = 0
rt_sigaction(SIGPIPE, {SIG_IGN, [], SA_RESTORER, 0x3208c0f4a0}, NULL, 8) = 0
time(NULL)                              = 1331923161
close(4)                                = 0
close(3)                                = 0
stat("/usr/lib/python2.6/site-packages/urlgrabber/progress", 0x7fff529ed240) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/progress.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/progressmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/progress.py", O_RDONLY) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=27081, ...}) = 0
open("/usr/lib/python2.6/site-packages/urlgrabber/progress.pyc", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=26148, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b08a0e000
read(4, "\321\362\r\n\243\274%Nc\0\0\0\0\0\0\0\0!\0\0\0@\0\0\0s\362\2\0\0d\0"..., 4096) = 4096
fstat(4, {st_mode=S_IFREG|0644, st_size=26148, ...}) = 0
read(4, "|\1\0|\0\0_\0\0|\2\0|\0\0_\1\0|\3\0|\0\0_\2\0|\6\0|\0"..., 20480) = 20480
read(4, "i\5\0\0\0i!\241\7\0s2\0\0\0large-file-name-F"..., 4096) = 1572
read(4, "", 4096)                       = 0
close(4)                                = 0
munmap(0x7f5b08a0e000, 4096)            = 0
stat("/usr/lib/python2.6/site-packages/urlgrabber/math", 0x7fff529e9c30) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/math.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/mathmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/math.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/math.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python2.6/site-packages/urlgrabber/fcntl", 0x7fff529e9c30) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/fcntl.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/fcntlmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/fcntl.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/fcntl.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python2.6/site-packages/urlgrabber/struct", 0x7fff529e9c30) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/struct.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/structmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/struct.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/struct.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python2.6/site-packages/urlgrabber/termios", 0x7fff529e9c30) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/termios.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/termiosmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/termios.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/urlgrabber/termios.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/bin/termios", 0x7fff529e9c30) = -1 ENOENT (No such file or directory)
open("/usr/bin/termios.so", O_RDONLY)   = -1 ENOENT (No such file or directory)
open("/usr/bin/termiosmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/termios.py", O_RDONLY)   = -1 ENOENT (No such file or directory)
open("/usr/bin/termios.pyc", O_RDONLY)  = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/termios", 0x7fff529e9c30) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/termios.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/termiosmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/termios.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/termios.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/plat-linux2/termios", 0x7fff529e9c30) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/termios.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/termiosmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/termios.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/termios.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/lib-dynload/termios", 0x7fff529e9c30) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/termios.so", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0555, st_size=25160, ...}) = 0
open("/usr/lib64/python2.6/lib-dynload/termios.so", O_RDONLY) = 5
read(5, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0%\0\0\0\0\0\0"..., 832) = 832
fstat(5, {st_mode=S_IFREG|0555, st_size=25160, ...}) = 0
mmap(NULL, 2120344, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 5, 0) = 0x7f5affece000
mprotect(0x7f5affed2000, 2097152, PROT_NONE) = 0
mmap(0x7f5b000d2000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 5, 0x4000) = 0x7f5b000d2000
close(5)                                = 0
close(4)                                = 0
close(3)                                = 0
stat("/usr/bin/virtinst", 0x7fff529ed240) = -1 ENOENT (No such file or directory)
open("/usr/bin/virtinst.so", O_RDONLY)  = -1 ENOENT (No such file or directory)
open("/usr/bin/virtinstmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/virtinst.py", O_RDONLY)  = -1 ENOENT (No such file or directory)
open("/usr/bin/virtinst.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/virtinst", 0x7fff529ed240) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/virtinst.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/virtinstmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/virtinst.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/virtinst.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/plat-linux2/virtinst", 0x7fff529ed240) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/virtinst.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/virtinstmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/virtinst.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/virtinst.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/lib-dynload/virtinst", 0x7fff529ed240) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/virtinst.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/virtinstmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/virtinst.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/virtinst.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/virtinst", 0x7fff529ed240) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/virtinst.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/virtinstmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/virtinst.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/virtinst.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/gst-0.10/virtinst", 0x7fff529ed240) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gst-0.10/virtinst.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gst-0.10/virtinstmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gst-0.10/virtinst.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gst-0.10/virtinst.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/gtk-2.0/virtinst", 0x7fff529ed240) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gtk-2.0/virtinst.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gtk-2.0/virtinstmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gtk-2.0/virtinst.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gtk-2.0/virtinst.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/webkit-1.0/virtinst", 0x7fff529ed240) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/webkit-1.0/virtinst.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/webkit-1.0/virtinstmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/webkit-1.0/virtinst.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/webkit-1.0/virtinst.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python2.6/site-packages/virtinst", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python2.6/site-packages/virtinst/__init__.py", {st_mode=S_IFREG|0644, st_size=3362, ...}) = 0
stat("/usr/lib/python2.6/site-packages/virtinst/__init__", 0x7fff529ec1e0) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/__init__.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/__init__module.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/__init__.py", O_RDONLY) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=3362, ...}) = 0
open("/usr/lib/python2.6/site-packages/virtinst/__init__.pyc", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=2715, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b08a0e000
read(4, "\321\362\r\n\300W-Nc\0\0\0\0\0\0\0\0I\0\0\0@\0\0\0s\r\3\0\0d\0"..., 4096) = 2715
fstat(4, {st_mode=S_IFREG|0644, st_size=2715, ...}) = 0
read(4, "", 4096)                       = 0
close(4)                                = 0
munmap(0x7f5b08a0e000, 4096)            = 0
stat("/usr/lib/python2.6/site-packages/virtinst", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python2.6/site-packages/virtinst", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python2.6/site-packages/virtinst/gettext", 0x7fff529e8bd0) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/gettext.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/gettextmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/gettext.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/gettext.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python2.6/site-packages/virtinst/sys", 0x7fff529e8bd0) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/sys.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/sysmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/sys.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/sys.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python2.6/site-packages/virtinst/_config", 0x7fff529e8bd0) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/_config.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/_configmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/_config.py", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=121, ...}) = 0
open("/usr/lib/python2.6/site-packages/virtinst/_config.pyc", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=347, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b08a0e000
read(5, "\321\362\r\n\316\350\337Nc\0\0\0\0\0\0\0\0\6\0\0\0@\0\0\0sL\0\0\0d\0"..., 4096) = 347
fstat(5, {st_mode=S_IFREG|0644, st_size=347, ...}) = 0
read(5, "", 4096)                       = 0
close(5)                                = 0
munmap(0x7f5b08a0e000, 4096)            = 0
close(4)                                = 0
stat("/usr/lib/python2.6/site-packages/virtinst/Storage", 0x7fff529e8bd0) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/Storage.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/Storagemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/Storage.py", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=49879, ...}) = 0
open("/usr/lib/python2.6/site-packages/virtinst/Storage.pyc", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=52005, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b08a0e000
read(5, "\321\362\r\n\316\350\337Nc\0\0\0\0\0\0\0\0\f\0\0\0@\0\0\0s\4\2\0\0d\0"..., 4096) = 4096
fstat(5, {st_mode=S_IFREG|0644, st_size=52005, ...}) = 0
read(5, "t\17\0\0\0get_object_type\213\0\0\0s\2\0\0\0\0\2c"..., 45056) = 45056
read(5, "\0\0\6\0\0\0B\0\0\0sS\0\0\0e\0\0Z\1\0d\0\0Z\2\0e\3\0Z\4"..., 4096) = 2853
read(5, "", 4096)                       = 0
brk(0x1f4c000)                          = 0x1f4c000
close(5)                                = 0
munmap(0x7f5b08a0e000, 4096)            = 0
stat("/usr/lib/python2.6/site-packages/virtinst/libvirt", 0x7fff529e55c0) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/libvirt.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/libvirtmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/libvirt.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/virtinst/libvirt.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/bin/libvirt", 0x7fff529e55c0) = -1 ENOENT (No such file or directory)
open("/usr/bin/libvirt.so", O_RDONLY)   = -1 ENOENT (No such file or directory)
open("/usr/bin/libvirtmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/libvirt.py", O_RDONLY)   = -1 ENOENT (No such file or directory)
open("/usr/bin/libvirt.pyc", O_RDONLY)  = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/libvirt", 0x7fff529e55c0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/libvirt.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/libvirtmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/libvirt.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/libvirt.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/plat-linux2/libvirt", 0x7fff529e55c0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/libvirt.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/libvirtmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/libvirt.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/libvirt.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/lib-dynload/libvirt", 0x7fff529e55c0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/libvirt.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/libvirtmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/libvirt.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/libvirt.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/libvirt", 0x7fff529e55c0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/libvirt.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/libvirtmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/libvirt.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/libvirt.pyc", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=208478, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b08a0e000
read(5, "\321\362\r\n\10KOOc\0\0\0\0\0\0\0\0\10\0\0\0@\0\0\0s\361\n\0\0y\20"..., 4096) = 4096
fstat(5, {st_mode=S_IFREG|0644, st_size=208478, ...}) = 0
brk(0x1f82000)                          = 0x1f82000
read(5, "\20\1\5\1c\1\0\0\0\1\0\0\0\2\0\0\0C\0\0\0s \0\0\0|\0\0i\0\0"..., 200704) = 200704
read(5, "AIN_EVENT_STOPPED_FAILEDt&\0\0\0VIR"..., 4096) = 3678
read(5, "", 4096)                       = 0
brk(0x1fc4000)                          = 0x1fc4000
stat("/usr/bin/libvirtmod", 0x7fff529e30a0) = -1 ENOENT (No such file or directory)
open("/usr/bin/libvirtmod.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/libvirtmodmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/libvirtmod.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/libvirtmod.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/libvirtmod", 0x7fff529e30a0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/libvirtmod.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/libvirtmodmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/libvirtmod.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/libvirtmod.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/plat-linux2/libvirtmod", 0x7fff529e30a0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/libvirtmod.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/libvirtmodmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/libvirtmod.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/libvirtmod.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/lib-dynload/libvirtmod", 0x7fff529e30a0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/libvirtmod.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/libvirtmodmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/libvirtmod.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/libvirtmod.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/libvirtmod", 0x7fff529e30a0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/libvirtmod.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/libvirtmodmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/libvirtmod.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/libvirtmod.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/gst-0.10/libvirtmod", 0x7fff529e30a0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gst-0.10/libvirtmod.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gst-0.10/libvirtmodmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gst-0.10/libvirtmod.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gst-0.10/libvirtmod.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/gtk-2.0/libvirtmod", 0x7fff529e30a0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gtk-2.0/libvirtmod.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gtk-2.0/libvirtmodmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gtk-2.0/libvirtmod.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gtk-2.0/libvirtmod.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/webkit-1.0/libvirtmod", 0x7fff529e30a0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/webkit-1.0/libvirtmod.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/webkit-1.0/libvirtmodmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/webkit-1.0/libvirtmod.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/webkit-1.0/libvirtmod.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python2.6/site-packages/libvirtmod", 0x7fff529e30a0) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/libvirtmod.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/libvirtmodmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/libvirtmod.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/libvirtmod.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/bin/cygvirtmod", 0x7fff529e30a0) = -1 ENOENT (No such file or directory)
open("/usr/bin/cygvirtmod.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/cygvirtmodmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/cygvirtmod.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/cygvirtmod.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/cygvirtmod", 0x7fff529e30a0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/cygvirtmod.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/cygvirtmodmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/cygvirtmod.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/cygvirtmod.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/plat-linux2/cygvirtmod", 0x7fff529e30a0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/cygvirtmod.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/cygvirtmodmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/cygvirtmod.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/cygvirtmod.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/lib-dynload/cygvirtmod", 0x7fff529e30a0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/cygvirtmod.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/cygvirtmodmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/cygvirtmod.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/cygvirtmod.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/cygvirtmod", 0x7fff529e30a0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/cygvirtmod.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/cygvirtmodmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/cygvirtmod.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/cygvirtmod.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/gst-0.10/cygvirtmod", 0x7fff529e30a0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gst-0.10/cygvirtmod.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gst-0.10/cygvirtmodmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gst-0.10/cygvirtmod.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gst-0.10/cygvirtmod.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/gtk-2.0/cygvirtmod", 0x7fff529e30a0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gtk-2.0/cygvirtmod.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gtk-2.0/cygvirtmodmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gtk-2.0/cygvirtmod.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gtk-2.0/cygvirtmod.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/site-packages/webkit-1.0/cygvirtmod", 0x7fff529e30a0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/webkit-1.0/cygvirtmod.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/webkit-1.0/cygvirtmodmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/webkit-1.0/cygvirtmod.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/webkit-1.0/cygvirtmod.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python2.6/site-packages/cygvirtmod", 0x7fff529e30a0) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/cygvirtmod.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/cygvirtmodmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/cygvirtmod.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/cygvirtmod.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
close(5)                                = 0
munmap(0x7f5b08a0e000, 4096)            = 0
close(4)                                = 0
close(3)                                = 0
stat("/usr/bin/syslog", 0x7fff529ed030) = -1 ENOENT (No such file or directory)
open("/usr/bin/syslog.so", O_RDONLY)    = -1 ENOENT (No such file or directory)
open("/usr/bin/syslogmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/syslog.py", O_RDONLY)    = -1 ENOENT (No such file or directory)
open("/usr/bin/syslog.pyc", O_RDONLY)   = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/syslog", 0x7fff529ed030) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/syslog.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/syslogmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/syslog.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/syslog.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/plat-linux2/syslog", 0x7fff529ed030) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/syslog.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/syslogmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/syslog.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/syslog.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.6/lib-dynload/syslog", 0x7fff529ed030) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/syslog.so", O_RDONLY) = 3
fstat(3, {st_mode=S_IFREG|0755, st_size=7744, ...}) = 0
open("/usr/lib64/python2.6/lib-dynload/syslog.so", O_RDONLY) = 4
read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\320\t\0\0\0\0\0\0"..., 832) = 832
fstat(4, {st_mode=S_IFREG|0755, st_size=7744, ...}) = 0
mmap(NULL, 2102936, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f5affccc000
mprotect(0x7f5affcce000, 2093056, PROT_NONE) = 0
mmap(0x7f5affecd000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x1000) = 0x7f5affecd000
close(4)                                = 0
close(3)                                = 0
time([1331923162])                      = 1331923162
socket(PF_FILE, SOCK_DGRAM|SOCK_CLOEXEC, 0) = 3
connect(3, {sa_family=AF_FILE, path="/dev/log"}, 110) = 0
sendto(3, "<14>Mar 16 13:39:22 python: abrt"..., 94, MSG_NOSIGNAL, NULL, 0) = 94
stat("/usr/bin/virt-install", {st_mode=S_IFREG|0755, st_size=36737, ...}) = 0
open("/usr/bin/virt-install", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0755, st_size=36737, ...}) = 0
fstat(4, {st_mode=S_IFREG|0755, st_size=36737, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b08a0e000
read(4, "#!/usr/bin/python -tt\n#\n# Script"..., 8192) = 8192
read(4, "thod '%s', hv type '%s'.\" %\n    "..., 4096) = 4096
read(4, "lse) and\n        options.diskopt"..., 4096) = 4096
read(4, "ions.filesystems, guest)\n    cli"..., 4096) = 4096
read(4, " wait_on_install\n\n    # --wait 0"..., 4096) = 4096
read(4, "ception, e:\n                rais"..., 4096) = 4096
read(4, " a Live CD\"))\n    insg.add_optio"..., 4096) = 4096
read(4, "apic\",\n                    defau"..., 4096) = 3969
read(4, "", 4096)                       = 0
brk(0x200e000)                          = 0x200e000
close(4)                                = 0
munmap(0x7f5b08a0e000, 4096)            = 0
stat("/usr/lib/python2.6/site-packages/virtinst/__init__.py", {st_mode=S_IFREG|0644, st_size=3362, ...}) = 0
open("/usr/lib/python2.6/site-packages/virtinst/__init__.py", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=3362, ...}) = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=3362, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b08a0e000
read(4, "#\n# This program is free softwar"..., 8192) = 3362
read(4, "", 4096)                       = 0
close(4)                                = 0
munmap(0x7f5b08a0e000, 4096)            = 0
stat("/usr/lib/python2.6/site-packages/virtinst/Storage.py", {st_mode=S_IFREG|0644, st_size=49879, ...}) = 0
open("/usr/lib/python2.6/site-packages/virtinst/Storage.py", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=49879, ...}) = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=49879, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b08a0e000
read(4, "#\n# Copyright 2008 Red Hat, Inc."..., 8192) = 8192
read(4, "E_LOGICAL] = _(\"LVM Volume Group"..., 4096) = 4096
read(4, "d:\n            self.uuid = uuid\n"..., 4096) = 4096
read(4, "et_volume_class():\n        retur"..., 4096) = 4096
read(4, "      target_path=None, format=\""..., 4096) = 4096
read(4, "\n              \"%s\" % self._get_"..., 4096) = 4096
read(4, "me, type=StoragePool.TYPE_ISCSI,"..., 4096) = 4096
read(4, "self.target_path)\n        return"..., 4096) = 4096
read(4, "r(_(\"Must specify pool_object or"..., 4096) = 4096
read(4, "           raise ValueError(_(\"N"..., 4096) = 4096
read(4, " requested allocation > %d M ava"..., 4096) = 4096
read(4, "self, name=name, pool=pool,\n    "..., 4096) = 727
read(4, "", 4096)                       = 0
close(4)                                = 0
munmap(0x7f5b08a0e000, 4096)            = 0
stat("/usr/lib64/python2.6/site-packages/libvirt.py", 0x7fff529f0630) = -1 ENOENT (No such file or directory)
stat("/usr/bin/virt-install", {st_mode=S_IFREG|0755, st_size=36737, ...}) = 0
stat("/usr/lib/python2.6/site-packages/virtinst/__init__.py", {st_mode=S_IFREG|0644, st_size=3362, ...}) = 0
stat("/usr/lib/python2.6/site-packages/virtinst/Storage.py", {st_mode=S_IFREG|0644, st_size=49879, ...}) = 0
stat("/usr/lib64/python2.6/site-packages/libvirt.py", 0x7fff529f0a70) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/../LICENSE.txt", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/../LICENSE", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/LICENSE.txt", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/LICENSE", O_RDONLY) = -1 ENOENT (No such file or directory)
open("./LICENSE.txt", O_RDONLY)         = -1 ENOENT (No such file or directory)
open("./LICENSE", O_RDONLY)             = -1 ENOENT (No such file or directory)
socket(PF_FILE, SOCK_STREAM, 0)         = 4
connect(4, {sa_family=AF_FILE, path="/var/run/abrt/abrt.socket"}, 27) = 0
sendto(4, "PUT / HTTP/1.1\r\n\r\n", 18, 0, NULL, 0) = 18
sendto(4, "PID=12818\0", 10, 0, NULL, 0) = 10
sendto(4, "EXECUTABLE=/usr/bin/virt-install"..., 33, 0, NULL, 0) = 33
sendto(4, "ANALYZER=Python\0", 16, 0, NULL, 0) = 16
sendto(4, "BASENAME=pyhook\0", 16, 0, NULL, 0) = 16
sendto(4, "REASON=libvirt.py:25:<module>:Im"..., 70, 0, NULL, 0) = 70
sendto(4, "BACKTRACE=libvirt.py:25:<module>"..., 6792, 0, NULL, 0) = 6792
close(4)                                = 0
write(2, "Traceback (most recent call last"..., 35) = 35
write(2, "  File \"/usr/bin/virt-install\", "..., 53) = 53
open("/usr/bin/virt-install", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0755, st_size=36737, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b08a0e000
read(4, "#!/usr/bin/python -tt\n#\n# Script"..., 4096) = 4096
write(2, "    ", 4)                     = 4
write(2, "import virtinst\n", 16)       = 16
close(4)                                = 0
munmap(0x7f5b08a0e000, 4096)            = 0
write(2, "  File \"/usr/lib/python2.6/site-"..., 85) = 85
open("/usr/lib/python2.6/site-packages/virtinst/__init__.py", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=3362, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b08a0e000
read(4, "#\n# This program is free softwar"..., 4096) = 3362
write(2, "    ", 4)                     = 4
write(2, "import Storage\n", 15)        = 15
close(4)                                = 0
munmap(0x7f5b08a0e000, 4096)            = 0
write(2, "  File \"/usr/lib/python2.6/site-"..., 84) = 84
open("/usr/lib/python2.6/site-packages/virtinst/Storage.py", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=49879, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f5b08a0e000
read(4, "#\n# Copyright 2008 Red Hat, Inc."..., 4096) = 4096
write(2, "    ", 4)                     = 4
write(2, "import libvirt\n", 15)        = 15
close(4)                                = 0
munmap(0x7f5b08a0e000, 4096)            = 0
write(2, "  File \"/usr/lib64/python2.6/sit"..., 77) = 77
open("/usr/lib64/python2.6/site-packages/libvirt.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/bin/libvirt.py", O_RDONLY)   = -1 ENOENT (No such file or directory)
open("/usr/lib64/python26.zip/libvirt.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/libvirt.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/plat-linux2/libvirt.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-tk/libvirt.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-old/libvirt.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/lib-dynload/libvirt.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/libvirt.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gst-0.10/libvirt.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/gtk-2.0/libvirt.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.6/site-packages/webkit-1.0/libvirt.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.6/site-packages/libvirt.py", O_RDONLY) = -1 ENOENT (No such file or directory)
write(2, "ImportError", 11)             = 11
write(2, ": ", 2)                       = 2
write(2, "No module named libvirtmod", 26) = 26
write(2, "\n", 1)                       = 1
rt_sigaction(SIGINT, {SIG_DFL, [], SA_RESTORER, 0x3208c0f4a0}, {0x321550d410, [], SA_RESTORER, 0x3208c0f4a0}, 8) = 0
exit_group(1)                           = ?

[Index of Archives]     [Virt Tools]     [Lib OS Info]     [Fedora Users]     [Fedora Desktop]     [Fedora SELinux]     [Yosemite News]     [KDE Users]

  Powered by Linux