[Python-Dev] first correct explanation wins a beer...
Greg Wilson
Greg.Wilson@baltimore.com
Mon, 26 Feb 2001 18:23:51 -0500
This message is in MIME format. Since your mail reader does not understand
this format, some or all of this message may not be legible.
------_=_NextPart_000_01C0A04B.2E82C5CC
Content-Type: text/plain;
charset="iso-8859-1"
...or the caffeinated beverage of your choice, collectable
at IPC9.
I'm running on a straightforward Linux box:
$ uname -a
Linux akbar.nevex.com 2.2.16 #3 Mon Aug 14 14:43:46 EDT 2000 i686 unknown
with Python 2.1, built fresh from today's repo:
$ python
Python 2.1a2 (#2, Feb 26 2001, 15:27:11)
[GCC egcs-2.91.66 19990314/Linux (egcs-1.1.2 release)] on linux2
I have one tiny script called "tryout.py":
$ cat tryout.py
print "We made it!"
and a small HTML file called "printing.html":
$ cat printing.html
<html><body>
<pre prog="tryout.py">
We made it!
</pre>
</body></html>
The idea is that my little SAX handler will look for "pre" elements
with "prog" attributes, re-run the appropriate script, and compare
the output with what's in the HTML page (it's an example for the
class).
The problem is that "popen2" doesn't work as expected when called
from within a SAX content handler, even though it works just fine
when called from a method of another class, or on its own. The
whole script is:
$ cat repy
#!/usr/bin/env python
import sys
from os import popen2
from xml.sax import parse, ContentHandler
class JustAClass:
def method(self, progName):
shellCmd = "python " + progName
print "using just a class, shell command is '" + shellCmd + "'"
inp, outp = popen2(shellCmd)
inp.close()
print "using just a class, result is", outp.readlines()
class UsingSax(ContentHandler):
def startElement(self, name, attrs):
if name == "pre":
shellCmd = "python " + attrs["prog"]
print "using SAX, shell command is '" + shellCmd + "'"
inp, outp = popen2(shellCmd)
inp.close()
print "using SAX, result is", outp.readlines()
if __name__ == "__main__":
# Run it directly
inp, outp = popen2("python tryout.py")
inp.close()
print "Running popen2 directly, result is", outp.readlines()
# Use a plain old class
JustAClass().method("tryout.py")
# Using SAX
input = open("printing.html", 'r')
parse(input, UsingSax())
input.close()
The output is:
$ python repy
Running popen2 directly, result is ['We made it!\n']
using just a class, shell command is 'python tryout.py'
using just a class, result is ['We made it!\n']
using SAX, shell command is 'python tryout.py'
using SAX, result is []
My system has a stock 1.5.2 in /usr/bin/python, but my path is:
$ echo $PATH
/home/gvwilson/bin:/usr/local/bin:/bin:/usr/bin:/usr/X11R6/bin:/usr/sbin:/ho
me/gnats/bin
so that I get the 2.1 version:
$ which python
/home/gvwilson/bin/python
My PYTHONPATH is set up properly as well (I think):
$ echo $PYTHONPATH
/home/gvwilson/lib/python2.1:/home/gvwilson/lib/python2.1/lib-dynload
I'm using PyXML-0.6.4, built fresh from the .tar.gz source today.
So, like I said --- a beer or coffee to the first person who can
explain what's up. I'm attaching the Python scripts, the HTML
file, and a verbose strace output from my machine.
Thanks,
Greg
<<printing.html>> <<repy>> <<strace.txt>> <<tryout.py>>
------_=_NextPart_000_01C0A04B.2E82C5CC
Content-Type: text/html;
name="printing.html"
Content-Transfer-Encoding: quoted-printable
Content-Disposition: attachment;
filename="printing.html"
<html><body>=0A=
=0A=
<pre prog=3D"tryout.py">=0A=
We made it!=0A=
</pre>=0A=
=0A=
</body></html>=0A=
------_=_NextPart_000_01C0A04B.2E82C5CC
Content-Type: application/octet-stream;
name="repy"
Content-Transfer-Encoding: quoted-printable
Content-Disposition: attachment;
filename="repy"
#!/usr/bin/env python=0A=
=0A=
import sys=0A=
from os import popen2=0A=
from xml.sax import parse, ContentHandler=0A=
=0A=
class JustAClass:=0A=
=0A=
def method(self, progName):=0A=
shellCmd =3D "python " + progName=0A=
print "using just a class, shell command is '" + shellCmd + =
"'"=0A=
inp, outp =3D popen2(shellCmd)=0A=
inp.close()=0A=
print "using just a class, result is", outp.readlines()=0A=
=0A=
class UsingSax(ContentHandler):=0A=
=0A=
def startElement(self, name, attrs):=0A=
if name =3D=3D "pre":=0A=
shellCmd =3D "python " + attrs["prog"]=0A=
print "using SAX, shell command is '" + shellCmd + "'"=0A=
inp, outp =3D popen2(shellCmd)=0A=
inp.close()=0A=
print "using SAX, result is", outp.readlines()=0A=
=0A=
if __name__ =3D=3D "__main__":=0A=
=0A=
# Run it directly=0A=
inp, outp =3D popen2("python tryout.py")=0A=
inp.close()=0A=
print "Running popen2 directly, result is", outp.readlines()=0A=
=0A=
# Use a plain old class=0A=
JustAClass().method("tryout.py")=0A=
=0A=
# Using SAX=0A=
input =3D open("printing.html", 'r')=0A=
parse(input, UsingSax())=0A=
input.close()=0A=
------_=_NextPart_000_01C0A04B.2E82C5CC
Content-Type: text/plain;
name="strace.txt"
Content-Transfer-Encoding: quoted-printable
Content-Disposition: attachment;
filename="strace.txt"
execve("/home/gvwilson/bin/python", ["python", "repy"], [/* 30 vars =
*/]) =3D 0=0A=
brk(0) =3D 0x80bf6dc=0A=
open("/etc/ld.so.preload", O_RDONLY) =3D -1 ENOENT (No such file or =
directory)=0A=
open("/usr/local/ace/ace/i686/mmx/libpthread.so.0", O_RDONLY) =3D -1 =
ENOENT (No such file or directory)=0A=
stat("/usr/local/ace/ace/i686/mmx", 0xbffff550) =3D -1 ENOENT (No such =
file or directory)=0A=
open("/usr/local/ace/ace/i686/libpthread.so.0", O_RDONLY) =3D -1 ENOENT =
(No such file or directory)=0A=
stat("/usr/local/ace/ace/i686", 0xbffff550) =3D -1 ENOENT (No such file =
or directory)=0A=
open("/usr/local/ace/ace/mmx/libpthread.so.0", O_RDONLY) =3D -1 ENOENT =
(No such file or directory)=0A=
stat("/usr/local/ace/ace/mmx", 0xbffff550) =3D -1 ENOENT (No such file =
or directory)=0A=
open("/usr/local/ace/ace/libpthread.so.0", O_RDONLY) =3D -1 ENOENT (No =
such file or directory)=0A=
stat("/usr/local/ace/ace", {st_mode=3DS_IFDIR|0775, st_size=3D19456, =
...}) =3D 0=0A=
open("/etc/ld.so.cache", O_RDONLY) =3D 3=0A=
fstat(3, {st_mode=3DS_IFREG|0644, st_size=3D25676, ...}) =3D 0=0A=
mmap(0, 25676, PROT_READ, MAP_PRIVATE, 3, 0) =3D 0x40013000=0A=
close(3) =3D 0=0A=
open("/lib/libpthread.so.0", O_RDONLY) =3D 3=0A=
fstat(3, {st_mode=3DS_IFREG|0755, st_size=3D247381, ...}) =3D 0=0A=
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\3407\0"..., =
4096) =3D 4096=0A=
mmap(0, 69188, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) =3D =
0x4001a000=0A=
mprotect(0x40024000, 28228, PROT_NONE) =3D 0=0A=
mmap(0x40024000, 28672, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED, 3, =
0x9000) =3D 0x40024000=0A=
close(3) =3D 0=0A=
open("/usr/local/ace/ace/libdl.so.2", O_RDONLY) =3D -1 ENOENT (No such =
file or directory)=0A=
open("/lib/libdl.so.2", O_RDONLY) =3D 3=0A=
fstat(3, {st_mode=3DS_IFREG|0755, st_size=3D74663, ...}) =3D 0=0A=
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0p\31\0\000"..., =
4096) =3D 4096=0A=
mmap(0, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) =
=3D 0x4002b000=0A=
mmap(0, 11532, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) =3D =
0x4002c000=0A=
mprotect(0x4002e000, 3340, PROT_NONE) =3D 0=0A=
mmap(0x4002e000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED, 3, =
0x1000) =3D 0x4002e000=0A=
close(3) =3D 0=0A=
open("/usr/local/ace/ace/libutil.so.1", O_RDONLY) =3D -1 ENOENT (No =
such file or directory)=0A=
open("/lib/libutil.so.1", O_RDONLY) =3D 3=0A=
fstat(3, {st_mode=3DS_IFREG|0755, st_size=3D46504, ...}) =3D 0=0A=
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0P\f\0\000"..., =
4096) =3D 4096=0A=
mmap(0, 10104, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) =3D =
0x4002f000=0A=
mprotect(0x40031000, 1912, PROT_NONE) =3D 0=0A=
mmap(0x40031000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED, 3, =
0x1000) =3D 0x40031000=0A=
close(3) =3D 0=0A=
open("/usr/local/ace/ace/libm.so.6", O_RDONLY) =3D -1 ENOENT (No such =
file or directory)=0A=
open("/lib/libm.so.6", O_RDONLY) =3D 3=0A=
fstat(3, {st_mode=3DS_IFREG|0755, st_size=3D540120, ...}) =3D 0=0A=
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\320=3D\0"..., =
4096) =3D 4096=0A=
mmap(0, 114648, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) =3D =
0x40032000=0A=
mprotect(0x4004d000, 4056, PROT_NONE) =3D 0=0A=
mmap(0x4004d000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED, 3, =
0x1a000) =3D 0x4004d000=0A=
close(3) =3D 0=0A=
open("/usr/local/ace/ace/libc.so.6", O_RDONLY) =3D -1 ENOENT (No such =
file or directory)=0A=
open("/lib/libc.so.6", O_RDONLY) =3D 3=0A=
fstat(3, {st_mode=3DS_IFREG|0755, st_size=3D4118299, ...}) =3D 0=0A=
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\250\202"..., =
4096) =3D 4096=0A=
mmap(0, 993500, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) =3D =
0x4004e000=0A=
mprotect(0x40139000, 30940, PROT_NONE) =3D 0=0A=
mmap(0x40139000, 16384, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED, 3, =
0xea000) =3D 0x40139000=0A=
mmap(0x4013d000, 14556, PROT_READ|PROT_WRITE, =
MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) =3D 0x4013d000=0A=
close(3) =3D 0=0A=
mprotect(0x4004e000, 962560, PROT_READ|PROT_WRITE) =3D 0=0A=
mprotect(0x4004e000, 962560, PROT_READ|PROT_EXEC) =3D 0=0A=
munmap(0x40013000, 25676) =3D 0=0A=
personality(0 /* PER_??? */) =3D 0=0A=
getpid() =3D 5071=0A=
getrlimit(RLIMIT_STACK, {rlim_cur=3D8192*1024, =
rlim_max=3DRLIM_INFINITY}) =3D 0=0A=
setrlimit(RLIMIT_STACK, {rlim_cur=3D2040*1024, =
rlim_max=3DRLIM_INFINITY}) =3D 0=0A=
getpid() =3D 5071=0A=
uname({sys=3D"Linux", node=3D"akbar.nevex.com", ...}) =3D 0=0A=
rt_sigaction(SIGRT_0, {0x40020e10, [], 0x4000000}, NULL, 8) =3D 0=0A=
rt_sigaction(SIGRT_1, {0x400207ac, [], 0x4000000}, NULL, 8) =3D 0=0A=
rt_sigaction(SIGRT_2, {0x40020e9c, [], 0x4000000}, NULL, 8) =3D 0=0A=
rt_sigprocmask(SIG_BLOCK, [RT_0], NULL, 8) =3D 0=0A=
brk(0) =3D 0x80bf6dc=0A=
brk(0x80bf70c) =3D 0x80bf70c=0A=
brk(0x80c0000) =3D 0x80c0000=0A=
open("repy", O_RDONLY) =3D 3=0A=
ioctl(0, TCGETS, {B9600 opost isig icanon echo ...}) =3D 0=0A=
brk(0x80c1000) =3D 0x80c1000=0A=
brk(0x80c2000) =3D 0x80c2000=0A=
brk(0x80c3000) =3D 0x80c3000=0A=
brk(0x80c4000) =3D 0x80c4000=0A=
stat("/home/gvwilson/bin/python", {st_mode=3DS_IFREG|0755, =
st_size=3D1407749, ...}) =3D 0=0A=
readlink("/home/gvwilson/bin/python", "python2.1", 1024) =3D 9=0A=
readlink("/home/gvwilson/bin/python2.1", 0xbffff30c, 1024) =3D -1 =
EINVAL (Invalid argument)=0A=
stat("/home/gvwilson/bin/Modules/Setup", 0xbffff1f4) =3D -1 ENOENT (No =
such file or directory)=0A=
stat("/home/gvwilson/bin/lib/python2.1/os.py", 0xbffff1d4) =3D -1 =
ENOENT (No such file or directory)=0A=
stat("/home/gvwilson/bin/lib/python2.1/os.pyc", 0xbffff1cc) =3D -1 =
ENOENT (No such file or directory)=0A=
stat("/home/gvwilson/lib/python2.1/os.py", {st_mode=3DS_IFREG|0644, =
st_size=3D16300, ...}) =3D 0=0A=
stat("/home/gvwilson/bin/Modules/Setup", 0xbffff1f8) =3D -1 ENOENT (No =
such file or directory)=0A=
stat("/home/gvwilson/bin/lib/python2.1/lib-dynload", 0xbffff1f0) =3D -1 =
ENOENT (No such file or directory)=0A=
stat("/home/gvwilson/lib/python2.1/lib-dynload", =
{st_mode=3DS_IFDIR|0777, st_size=3D1024, ...}) =3D 0=0A=
brk(0x80c5000) =3D 0x80c5000=0A=
brk(0x80c6000) =3D 0x80c6000=0A=
brk(0x80c7000) =3D 0x80c7000=0A=
brk(0x80c8000) =3D 0x80c8000=0A=
brk(0x80c9000) =3D 0x80c9000=0A=
brk(0x80ca000) =3D 0x80ca000=0A=
rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_DFL}, 8) =3D 0=0A=
getpid() =3D 5071=0A=
brk(0x80cb000) =3D 0x80cb000=0A=
rt_sigaction(SIGHUP, NULL, {SIG_DFL}, 8) =3D 0=0A=
rt_sigaction(SIGINT, NULL, {SIG_DFL}, 8) =3D 0=0A=
rt_sigaction(SIGQUIT, NULL, {SIG_DFL}, 8) =3D 0=0A=
rt_sigaction(SIGILL, NULL, {SIG_DFL}, 8) =3D 0=0A=
rt_sigaction(SIGTRAP, NULL, {SIG_DFL}, 8) =3D 0=0A=
rt_sigaction(SIGABRT, NULL, {SIG_DFL}, 8) =3D 0=0A=
rt_sigaction(SIGBUS, NULL, {SIG_DFL}, 8) =3D 0=0A=
rt_sigaction(SIGFPE, NULL, {SIG_DFL}, 8) =3D 0=0A=
rt_sigaction(SIGKILL, NULL, {SIG_DFL}, 8) =3D 0=0A=
rt_sigaction(SIGUSR1, NULL, {SIG_DFL}, 8) =3D 0=0A=
rt_sigaction(SIGSEGV, NULL, {SIG_DFL}, 8) =3D 0=0A=
rt_sigaction(SIGUSR2, NULL, {SIG_DFL}, 8) =3D 0=0A=
rt_sigaction(SIGPIPE, NULL, {SIG_IGN}, 8) =3D 0=0A=
rt_sigaction(SIGALRM, NULL, {SIG_DFL}, 8) =3D 0=0A=
rt_sigaction(SIGTERM, NULL, {SIG_DFL}, 8) =3D 0=0A=
rt_sigaction(SIGSTKFLT, NULL, {SIG_DFL}, 8) =3D 0=0A=
rt_sigaction(SIGCHLD, NULL, {SIG_DFL}, 8) =3D 0=0A=
rt_sigaction(SIGCONT, NULL, {SIG_DFL}, 8) =3D 0=0A=
rt_sigaction(SIGSTOP, NULL, {SIG_DFL}, 8) =3D 0=0A=
rt_sigaction(SIGTSTP, NULL, {SIG_DFL}, 8) =3D 0=0A=
rt_sigaction(SIGTTIN, NULL, {SIG_DFL}, 8) =3D 0=0A=
rt_sigaction(SIGTTOU, NULL, {SIG_DFL}, 8) =3D 0=0A=
rt_sigaction(SIGURG, NULL, {SIG_DFL}, 8) =3D 0=0A=
rt_sigaction(SIGXCPU, NULL, {SIG_DFL}, 8) =3D 0=0A=
rt_sigaction(SIGXFSZ, NULL, {SIG_DFL}, 8) =3D 0=0A=
rt_sigaction(SIGVTALRM, NULL, {SIG_DFL}, 8) =3D 0=0A=
rt_sigaction(SIGPROF, NULL, {SIG_DFL}, 8) =3D 0=0A=
rt_sigaction(SIGWINCH, NULL, {SIG_DFL}, 8) =3D 0=0A=
rt_sigaction(SIGIO, NULL, {SIG_DFL}, 8) =3D 0=0A=
rt_sigaction(SIGPWR, NULL, {SIG_DFL}, 8) =3D 0=0A=
rt_sigaction(SIGUNUSED, NULL, {SIG_DFL}, 8) =3D 0=0A=
rt_sigaction(SIGRT_3, NULL, {SIG_DFL}, 8) =3D 0=0A=
rt_sigaction(SIGRT_4, NULL, {SIG_DFL}, 8) =3D 0=0A=
rt_sigaction(SIGRT_5, NULL, {SIG_DFL}, 8) =3D 0=0A=
rt_sigaction(SIGRT_6, NULL, {SIG_DFL}, 8) =3D 0=0A=
rt_sigaction(SIGRT_7, NULL, {SIG_DFL}, 8) =3D 0=0A=
rt_sigaction(SIGRT_8, NULL, {SIG_DFL}, 8) =3D 0=0A=
rt_sigaction(SIGRT_9, NULL, {SIG_DFL}, 8) =3D 0=0A=
rt_sigaction(SIGRT_10, NULL, {SIG_DFL}, 8) =3D 0=0A=
rt_sigaction(SIGRT_11, NULL, {SIG_DFL}, 8) =3D 0=0A=
rt_sigaction(SIGRT_12, NULL, {SIG_DFL}, 8) =3D 0=0A=
rt_sigaction(SIGRT_13, NULL, {SIG_DFL}, 8) =3D 0=0A=
rt_sigaction(SIGRT_14, NULL, {SIG_DFL}, 8) =3D 0=0A=
rt_sigaction(SIGRT_15, NULL, {SIG_DFL}, 8) =3D 0=0A=
rt_sigaction(SIGRT_16, NULL, {SIG_DFL}, 8) =3D 0=0A=
rt_sigaction(SIGRT_17, NULL, {SIG_DFL}, 8) =3D 0=0A=
rt_sigaction(SIGRT_18, NULL, {SIG_DFL}, 8) =3D 0=0A=
rt_sigaction(SIGRT_19, NULL, {SIG_DFL}, 8) =3D 0=0A=
rt_sigaction(SIGRT_20, NULL, {SIG_DFL}, 8) =3D 0=0A=
rt_sigaction(SIGRT_21, NULL, {SIG_DFL}, 8) =3D 0=0A=
rt_sigaction(SIGRT_22, NULL, {SIG_DFL}, 8) =3D 0=0A=
rt_sigaction(SIGRT_23, NULL, {SIG_DFL}, 8) =3D 0=0A=
rt_sigaction(SIGRT_24, NULL, {SIG_DFL}, 8) =3D 0=0A=
rt_sigaction(SIGRT_25, NULL, {SIG_DFL}, 8) =3D 0=0A=
rt_sigaction(SIGRT_26, NULL, {SIG_DFL}, 8) =3D 0=0A=
rt_sigaction(SIGRT_27, NULL, {SIG_DFL}, 8) =3D 0=0A=
rt_sigaction(SIGRT_28, NULL, {SIG_DFL}, 8) =3D 0=0A=
rt_sigaction(SIGRT_29, NULL, {SIG_DFL}, 8) =3D 0=0A=
rt_sigaction(SIGRT_30, NULL, {SIG_DFL}, 8) =3D 0=0A=
rt_sigaction(SIGRT_31, NULL, {SIG_DFL}, 8) =3D 0=0A=
rt_sigaction(SIGINT, NULL, {SIG_DFL}, 8) =3D 0=0A=
rt_sigaction(SIGINT, {0x40021460, [], 0x4000000}, NULL, 8) =3D 0=0A=
brk(0x80cd000) =3D 0x80cd000=0A=
stat("/home/gvwilson/lib/python2.1/site", 0xbfffec9c) =3D -1 ENOENT (No =
such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/site.so", O_RDONLY) =3D -1 ENOENT =
(No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/sitemodule.so", O_RDONLY) =3D -1 =
ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/site.py", O_RDONLY) =3D 4=0A=
open("/dev/null", O_RDONLY|O_NONBLOCK|O_DIRECTORY) =3D -1 ENOTDIR (Not =
a directory)=0A=
open("/home/gvwilson/lib/python2.1", O_RDONLY|O_NONBLOCK|O_DIRECTORY) =
=3D 5=0A=
fstat(5, {st_mode=3DS_IFDIR|0755, st_size=3D10240, ...}) =3D 0=0A=
fcntl(5, F_SETFD, FD_CLOEXEC) =3D 0=0A=
getdents(5, /* 53 entries */, 3933) =3D 1168=0A=
getdents(5, /* 52 entries */, 3933) =3D 1156=0A=
getdents(5, /* 53 entries */, 3933) =3D 1172=0A=
close(5) =3D 0=0A=
fstat(4, {st_mode=3DS_IFREG|0644, st_size=3D8778, ...}) =3D 0=0A=
open("/home/gvwilson/lib/python2.1/site.pyc", O_RDONLY) =3D 5=0A=
fstat(5, {st_mode=3DS_IFREG|0666, st_size=3D9529, ...}) =3D 0=0A=
mmap(0, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) =
=3D 0x40013000=0A=
read(5, "*\353\r\n\310\274\232:c\0\0\0\0\t\0\0\0s\343\4\0\0\177"..., =
4096) =3D 4096=0A=
fstat(5, {st_mode=3DS_IFREG|0666, st_size=3D9529, ...}) =3D 0=0A=
read(5, "\203\1\0}\1\0Wn \0\177a\0\4t\5\0i\10\0j\n\0o\16\0\1\1\1"..., =
4096) =3D 4096=0A=
read(5, "\0LICENSE.txts\7\0\0\0LICENSEs\5\0\0\0asc"..., 4096) =3D =
1337=0A=
read(5, "", 4096) =3D 0=0A=
brk(0x80ce000) =3D 0x80ce000=0A=
brk(0x80cf000) =3D 0x80cf000=0A=
brk(0x80d0000) =3D 0x80d0000=0A=
close(5) =3D 0=0A=
munmap(0x40013000, 4096) =3D 0=0A=
stat("/home/gvwilson/lib/python2.1/os", 0xbfffde20) =3D -1 ENOENT (No =
such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/os.so", O_RDONLY) =3D -1 ENOENT (No =
such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/osmodule.so", O_RDONLY) =3D -1 =
ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/os.py", O_RDONLY) =3D 5=0A=
open("/home/gvwilson/lib/python2.1", O_RDONLY|O_NONBLOCK|O_DIRECTORY) =
=3D 6=0A=
fstat(6, {st_mode=3DS_IFDIR|0755, st_size=3D10240, ...}) =3D 0=0A=
fcntl(6, F_SETFD, FD_CLOEXEC) =3D 0=0A=
brk(0x80d2000) =3D 0x80d2000=0A=
getdents(6, /* 53 entries */, 3933) =3D 1168=0A=
getdents(6, /* 52 entries */, 3933) =3D 1156=0A=
close(6) =3D 0=0A=
fstat(5, {st_mode=3DS_IFREG|0644, st_size=3D16300, ...}) =3D 0=0A=
open("/home/gvwilson/lib/python2.1/os.pyc", O_RDONLY) =3D 6=0A=
fstat(6, {st_mode=3DS_IFREG|0666, st_size=3D21279, ...}) =3D 0=0A=
mmap(0, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) =
=3D 0x40013000=0A=
read(6, "*\353\r\n\307\274\232:c\0\0\0\0\v\0\0\0s\336\10\0\0\177"..., =
4096) =3D 4096=0A=
fstat(6, {st_mode=3DS_IFREG|0666, st_size=3D21279, ...}) =3D 0=0A=
brk(0x80d8000) =3D 0x80d8000=0A=
read(6, "\0|\2\0\203\1\0\\\2\0}\2\0}\3\0n\1\0\1\177\257\0|\2\0o"..., =
16384) =3D 16384=0A=
read(6, "\0\0_spawnvefs\4\0\0\0paths\6\0\0\0spawnls"..., 4096) =3D =
799=0A=
read(6, "", 4096) =3D 0=0A=
brk(0x80d9000) =3D 0x80d9000=0A=
brk(0x80da000) =3D 0x80da000=0A=
brk(0x80db000) =3D 0x80db000=0A=
brk(0x80dc000) =3D 0x80dc000=0A=
brk(0x80dd000) =3D 0x80dd000=0A=
brk(0x80de000) =3D 0x80de000=0A=
brk(0x80e2000) =3D 0x80e2000=0A=
close(6) =3D 0=0A=
munmap(0x40013000, 4096) =3D 0=0A=
brk(0x80e3000) =3D 0x80e3000=0A=
stat("/home/gvwilson/lib/python2.1/posixpath", 0xbfffcfa4) =3D -1 =
ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/posixpath.so", O_RDONLY) =3D -1 =
ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/posixpathmodule.so", O_RDONLY) =3D =
-1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/posixpath.py", O_RDONLY) =3D 6=0A=
open("/home/gvwilson/lib/python2.1", O_RDONLY|O_NONBLOCK|O_DIRECTORY) =
=3D 7=0A=
fstat(7, {st_mode=3DS_IFDIR|0755, st_size=3D10240, ...}) =3D 0=0A=
fcntl(7, F_SETFD, FD_CLOEXEC) =3D 0=0A=
brk(0x80e5000) =3D 0x80e5000=0A=
getdents(7, /* 53 entries */, 3933) =3D 1168=0A=
getdents(7, /* 52 entries */, 3933) =3D 1156=0A=
close(7) =3D 0=0A=
fstat(6, {st_mode=3DS_IFREG|0644, st_size=3D11111, ...}) =3D 0=0A=
open("/home/gvwilson/lib/python2.1/posixpath.pyc", O_RDONLY) =3D 7=0A=
fstat(7, {st_mode=3DS_IFREG|0666, st_size=3D12385, ...}) =3D 0=0A=
mmap(0, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) =
=3D 0x40013000=0A=
read(7, "*\353\r\n\307\274\232:c\0\0\0\0\31\0\0\0s\261\1\0\0\177"..., =
4096) =3D 4096=0A=
fstat(7, {st_mode=3DS_IFREG|0666, st_size=3D12385, ...}) =3D 0=0A=
read(7, "ponents\0\0\0\0i\0\0\0\0i\1\0\0\0N(\6\0\0\0s\1\0\0\0"..., =
8192) =3D 8192=0A=
read(7, "lib/python2.1/posixpath.pys\1\0\0\0?"..., 4096) =3D 97=0A=
read(7, "", 4096) =3D 0=0A=
brk(0x80e6000) =3D 0x80e6000=0A=
brk(0x80e7000) =3D 0x80e7000=0A=
brk(0x80ee000) =3D 0x80ee000=0A=
close(7) =3D 0=0A=
munmap(0x40013000, 4096) =3D 0=0A=
stat("/home/gvwilson/lib/python2.1/stat", 0xbfffc128) =3D -1 ENOENT (No =
such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/stat.so", O_RDONLY) =3D -1 ENOENT =
(No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/statmodule.so", O_RDONLY) =3D -1 =
ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/stat.py", O_RDONLY) =3D 7=0A=
open("/home/gvwilson/lib/python2.1", O_RDONLY|O_NONBLOCK|O_DIRECTORY) =
=3D 8=0A=
fstat(8, {st_mode=3DS_IFDIR|0755, st_size=3D10240, ...}) =3D 0=0A=
fcntl(8, F_SETFD, FD_CLOEXEC) =3D 0=0A=
getdents(8, /* 53 entries */, 3933) =3D 1168=0A=
getdents(8, /* 52 entries */, 3933) =3D 1156=0A=
getdents(8, /* 53 entries */, 3933) =3D 1172=0A=
close(8) =3D 0=0A=
fstat(7, {st_mode=3DS_IFREG|0644, st_size=3D1667, ...}) =3D 0=0A=
open("/home/gvwilson/lib/python2.1/stat.pyc", O_RDONLY) =3D 8=0A=
fstat(8, {st_mode=3DS_IFREG|0666, st_size=3D3460, ...}) =3D 0=0A=
mmap(0, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) =
=3D 0x40013000=0A=
read(8, "*\353\r\n\311\274\232:c\0\0\0\0\1\0\0\0s\300\1\0\0\177"..., =
4096) =3D 3460=0A=
fstat(8, {st_mode=3DS_IFREG|0666, st_size=3D3460, ...}) =3D 0=0A=
read(8, "", 4096) =3D 0=0A=
close(8) =3D 0=0A=
munmap(0x40013000, 4096) =3D 0=0A=
close(7) =3D 0=0A=
close(6) =3D 0=0A=
stat("/home/gvwilson/lib/python2.1/UserDict", 0xbfffcfa4) =3D -1 ENOENT =
(No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/UserDict.so", O_RDONLY) =3D -1 =
ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/UserDictmodule.so", O_RDONLY) =3D -1 =
ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/UserDict.py", O_RDONLY) =3D 6=0A=
open("/home/gvwilson/lib/python2.1", O_RDONLY|O_NONBLOCK|O_DIRECTORY) =
=3D 7=0A=
fstat(7, {st_mode=3DS_IFDIR|0755, st_size=3D10240, ...}) =3D 0=0A=
fcntl(7, F_SETFD, FD_CLOEXEC) =3D 0=0A=
getdents(7, /* 53 entries */, 3933) =3D 1168=0A=
close(7) =3D 0=0A=
fstat(6, {st_mode=3DS_IFREG|0644, st_size=3D1573, ...}) =3D 0=0A=
open("/home/gvwilson/lib/python2.1/UserDict.pyc", O_RDONLY) =3D 7=0A=
fstat(7, {st_mode=3DS_IFREG|0666, st_size=3D4341, ...}) =3D 0=0A=
mmap(0, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) =
=3D 0x40013000=0A=
read(7, "*\353\r\n\302\274\232:c\0\0\0\0\3\0\0\0s&\0\0\0\177\0\0"..., =
4096) =3D 4096=0A=
fstat(7, {st_mode=3DS_IFREG|0666, st_size=3D4341, ...}) =3D 0=0A=
read(7, "s\7\0\0\0popitem(\0\0\0\0(\0\0\0\0(\0\0\0\0s(\0\0\0"..., 4096) =
=3D 245=0A=
read(7, "", 4096) =3D 0=0A=
brk(0x80ef000) =3D 0x80ef000=0A=
close(7) =3D 0=0A=
munmap(0x40013000, 4096) =3D 0=0A=
close(6) =3D 0=0A=
brk(0x80f0000) =3D 0x80f0000=0A=
brk(0x80f1000) =3D 0x80f1000=0A=
brk(0x80f2000) =3D 0x80f2000=0A=
brk(0x80f3000) =3D 0x80f3000=0A=
brk(0x80f4000) =3D 0x80f4000=0A=
brk(0x80f5000) =3D 0x80f5000=0A=
brk(0x80f6000) =3D 0x80f6000=0A=
brk(0x80f7000) =3D 0x80f7000=0A=
brk(0x80f8000) =3D 0x80f8000=0A=
brk(0x80f9000) =3D 0x80f9000=0A=
brk(0x80fa000) =3D 0x80fa000=0A=
brk(0x80fb000) =3D 0x80fb000=0A=
brk(0x80fc000) =3D 0x80fc000=0A=
brk(0x80fe000) =3D 0x80fe000=0A=
close(5) =3D 0=0A=
stat("/home/gvwilson/lib/python2.1/site-packages", =
{st_mode=3DS_IFDIR|0755, st_size=3D1024, ...}) =3D 0=0A=
open("/home/gvwilson/lib/python2.1/site-packages", =
O_RDONLY|O_NONBLOCK|O_DIRECTORY) =3D 5=0A=
fstat(5, {st_mode=3DS_IFDIR|0755, st_size=3D1024, ...}) =3D 0=0A=
fcntl(5, F_SETFD, FD_CLOEXEC) =3D 0=0A=
getdents(5, /* 4 entries */, 3933) =3D 68=0A=
getdents(5, /* 0 entries */, 3933) =3D 0=0A=
close(5) =3D 0=0A=
stat("/home/gvwilson/lib/site-python", 0xbfffe9ec) =3D -1 ENOENT (No =
such file or directory)=0A=
open("/usr/share/locale/locale.alias", O_RDONLY) =3D 5=0A=
fstat(5, {st_mode=3DS_IFREG|0644, st_size=3D2174, ...}) =3D 0=0A=
mmap(0, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) =
=3D 0x40013000=0A=
read(5, "# Locale name alias data base.\n#"..., 4096) =3D 2174=0A=
read(5, "", 4096) =3D 0=0A=
close(5) =3D 0=0A=
munmap(0x40013000, 4096) =3D 0=0A=
open("/usr/share/i18n/locale.alias", O_RDONLY) =3D -1 ENOENT (No such =
file or directory)=0A=
open("/usr/share/locale/en_US/LC_MESSAGES/libc.mo", O_RDONLY) =3D -1 =
ENOENT (No such file or directory)=0A=
open("/usr/share/locale/en/LC_MESSAGES/libc.mo", O_RDONLY) =3D -1 =
ENOENT (No such file or directory)=0A=
stat("/home/gvwilson/lib/python2.1/sitecustomize", 0xbfffde20) =3D -1 =
ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/sitecustomize.so", O_RDONLY) =3D -1 =
ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/sitecustomizemodule.so", O_RDONLY) =
=3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/sitecustomize.py", O_RDONLY) =3D -1 =
ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/sitecustomize.pyc", O_RDONLY) =3D -1 =
ENOENT (No such file or directory)=0A=
stat("/home/gvwilson/lib/python2.1/lib-dynload/sitecustomize", =
0xbfffde20) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/lib-dynload/sitecustomize.so", =
O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/lib-dynload/sitecustomizemodule.so", =
O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/lib-dynload/sitecustomize.py", =
O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/lib-dynload/sitecustomize.pyc", =
O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
stat("/home/gvwilson/lib/python2.1/plat-linux2/sitecustomize", =
0xbfffde20) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/plat-linux2/sitecustomize.so", =
O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/plat-linux2/sitecustomizemodule.so", =
O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/plat-linux2/sitecustomize.py", =
O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/plat-linux2/sitecustomize.pyc", =
O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
stat("/home/gvwilson/lib/python2.1/lib-tk/sitecustomize", 0xbfffde20) =
=3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/lib-tk/sitecustomize.so", O_RDONLY) =
=3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/lib-tk/sitecustomizemodule.so", =
O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/lib-tk/sitecustomize.py", O_RDONLY) =
=3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/lib-tk/sitecustomize.pyc", O_RDONLY) =
=3D -1 ENOENT (No such file or directory)=0A=
stat("/home/gvwilson/lib/python2.1/site-packages/sitecustomize", =
0xbfffde20) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/site-packages/sitecustomize.so", =
O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/site-packages/sitecustomizemodule.so"=
, O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/site-packages/sitecustomize.py", =
O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/site-packages/sitecustomize.pyc", =
O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
close(4) =3D 0=0A=
readlink("repy", 0xbffff748, 1024) =3D -1 EINVAL (Invalid =
argument)=0A=
ioctl(3, TCGETS, 0xbffffa9c) =3D -1 ENOTTY (Inappropriate =
ioctl for device)=0A=
fstat(3, {st_mode=3DS_IFREG|0755, st_size=3D1068, ...}) =3D 0=0A=
mmap(0, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) =
=3D 0x40013000=0A=
_llseek(3, 0, [0], SEEK_CUR) =3D 0=0A=
read(3, "#!/usr/bin/env python\n\nimport sy"..., 4096) =3D 1068=0A=
_llseek(3, 1068, [1068], SEEK_SET) =3D 0=0A=
brk(0x8101000) =3D 0x8101000=0A=
brk(0x8102000) =3D 0x8102000=0A=
brk(0x8103000) =3D 0x8103000=0A=
brk(0x8104000) =3D 0x8104000=0A=
brk(0x8105000) =3D 0x8105000=0A=
brk(0x8106000) =3D 0x8106000=0A=
read(3, "", 4096) =3D 0=0A=
close(3) =3D 0=0A=
munmap(0x40013000, 4096) =3D 0=0A=
stat("xml", 0xbfffeba8) =3D -1 ENOENT (No such file or =
directory)=0A=
open("xml.so", O_RDONLY) =3D -1 ENOENT (No such file or =
directory)=0A=
open("xmlmodule.so", O_RDONLY) =3D -1 ENOENT (No such file or =
directory)=0A=
open("xml.py", O_RDONLY) =3D -1 ENOENT (No such file or =
directory)=0A=
open("xml.pyc", O_RDONLY) =3D -1 ENOENT (No such file or =
directory)=0A=
stat("/home/gvwilson/lib/python2.1/xml", {st_mode=3DS_IFDIR|0755, =
st_size=3D1024, ...}) =3D 0=0A=
stat("/home/gvwilson/lib/python2.1/xml/__init__.py", =
{st_mode=3DS_IFREG|0644, st_size=3D869, ...}) =3D 0=0A=
stat("/home/gvwilson/lib/python2.1/xml/__init__", 0xbfffe760) =3D -1 =
ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/xml/__init__.so", O_RDONLY) =3D -1 =
ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/xml/__init__module.so", O_RDONLY) =
=3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/xml/__init__.py", O_RDONLY) =3D 3=0A=
open("/home/gvwilson/lib/python2.1/xml", =
O_RDONLY|O_NONBLOCK|O_DIRECTORY) =3D 4=0A=
fstat(4, {st_mode=3DS_IFDIR|0755, st_size=3D1024, ...}) =3D 0=0A=
fcntl(4, F_SETFD, FD_CLOEXEC) =3D 0=0A=
getdents(4, /* 8 entries */, 3933) =3D 152=0A=
close(4) =3D 0=0A=
fstat(3, {st_mode=3DS_IFREG|0644, st_size=3D869, ...}) =3D 0=0A=
open("/home/gvwilson/lib/python2.1/xml/__init__.pyc", O_RDONLY) =3D =
4=0A=
fstat(4, {st_mode=3DS_IFREG|0666, st_size=3D1097, ...}) =3D 0=0A=
mmap(0, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) =
=3D 0x40013000=0A=
read(4, "*\353\r\n\332\274\232:c\0\0\0\0\5\0\0\0s\333\0\0\0\177"..., =
4096) =3D 1097=0A=
fstat(4, {st_mode=3DS_IFREG|0666, st_size=3D1097, ...}) =3D 0=0A=
read(4, "", 4096) =3D 0=0A=
close(4) =3D 0=0A=
munmap(0x40013000, 4096) =3D 0=0A=
stat("/home/gvwilson/lib/python2.1/xml/_xmlplus", 0xbfffd8e4) =3D -1 =
ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/xml/_xmlplus.so", O_RDONLY) =3D -1 =
ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/xml/_xmlplusmodule.so", O_RDONLY) =
=3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/xml/_xmlplus.py", O_RDONLY) =3D -1 =
ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/xml/_xmlplus.pyc", O_RDONLY) =3D -1 =
ENOENT (No such file or directory)=0A=
stat("_xmlplus", 0xbfffd8e4) =3D -1 ENOENT (No such file or =
directory)=0A=
open("_xmlplus.so", O_RDONLY) =3D -1 ENOENT (No such file or =
directory)=0A=
open("_xmlplusmodule.so", O_RDONLY) =3D -1 ENOENT (No such file or =
directory)=0A=
open("_xmlplus.py", O_RDONLY) =3D -1 ENOENT (No such file or =
directory)=0A=
open("_xmlplus.pyc", O_RDONLY) =3D -1 ENOENT (No such file or =
directory)=0A=
stat("/home/gvwilson/lib/python2.1/_xmlplus", 0xbfffd8e4) =3D -1 ENOENT =
(No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/_xmlplus.so", O_RDONLY) =3D -1 =
ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/_xmlplusmodule.so", O_RDONLY) =3D -1 =
ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/_xmlplus.py", O_RDONLY) =3D -1 =
ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/_xmlplus.pyc", O_RDONLY) =3D -1 =
ENOENT (No such file or directory)=0A=
stat("/home/gvwilson/lib/python2.1/lib-dynload/_xmlplus", 0xbfffd8e4) =
=3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/lib-dynload/_xmlplus.so", O_RDONLY) =
=3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/lib-dynload/_xmlplusmodule.so", =
O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/lib-dynload/_xmlplus.py", O_RDONLY) =
=3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/lib-dynload/_xmlplus.pyc", O_RDONLY) =
=3D -1 ENOENT (No such file or directory)=0A=
stat("/home/gvwilson/lib/python2.1/plat-linux2/_xmlplus", 0xbfffd8e4) =
=3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/plat-linux2/_xmlplus.so", O_RDONLY) =
=3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/plat-linux2/_xmlplusmodule.so", =
O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/plat-linux2/_xmlplus.py", O_RDONLY) =
=3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/plat-linux2/_xmlplus.pyc", O_RDONLY) =
=3D -1 ENOENT (No such file or directory)=0A=
stat("/home/gvwilson/lib/python2.1/lib-tk/_xmlplus", 0xbfffd8e4) =3D -1 =
ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/lib-tk/_xmlplus.so", O_RDONLY) =3D =
-1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/lib-tk/_xmlplusmodule.so", O_RDONLY) =
=3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/lib-tk/_xmlplus.py", O_RDONLY) =3D =
-1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/lib-tk/_xmlplus.pyc", O_RDONLY) =3D =
-1 ENOENT (No such file or directory)=0A=
stat("/home/gvwilson/lib/python2.1/site-packages/_xmlplus", =
{st_mode=3DS_IFDIR|0777, st_size=3D1024, ...}) =3D 0=0A=
stat("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/__init__.py", =
{st_mode=3DS_IFREG|0666, st_size=3D139, ...}) =3D 0=0A=
stat("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/__init__", =
0xbfffd49c) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/__init__.so", =
O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/__init__module=
.so", O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/__init__.py", =
O_RDONLY) =3D 4=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus", O_RDONLY|O_N=
ONBLOCK|O_DIRECTORY) =3D 5=0A=
fstat(5, {st_mode=3DS_IFDIR|0777, st_size=3D1024, ...}) =3D 0=0A=
fcntl(5, F_SETFD, FD_CLOEXEC) =3D 0=0A=
getdents(5, /* 12 entries */, 3933) =3D 240=0A=
close(5) =3D 0=0A=
fstat(4, {st_mode=3DS_IFREG|0666, st_size=3D139, ...}) =3D 0=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/__init__.pyc",=
O_RDONLY) =3D 5=0A=
fstat(5, {st_mode=3DS_IFREG|0666, st_size=3D356, ...}) =3D 0=0A=
mmap(0, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) =
=3D 0x40013000=0A=
read(5, "*\353\r\nl\200\221:c\0\0\0\0\5\0\0\0s:\0\0\0\177\0\0\177"..., =
4096) =3D 356=0A=
fstat(5, {st_mode=3DS_IFREG|0666, st_size=3D356, ...}) =3D 0=0A=
read(5, "", 4096) =3D 0=0A=
close(5) =3D 0=0A=
munmap(0x40013000, 4096) =3D 0=0A=
close(4) =3D 0=0A=
stat("/home/gvwilson/lib/python2.1/xml/sys", 0xbfffd8e4) =3D -1 ENOENT =
(No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/xml/sys.so", O_RDONLY) =3D -1 ENOENT =
(No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/xml/sysmodule.so", O_RDONLY) =3D -1 =
ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/xml/sys.py", O_RDONLY) =3D -1 ENOENT =
(No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/xml/sys.pyc", O_RDONLY) =3D -1 =
ENOENT (No such file or directory)=0A=
close(3) =3D 0=0A=
stat("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax", =
{st_mode=3DS_IFDIR|0777, st_size=3D1024, ...}) =3D 0=0A=
stat("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/__init__.p=
y", {st_mode=3DS_IFREG|0666, st_size=3D1602, ...}) =3D 0=0A=
stat("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/__init__",=
0xbfffe760) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/__init__.s=
o", O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/__init__mo=
dule.so", O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/__init__.p=
y", O_RDONLY) =3D 3=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax", =
O_RDONLY|O_NONBLOCK|O_DIRECTORY) =3D 4=0A=
fstat(4, {st_mode=3DS_IFDIR|0777, st_size=3D1024, ...}) =3D 0=0A=
fcntl(4, F_SETFD, FD_CLOEXEC) =3D 0=0A=
getdents(4, /* 24 entries */, 3933) =3D 556=0A=
close(4) =3D 0=0A=
fstat(3, {st_mode=3DS_IFREG|0666, st_size=3D1602, ...}) =3D 0=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/__init__.p=
yc", O_RDONLY) =3D 4=0A=
fstat(4, {st_mode=3DS_IFREG|0666, st_size=3D2729, ...}) =3D 0=0A=
mmap(0, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) =
=3D 0x40013000=0A=
read(4, "*\353\r\n{\216r:c\0\0\0\0\2\0\0\0s\222\0\0\0\177\0\0d\0"..., =
4096) =3D 2729=0A=
fstat(4, {st_mode=3DS_IFREG|0666, st_size=3D2729, ...}) =3D 0=0A=
read(4, "", 4096) =3D 0=0A=
close(4) =3D 0=0A=
munmap(0x40013000, 4096) =3D 0=0A=
stat("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/xmlreader"=
, 0xbfffd8e4) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/xmlreader.=
so", O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/xmlreaderm=
odule.so", O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/xmlreader.=
py", O_RDONLY) =3D 4=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax", =
O_RDONLY|O_NONBLOCK|O_DIRECTORY) =3D 5=0A=
fstat(5, {st_mode=3DS_IFDIR|0777, st_size=3D1024, ...}) =3D 0=0A=
fcntl(5, F_SETFD, FD_CLOEXEC) =3D 0=0A=
getdents(5, /* 24 entries */, 3933) =3D 556=0A=
close(5) =3D 0=0A=
fstat(4, {st_mode=3DS_IFREG|0666, st_size=3D12502, ...}) =3D 0=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/xmlreader.=
pyc", O_RDONLY) =3D 5=0A=
fstat(5, {st_mode=3DS_IFREG|0666, st_size=3D24062, ...}) =3D 0=0A=
mmap(0, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) =
=3D 0x40013000=0A=
read(5, "*\353\r\n\250\201a:c\0\0\0\0\10\0\0\0s\320\0\0\0\177\0"..., =
4096) =3D 4096=0A=
fstat(5, {st_mode=3DS_IFREG|0666, st_size=3D24062, ...}) =3D 0=0A=
read(5, " and warnings; if they cannot "..., 16384) =3D 16384=0A=
read(5, ".1/site-packages/_xmlplus/sax/xm"..., 4096) =3D 3582=0A=
read(5, "", 4096) =3D 0=0A=
brk(0x8107000) =3D 0x8107000=0A=
brk(0x8108000) =3D 0x8108000=0A=
brk(0x8109000) =3D 0x8109000=0A=
brk(0x810a000) =3D 0x810a000=0A=
brk(0x810b000) =3D 0x810b000=0A=
brk(0x810c000) =3D 0x810c000=0A=
brk(0x810d000) =3D 0x810d000=0A=
close(5) =3D 0=0A=
munmap(0x40013000, 4096) =3D 0=0A=
stat("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/handler", =
0xbfffca68) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/handler.so=
", O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/handlermod=
ule.so", O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/handler.py=
", O_RDONLY) =3D 5=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax", =
O_RDONLY|O_NONBLOCK|O_DIRECTORY) =3D 6=0A=
fstat(6, {st_mode=3DS_IFDIR|0777, st_size=3D1024, ...}) =3D 0=0A=
fcntl(6, F_SETFD, FD_CLOEXEC) =3D 0=0A=
getdents(6, /* 24 entries */, 3933) =3D 556=0A=
close(6) =3D 0=0A=
fstat(5, {st_mode=3DS_IFREG|0666, st_size=3D13058, ...}) =3D 0=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/handler.py=
c", O_RDONLY) =3D 6=0A=
fstat(6, {st_mode=3DS_IFREG|0666, st_size=3D14555, ...}) =3D 0=0A=
mmap(0, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) =
=3D 0x40013000=0A=
read(6, "*\353\r\n\22\233K:c\0\0\0\0\n\0\0\0s\373\0\0\0\177\0\0"..., =
4096) =3D 4096=0A=
fstat(6, {st_mode=3DS_IFREG|0666, st_size=3D14555, ...}) =3D 0=0A=
read(6, " any\n other methods in th"..., 8192) =3D 8192=0A=
read(6, "\0\177\344\0\177\346\0d\1\0\204\0\0Z\1\0RS(\2\0\0\0s7\1"..., =
4096) =3D 2267=0A=
read(6, "", 4096) =3D 0=0A=
close(6) =3D 0=0A=
munmap(0x40013000, 4096) =3D 0=0A=
close(5) =3D 0=0A=
brk(0x810e000) =3D 0x810e000=0A=
close(4) =3D 0=0A=
stat("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/_exception=
s", 0xbfffd8e4) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/_exception=
s.so", O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/_exception=
smodule.so", O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/_exception=
s.py", O_RDONLY) =3D 4=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax", =
O_RDONLY|O_NONBLOCK|O_DIRECTORY) =3D 5=0A=
fstat(5, {st_mode=3DS_IFDIR|0777, st_size=3D1024, ...}) =3D 0=0A=
fcntl(5, F_SETFD, FD_CLOEXEC) =3D 0=0A=
brk(0x8110000) =3D 0x8110000=0A=
getdents(5, /* 24 entries */, 3933) =3D 556=0A=
close(5) =3D 0=0A=
fstat(4, {st_mode=3DS_IFREG|0666, st_size=3D4318, ...}) =3D 0=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/_exception=
s.pyc", O_RDONLY) =3D 5=0A=
fstat(5, {st_mode=3DS_IFREG|0666, st_size=3D7362, ...}) =3D 0=0A=
mmap(0, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) =
=3D 0x40013000=0A=
read(5, "*\353\r\n\250\201a:c\0\0\0\0\7\0\0\0s\312\0\0\0\177\0\0"..., =
4096) =3D 4096=0A=
fstat(5, {st_mode=3DS_IFREG|0666, st_size=3D7362, ...}) =3D 0=0A=
read(5, "ors\r\0\0\0getLineNumber(\1\0\0\0s\4\0\0\0se"..., 4096) =3D =
3266=0A=
read(5, "", 4096) =3D 0=0A=
close(5) =3D 0=0A=
munmap(0x40013000, 4096) =3D 0=0A=
stat("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/sys", =
0xbfffca68) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/sys.so", =
O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/sysmodule.=
so", O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/sys.py", =
O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/sys.pyc", =
O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
close(4) =3D 0=0A=
stat("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/sax2exts",=
0xbfffd8e4) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/sax2exts.s=
o", O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/sax2extsmo=
dule.so", O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/sax2exts.p=
y", O_RDONLY) =3D 4=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax", =
O_RDONLY|O_NONBLOCK|O_DIRECTORY) =3D 5=0A=
fstat(5, {st_mode=3DS_IFDIR|0777, st_size=3D1024, ...}) =3D 0=0A=
fcntl(5, F_SETFD, FD_CLOEXEC) =3D 0=0A=
brk(0x8112000) =3D 0x8112000=0A=
getdents(5, /* 24 entries */, 3933) =3D 556=0A=
close(5) =3D 0=0A=
fstat(4, {st_mode=3DS_IFREG|0666, st_size=3D612, ...}) =3D 0=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/sax2exts.p=
yc", O_RDONLY) =3D 5=0A=
fstat(5, {st_mode=3DS_IFREG|0666, st_size=3D979, ...}) =3D 0=0A=
mmap(0, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) =
=3D 0x40013000=0A=
read(5, "*\353\r\n~\0\3219c\0\0\0\0\3\0\0\0s|\0\0\0\177\0\0d\0\0"..., =
4096) =3D 979=0A=
fstat(5, {st_mode=3DS_IFREG|0666, st_size=3D979, ...}) =3D 0=0A=
read(5, "", 4096) =3D 0=0A=
close(5) =3D 0=0A=
munmap(0x40013000, 4096) =3D 0=0A=
stat("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/saxexts", =
0xbfffca68) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/saxexts.so=
", O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/saxextsmod=
ule.so", O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/saxexts.py=
", O_RDONLY) =3D 5=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax", =
O_RDONLY|O_NONBLOCK|O_DIRECTORY) =3D 6=0A=
fstat(6, {st_mode=3DS_IFDIR|0777, st_size=3D1024, ...}) =3D 0=0A=
fcntl(6, F_SETFD, FD_CLOEXEC) =3D 0=0A=
getdents(6, /* 24 entries */, 3933) =3D 556=0A=
close(6) =3D 0=0A=
fstat(5, {st_mode=3DS_IFREG|0666, st_size=3D6591, ...}) =3D 0=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/saxexts.py=
c", O_RDONLY) =3D 6=0A=
fstat(6, {st_mode=3DS_IFREG|0666, st_size=3D10226, ...}) =3D 0=0A=
mmap(0, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) =
=3D 0x40013000=0A=
read(6, "*\353\r\n\370\216r:c\0\0\0\0\v\0\0\0s\25\1\0\0\177\0\0"..., =
4096) =3D 4096=0A=
fstat(6, {st_mode=3DS_IFREG|0666, st_size=3D10226, ...}) =3D 0=0A=
read(6, "\204\0\0Z\1\0\177X\0d\2\0\204\0\0Z\2\0\177]\0d\3\0\204"..., =
4096) =3D 4096=0A=
read(6, "on2.1/site-packages/_xmlplus/sax"..., 4096) =3D 2034=0A=
read(6, "", 4096) =3D 0=0A=
brk(0x8113000) =3D 0x8113000=0A=
brk(0x8114000) =3D 0x8114000=0A=
close(6) =3D 0=0A=
munmap(0x40013000, 4096) =3D 0=0A=
stat("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/string", =
0xbfffbbec) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/string.so"=
, O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/stringmodu=
le.so", O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/string.py"=
, O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/string.pyc=
", O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
stat("string", 0xbfffbbec) =3D -1 ENOENT (No such file or =
directory)=0A=
open("string.so", O_RDONLY) =3D -1 ENOENT (No such file or =
directory)=0A=
open("stringmodule.so", O_RDONLY) =3D -1 ENOENT (No such file or =
directory)=0A=
open("string.py", O_RDONLY) =3D -1 ENOENT (No such file or =
directory)=0A=
open("string.pyc", O_RDONLY) =3D -1 ENOENT (No such file or =
directory)=0A=
stat("/home/gvwilson/lib/python2.1/string", 0xbfffbbec) =3D -1 ENOENT =
(No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/string.so", O_RDONLY) =3D -1 ENOENT =
(No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/stringmodule.so", O_RDONLY) =3D -1 =
ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/string.py", O_RDONLY) =3D 6=0A=
open("/home/gvwilson/lib/python2.1", O_RDONLY|O_NONBLOCK|O_DIRECTORY) =
=3D 7=0A=
fstat(7, {st_mode=3DS_IFDIR|0755, st_size=3D10240, ...}) =3D 0=0A=
fcntl(7, F_SETFD, FD_CLOEXEC) =3D 0=0A=
brk(0x8116000) =3D 0x8116000=0A=
getdents(7, /* 53 entries */, 3933) =3D 1168=0A=
getdents(7, /* 52 entries */, 3933) =3D 1156=0A=
getdents(7, /* 53 entries */, 3933) =3D 1172=0A=
close(7) =3D 0=0A=
fstat(6, {st_mode=3DS_IFREG|0644, st_size=3D10950, ...}) =3D 0=0A=
open("/home/gvwilson/lib/python2.1/string.pyc", O_RDONLY) =3D 7=0A=
fstat(7, {st_mode=3DS_IFREG|0666, st_size=3D13791, ...}) =3D 0=0A=
mmap(0, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) =
=3D 0x40013000=0A=
read(7, "*\353\r\n\311\274\232:c\0\0\0\0\5\0\0\0s\312\2\0\0\177"..., =
4096) =3D 4096=0A=
fstat(7, {st_mode=3DS_IFREG|0666, st_size=3D13791, ...}) =3D 0=0A=
read(7, "string composed of the words in "..., 8192) =3D 8192=0A=
read(7, "\0s\t\0\0\0maketranss\t\0\0\0lowercases\t\0"..., 4096) =3D =
1503=0A=
read(7, "", 4096) =3D 0=0A=
brk(0x8117000) =3D 0x8117000=0A=
brk(0x8118000) =3D 0x8118000=0A=
brk(0x8119000) =3D 0x8119000=0A=
brk(0x811a000) =3D 0x811a000=0A=
close(7) =3D 0=0A=
munmap(0x40013000, 4096) =3D 0=0A=
brk(0x811b000) =3D 0x811b000=0A=
brk(0x811c000) =3D 0x811c000=0A=
brk(0x811d000) =3D 0x811d000=0A=
stat("strop", 0xbfffad70) =3D -1 ENOENT (No such file or =
directory)=0A=
open("strop.so", O_RDONLY) =3D -1 ENOENT (No such file or =
directory)=0A=
open("stropmodule.so", O_RDONLY) =3D -1 ENOENT (No such file or =
directory)=0A=
open("strop.py", O_RDONLY) =3D -1 ENOENT (No such file or =
directory)=0A=
open("strop.pyc", O_RDONLY) =3D -1 ENOENT (No such file or =
directory)=0A=
stat("/home/gvwilson/lib/python2.1/strop", 0xbfffad70) =3D -1 ENOENT =
(No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/strop.so", O_RDONLY) =3D -1 ENOENT =
(No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/stropmodule.so", O_RDONLY) =3D -1 =
ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/strop.py", O_RDONLY) =3D -1 ENOENT =
(No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/strop.pyc", O_RDONLY) =3D -1 ENOENT =
(No such file or directory)=0A=
stat("/home/gvwilson/lib/python2.1/lib-dynload/strop", 0xbfffad70) =3D =
-1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/lib-dynload/strop.so", O_RDONLY) =3D =
7=0A=
open("/home/gvwilson/lib/python2.1/lib-dynload", =
O_RDONLY|O_NONBLOCK|O_DIRECTORY) =3D 8=0A=
fstat(8, {st_mode=3DS_IFDIR|0777, st_size=3D1024, ...}) =3D 0=0A=
fcntl(8, F_SETFD, FD_CLOEXEC) =3D 0=0A=
brk(0x811f000) =3D 0x811f000=0A=
getdents(8, /* 54 entries */, 3933) =3D 1160=0A=
close(8) =3D 0=0A=
fstat(7, {st_mode=3DS_IFREG|0777, st_size=3D67204, ...}) =3D 0=0A=
open("/home/gvwilson/lib/python2.1/lib-dynload/strop.so", O_RDONLY) =3D =
8=0A=
fstat(8, {st_mode=3DS_IFREG|0777, st_size=3D67204, ...}) =3D 0=0A=
read(8, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\300\16"..., =
4096) =3D 4096=0A=
mmap(0, 21392, PROT_READ|PROT_EXEC, MAP_PRIVATE, 8, 0) =3D =
0x40013000=0A=
mprotect(0x40017000, 5008, PROT_NONE) =3D 0=0A=
mmap(0x40017000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED, 8, =
0x3000) =3D 0x40017000=0A=
close(8) =3D 0=0A=
close(7) =3D 0=0A=
close(6) =3D 0=0A=
stat("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/os", =
0xbfffbbec) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/os.so", =
O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/osmodule.s=
o", O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/os.py", =
O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/os.pyc", =
O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
stat("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/types", =
0xbfffbbec) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/types.so",=
O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/typesmodul=
e.so", O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/types.py",=
O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/types.pyc"=
, O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
stat("types", 0xbfffbbec) =3D -1 ENOENT (No such file or =
directory)=0A=
open("types.so", O_RDONLY) =3D -1 ENOENT (No such file or =
directory)=0A=
open("typesmodule.so", O_RDONLY) =3D -1 ENOENT (No such file or =
directory)=0A=
open("types.py", O_RDONLY) =3D -1 ENOENT (No such file or =
directory)=0A=
open("types.pyc", O_RDONLY) =3D -1 ENOENT (No such file or =
directory)=0A=
stat("/home/gvwilson/lib/python2.1/types", 0xbfffbbec) =3D -1 ENOENT =
(No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/types.so", O_RDONLY) =3D -1 ENOENT =
(No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/typesmodule.so", O_RDONLY) =3D -1 =
ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/types.py", O_RDONLY) =3D 6=0A=
open("/home/gvwilson/lib/python2.1", O_RDONLY|O_NONBLOCK|O_DIRECTORY) =
=3D 7=0A=
fstat(7, {st_mode=3DS_IFDIR|0755, st_size=3D10240, ...}) =3D 0=0A=
fcntl(7, F_SETFD, FD_CLOEXEC) =3D 0=0A=
getdents(7, /* 53 entries */, 3933) =3D 1168=0A=
getdents(7, /* 52 entries */, 3933) =3D 1156=0A=
getdents(7, /* 53 entries */, 3933) =3D 1172=0A=
close(7) =3D 0=0A=
fstat(6, {st_mode=3DS_IFREG|0644, st_size=3D1359, ...}) =3D 0=0A=
open("/home/gvwilson/lib/python2.1/types.pyc", O_RDONLY) =3D 7=0A=
fstat(7, {st_mode=3DS_IFREG|0666, st_size=3D2760, ...}) =3D 0=0A=
mmap(0, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) =
=3D 0x40019000=0A=
read(7, "*\353\r\n\311\274\232:c\0\0\0\0\6\0\0\0s\341\2\0\0\177"..., =
4096) =3D 2760=0A=
fstat(7, {st_mode=3DS_IFREG|0666, st_size=3D2760, ...}) =3D 0=0A=
read(7, "", 4096) =3D 0=0A=
close(7) =3D 0=0A=
munmap(0x40019000, 4096) =3D 0=0A=
close(6) =3D 0=0A=
stat("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/saxlib", =
0xbfffbbec) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/saxlib.so"=
, O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/saxlibmodu=
le.so", O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/saxlib.py"=
, O_RDONLY) =3D 6=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax", =
O_RDONLY|O_NONBLOCK|O_DIRECTORY) =3D 7=0A=
fstat(7, {st_mode=3DS_IFDIR|0777, st_size=3D1024, ...}) =3D 0=0A=
fcntl(7, F_SETFD, FD_CLOEXEC) =3D 0=0A=
brk(0x8121000) =3D 0x8121000=0A=
getdents(7, /* 24 entries */, 3933) =3D 556=0A=
close(7) =3D 0=0A=
fstat(6, {st_mode=3DS_IFREG|0666, st_size=3D15680, ...}) =3D 0=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/saxlib.pyc=
", O_RDONLY) =3D 7=0A=
fstat(7, {st_mode=3DS_IFREG|0666, st_size=3D26301, ...}) =3D 0=0A=
mmap(0, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) =
=3D 0x40019000=0A=
read(7, "*\353\r\n\370\216r:c\0\0\0\0\v\0\0\0sx\1\0\0\177\0\0d\0"..., =
4096) =3D 4096=0A=
fstat(7, {st_mode=3DS_IFREG|0666, st_size=3D26301, ...}) =3D 0=0A=
brk(0x8128000) =3D 0x8128000=0A=
read(7, "ntedError(\2\0\0\0s\4\0\0\0selfs\4\0\0\0name"..., 20480) =3D =
20480=0A=
read(7, "elfs\6\0\0\0locale(\0\0\0\0(\0\0\0\0sA\0\0\0/ho"..., 4096) =3D =
1725=0A=
read(7, "", 4096) =3D 0=0A=
brk(0x8129000) =3D 0x8129000=0A=
brk(0x812a000) =3D 0x812a000=0A=
brk(0x812b000) =3D 0x812b000=0A=
brk(0x812c000) =3D 0x812c000=0A=
brk(0x812d000) =3D 0x812d000=0A=
brk(0x812e000) =3D 0x812e000=0A=
brk(0x812f000) =3D 0x812f000=0A=
brk(0x8130000) =3D 0x8130000=0A=
close(7) =3D 0=0A=
munmap(0x40019000, 4096) =3D 0=0A=
close(6) =3D 0=0A=
close(5) =3D 0=0A=
close(4) =3D 0=0A=
close(3) =3D 0=0A=
stat("popen2", 0xbfffeaa8) =3D -1 ENOENT (No such file or =
directory)=0A=
open("popen2.so", O_RDONLY) =3D -1 ENOENT (No such file or =
directory)=0A=
open("popen2module.so", O_RDONLY) =3D -1 ENOENT (No such file or =
directory)=0A=
open("popen2.py", O_RDONLY) =3D -1 ENOENT (No such file or =
directory)=0A=
open("popen2.pyc", O_RDONLY) =3D -1 ENOENT (No such file or =
directory)=0A=
stat("/home/gvwilson/lib/python2.1/popen2", 0xbfffeaa8) =3D -1 ENOENT =
(No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/popen2.so", O_RDONLY) =3D -1 ENOENT =
(No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/popen2module.so", O_RDONLY) =3D -1 =
ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/popen2.py", O_RDONLY) =3D 3=0A=
open("/home/gvwilson/lib/python2.1", O_RDONLY|O_NONBLOCK|O_DIRECTORY) =
=3D 4=0A=
fstat(4, {st_mode=3DS_IFDIR|0755, st_size=3D10240, ...}) =3D 0=0A=
fcntl(4, F_SETFD, FD_CLOEXEC) =3D 0=0A=
getdents(4, /* 53 entries */, 3933) =3D 1168=0A=
getdents(4, /* 52 entries */, 3933) =3D 1156=0A=
close(4) =3D 0=0A=
fstat(3, {st_mode=3DS_IFREG|0644, st_size=3D6793, ...}) =3D 0=0A=
open("/home/gvwilson/lib/python2.1/popen2.pyc", O_RDONLY) =3D 4=0A=
fstat(4, {st_mode=3DS_IFREG|0666, st_size=3D9355, ...}) =3D 0=0A=
mmap(0, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) =
=3D 0x40019000=0A=
read(4, "*\353\r\n\307\274\232:c\0\0\0\0\5\0\0\0s]\1\0\0\177\0\0"..., =
4096) =3D 4096=0A=
fstat(4, {st_mode=3DS_IFREG|0666, st_size=3D9355, ...}) =3D 0=0A=
read(4, "d\2\0\204\1\0Z\2\0RS(\3\0\0\0Ni\1\0\0\0c\3\0\7\0\4\0\3"..., =
4096) =3D 4096=0A=
read(4, "\1\0j\3\0o\37\0\1\177\273\0t\r\0d\6\0|\5\0\r|\0\0\rf\2"..., =
4096) =3D 1163=0A=
read(4, "", 4096) =3D 0=0A=
close(4) =3D 0=0A=
munmap(0x40019000, 4096) =3D 0=0A=
close(3) =3D 0=0A=
pipe([3, 4]) =3D 0=0A=
pipe([5, 6]) =3D 0=0A=
fork() =3D 5072=0A=
[pid 5071] close(3) =3D 0=0A=
[pid 5071] fcntl(4, F_GETFL) =3D 0x1 (flags O_WRONLY)=0A=
[pid 5071] fstat(4, {st_mode=3DS_IFIFO|0600, st_size=3D0, ...}) =3D =
0=0A=
[pid 5071] mmap(0, 4096, PROT_READ|PROT_WRITE, =
MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) =3D 0x40019000=0A=
[pid 5071] _llseek(4, 0, 0xbffff438, SEEK_CUR) =3D -1 ESPIPE (Illegal =
seek)=0A=
[pid 5071] close(6) =3D 0=0A=
[pid 5071] fcntl(5, F_GETFL) =3D 0 (flags O_RDONLY)=0A=
[pid 5071] fstat(5, {st_mode=3DS_IFIFO|0600, st_size=3D0, ...}) =3D =
0=0A=
[pid 5071] mmap(0, 4096, PROT_READ|PROT_WRITE, =
MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) =3D 0x40141000=0A=
[pid 5071] _llseek(5, 0, 0xbffff438, SEEK_CUR) =3D -1 ESPIPE (Illegal =
seek)=0A=
[pid 5071] close(4) =3D 0=0A=
[pid 5071] munmap(0x40019000, 4096) =3D 0=0A=
[pid 5071] fstat(1, {st_mode=3DS_IFREG|0666, st_size=3D52384, ...}) =
=3D 0=0A=
[pid 5071] mmap(0, 4096, PROT_READ|PROT_WRITE, =
MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) =3D 0x40019000=0A=
[pid 5071] read(5, <unfinished ...>=0A=
[pid 5072] getpid() =3D 5072=0A=
[pid 5072] getpid() =3D 5072=0A=
[pid 5072] dup2(3, 0) =3D 0=0A=
[pid 5072] dup2(6, 1) =3D 1=0A=
[pid 5072] close(3) =3D 0=0A=
[pid 5072] close(4) =3D 0=0A=
[pid 5072] close(5) =3D 0=0A=
[pid 5072] close(6) =3D 0=0A=
[pid 5072] close(7) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(8) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(9) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(10) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(11) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(12) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(13) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(14) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(15) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(16) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(17) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(18) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(19) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(20) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(21) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(22) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(23) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(24) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(25) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(26) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(27) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(28) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(29) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(30) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(31) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(32) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(33) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(34) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(35) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(36) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(37) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(38) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(39) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(40) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(41) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(42) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(43) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(44) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(45) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(46) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(47) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(48) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(49) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(50) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(51) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(52) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(53) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(54) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(55) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(56) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(57) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(58) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(59) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(60) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(61) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(62) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(63) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(64) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(65) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(66) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(67) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(68) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(69) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(70) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(71) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(72) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(73) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(74) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(75) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(76) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(77) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(78) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(79) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(80) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(81) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(82) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(83) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(84) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(85) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(86) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(87) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(88) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(89) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(90) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(91) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(92) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(93) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(94) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(95) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(96) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(97) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(98) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(99) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(100) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(101) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(102) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(103) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(104) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(105) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(106) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(107) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(108) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(109) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(110) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(111) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(112) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(113) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(114) =3D -1 EBADF (Bad file descripto=
r)=0A=
[pid 5072] close(115) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(116) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(117) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(118) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(119) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(120) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(121) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(122) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(123) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(124) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(125) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(126) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(127) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(128) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(129) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(130) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(131) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(132) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(133) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(134) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(135) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(136) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(137) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(138) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(139) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(140) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(141) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(142) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(143) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(144) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(145) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(146) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(147) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(148) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(149) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(150) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(151) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(152) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(153) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(154) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(155) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(156) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(157) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(158) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(159) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(160) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(161) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(162) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(163) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(164) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(165) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(166) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(167) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(168) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(169) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(170) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(171) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(172) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(173) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(174) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(175) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(176) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(177) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(178) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(179) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(180) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(181) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(182) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(183) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(184) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(185) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(186) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(187) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(188) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(189) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(190) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(191) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(192) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(193) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(194) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(195) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(196) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(197) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(198) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(199) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(200) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(201) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(202) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(203) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(204) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(205) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(206) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(207) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(208) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(209) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(210) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(211) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(212) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(213) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(214) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(215) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(216) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(217) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(218) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(219) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(220) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(221) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(222) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(223) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(224) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(225) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(226) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(227) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(228) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(229) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(230) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(231) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(232) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(233) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(234) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(235) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(236) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(237) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(238) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(239) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(240) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(241) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(242) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(243) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(244) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(245) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(246) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(247) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(248) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(249) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(250) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(251) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(252) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(253) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(254) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] close(255) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] getpid() =3D 5072=0A=
[pid 5072] rt_sigaction(SIGRT_0, {SIG_DFL}, NULL, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGRT_1, {SIG_DFL}, NULL, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGRT_2, {SIG_DFL}, NULL, 8) =3D 0=0A=
[pid 5072] execve("/bin/sh", ["/bin/sh", "-c", "python tryout.py"], =
[/* 30 vars */]) =3D 0=0A=
[pid 5072] brk(0) =3D 0x80a5420=0A=
[pid 5072] open("/etc/ld.so.preload", O_RDONLY) =3D -1 ENOENT (No such =
file or directory)=0A=
[pid 5072] open("/usr/local/ace/ace/i686/mmx/libtermcap.so.2", =
O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
[pid 5072] stat("/usr/local/ace/ace/i686/mmx", 0xbffff550) =3D -1 =
ENOENT (No such file or directory)=0A=
[pid 5072] open("/usr/local/ace/ace/i686/libtermcap.so.2", O_RDONLY) =
=3D -1 ENOENT (No such file or directory)=0A=
[pid 5072] stat("/usr/local/ace/ace/i686", 0xbffff550) =3D -1 ENOENT =
(No such file or directory)=0A=
[pid 5072] open("/usr/local/ace/ace/mmx/libtermcap.so.2", O_RDONLY) =
=3D -1 ENOENT (No such file or directory)=0A=
[pid 5072] stat("/usr/local/ace/ace/mmx", 0xbffff550) =3D -1 ENOENT =
(No such file or directory)=0A=
[pid 5072] open("/usr/local/ace/ace/libtermcap.so.2", O_RDONLY) =3D -1 =
ENOENT (No such file or directory)=0A=
[pid 5072] stat("/usr/local/ace/ace", {st_mode=3DS_IFDIR|0775, =
st_size=3D19456, ...}) =3D 0=0A=
[pid 5072] open("/etc/ld.so.cache", O_RDONLY) =3D 3=0A=
[pid 5072] fstat(3, {st_mode=3DS_IFREG|0644, st_size=3D25676, ...}) =
=3D 0=0A=
[pid 5072] mmap(0, 25676, PROT_READ, MAP_PRIVATE, 3, 0) =3D =
0x40013000=0A=
[pid 5072] close(3) =3D 0=0A=
[pid 5072] open("/lib/libtermcap.so.2", O_RDONLY) =3D 3=0A=
[pid 5072] fstat(3, {st_mode=3DS_IFREG|0755, st_size=3D15001, ...}) =
=3D 0=0A=
[pid 5072] read(3, =
"\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\300\v\0"..., 4096) =3D =
4096=0A=
[pid 5072] mmap(0, 13896, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) =3D =
0x4001a000=0A=
[pid 5072] mprotect(0x4001d000, 1608, PROT_NONE) =3D 0=0A=
[pid 5072] mmap(0x4001d000, 4096, PROT_READ|PROT_WRITE, =
MAP_PRIVATE|MAP_FIXED, 3, 0x2000) =3D 0x4001d000=0A=
[pid 5072] close(3) =3D 0=0A=
[pid 5072] open("/usr/local/ace/ace/libc.so.6", O_RDONLY) =3D -1 =
ENOENT (No such file or directory)=0A=
[pid 5072] open("/lib/libc.so.6", O_RDONLY) =3D 3=0A=
[pid 5072] fstat(3, {st_mode=3DS_IFREG|0755, st_size=3D4118299, ...}) =
=3D 0=0A=
[pid 5072] read(3, =
"\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\250\202"..., 4096) =3D =
4096=0A=
[pid 5072] mmap(0, 4096, PROT_READ|PROT_WRITE, =
MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) =3D 0x4001e000=0A=
[pid 5072] mmap(0, 993500, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) =3D =
0x4001f000=0A=
[pid 5072] mprotect(0x4010a000, 30940, PROT_NONE) =3D 0=0A=
[pid 5072] mmap(0x4010a000, 16384, PROT_READ|PROT_WRITE, =
MAP_PRIVATE|MAP_FIXED, 3, 0xea000) =3D 0x4010a000=0A=
[pid 5072] mmap(0x4010e000, 14556, PROT_READ|PROT_WRITE, =
MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) =3D 0x4010e000=0A=
[pid 5072] close(3) =3D 0=0A=
[pid 5072] mprotect(0x4001f000, 962560, PROT_READ|PROT_WRITE) =3D 0=0A=
[pid 5072] mprotect(0x4001f000, 962560, PROT_READ|PROT_EXEC) =3D 0=0A=
[pid 5072] munmap(0x40013000, 25676) =3D 0=0A=
[pid 5072] personality(0 /* PER_??? */) =3D 0=0A=
[pid 5072] getpid() =3D 5072=0A=
[pid 5072] brk(0) =3D 0x80a5420=0A=
[pid 5072] brk(0x80a55c0) =3D 0x80a55c0=0A=
[pid 5072] brk(0x80a6000) =3D 0x80a6000=0A=
[pid 5072] getuid() =3D 1002=0A=
[pid 5072] getgid() =3D 100=0A=
[pid 5072] geteuid() =3D 1002=0A=
[pid 5072] getegid() =3D 100=0A=
[pid 5072] time(NULL) =3D 983229974=0A=
[pid 5072] rt_sigaction(SIGCHLD, {SIG_DFL}, {SIG_DFL}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGCHLD, {SIG_DFL}, {SIG_DFL}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGINT, {SIG_DFL}, {SIG_DFL}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGINT, {SIG_DFL}, {SIG_DFL}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGQUIT, {SIG_DFL}, {SIG_DFL}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGQUIT, {SIG_DFL}, {SIG_DFL}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGHUP, {0x804bb38, [HUP INT ILL TRAP ABRT BUS =
FPE USR1 SEGV USR2 PIPE ALRM TERM XCPU XFSZ VTALRM PROF], 0x4000000}, =
{SIG_DFL}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGINT, {0x804bb38, [HUP INT ILL TRAP ABRT BUS =
FPE USR1 SEGV USR2 PIPE ALRM TERM XCPU XFSZ VTALRM PROF], 0x4000000}, =
{SIG_DFL}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGILL, {0x804bb38, [HUP INT ILL TRAP ABRT BUS =
FPE USR1 SEGV USR2 PIPE ALRM TERM XCPU XFSZ VTALRM PROF], 0x4000000}, =
{SIG_DFL}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGTRAP, {0x804bb38, [HUP INT ILL TRAP ABRT =
BUS FPE USR1 SEGV USR2 PIPE ALRM TERM XCPU XFSZ VTALRM PROF], =
0x4000000}, {SIG_DFL}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGABRT, {0x804bb38, [HUP INT ILL TRAP ABRT =
BUS FPE USR1 SEGV USR2 PIPE ALRM TERM XCPU XFSZ VTALRM PROF], =
0x4000000}, {SIG_DFL}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGFPE, {0x804bb38, [HUP INT ILL TRAP ABRT BUS =
FPE USR1 SEGV USR2 PIPE ALRM TERM XCPU XFSZ VTALRM PROF], 0x4000000}, =
{SIG_DFL}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGBUS, {0x804bb38, [HUP INT ILL TRAP ABRT BUS =
FPE USR1 SEGV USR2 PIPE ALRM TERM XCPU XFSZ VTALRM PROF], 0x4000000}, =
{SIG_DFL}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGSEGV, {0x804bb38, [HUP INT ILL TRAP ABRT =
BUS FPE USR1 SEGV USR2 PIPE ALRM TERM XCPU XFSZ VTALRM PROF], =
0x4000000}, {SIG_DFL}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGPIPE, {0x804bb38, [HUP INT ILL TRAP ABRT =
BUS FPE USR1 SEGV USR2 PIPE ALRM TERM XCPU XFSZ VTALRM PROF], =
0x4000000}, {SIG_IGN}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGPIPE, {SIG_IGN}, {0x804bb38, [HUP INT ILL =
TRAP ABRT BUS FPE USR1 SEGV USR2 PIPE ALRM TERM XCPU XFSZ VTALRM PROF], =
0x4000000}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGALRM, {0x804bb38, [HUP INT ILL TRAP ABRT =
BUS FPE USR1 SEGV USR2 PIPE ALRM TERM XCPU XFSZ VTALRM PROF], =
0x4000000}, {SIG_DFL}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGTERM, {0x804bb38, [HUP INT ILL TRAP ABRT =
BUS FPE USR1 SEGV USR2 PIPE ALRM TERM XCPU XFSZ VTALRM PROF], =
0x4000000}, {SIG_DFL}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGXCPU, {0x804bb38, [HUP INT ILL TRAP ABRT =
BUS FPE USR1 SEGV USR2 PIPE ALRM TERM XCPU XFSZ VTALRM PROF], =
0x4000000}, {SIG_DFL}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGXFSZ, {0x804bb38, [HUP INT ILL TRAP ABRT =
BUS FPE USR1 SEGV USR2 PIPE ALRM TERM XCPU XFSZ VTALRM PROF], =
0x4000000}, {SIG_DFL}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGVTALRM, {0x804bb38, [HUP INT ILL TRAP ABRT =
BUS FPE USR1 SEGV USR2 PIPE ALRM TERM XCPU XFSZ VTALRM PROF], =
0x4000000}, {SIG_DFL}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGPROF, {0x804bb38, [HUP INT ILL TRAP ABRT =
BUS FPE USR1 SEGV USR2 PIPE ALRM TERM XCPU XFSZ VTALRM PROF], =
0x4000000}, {SIG_DFL}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGUSR1, {0x804bb38, [HUP INT ILL TRAP ABRT =
BUS FPE USR1 SEGV USR2 PIPE ALRM TERM XCPU XFSZ VTALRM PROF], =
0x4000000}, {SIG_DFL}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGUSR2, {0x804bb38, [HUP INT ILL TRAP ABRT =
BUS FPE USR1 SEGV USR2 PIPE ALRM TERM XCPU XFSZ VTALRM PROF], =
0x4000000}, {SIG_DFL}, 8) =3D 0=0A=
[pid 5072] rt_sigprocmask(SIG_BLOCK, NULL, [RT_0], 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGQUIT, {SIG_IGN}, {SIG_DFL}, 8) =3D 0=0A=
[pid 5072] socket(PF_UNIX, SOCK_STREAM, 0) =3D 3=0A=
[pid 5072] connect(3, {sun_family=3DAF_UNIX, =
sun_path=3D"/var/run/.nscd_socket"}, 110) =3D -1 ECONNREFUSED =
(Connection refused)=0A=
[pid 5072] close(3) =3D 0=0A=
[pid 5072] open("/etc/nsswitch.conf", O_RDONLY) =3D 3=0A=
[pid 5072] fstat(3, {st_mode=3DS_IFREG|0644, st_size=3D1744, ...}) =3D =
0=0A=
[pid 5072] mmap(0, 4096, PROT_READ|PROT_WRITE, =
MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) =3D 0x40013000=0A=
[pid 5072] read(3, "#\n# /etc/nsswitch.conf\n#\n# An ex"..., 4096) =3D =
1744=0A=
[pid 5072] brk(0x80a7000) =3D 0x80a7000=0A=
[pid 5072] read(3, "", 4096) =3D 0=0A=
[pid 5072] close(3) =3D 0=0A=
[pid 5072] munmap(0x40013000, 4096) =3D 0=0A=
[pid 5072] open("/usr/local/ace/ace/libnss_files.so.2", O_RDONLY) =3D =
-1 ENOENT (No such file or directory)=0A=
[pid 5072] open("/etc/ld.so.cache", O_RDONLY) =3D 3=0A=
[pid 5072] fstat(3, {st_mode=3DS_IFREG|0644, st_size=3D25676, ...}) =
=3D 0=0A=
[pid 5072] mmap(0, 25676, PROT_READ, MAP_PRIVATE, 3, 0) =3D =
0x40013000=0A=
[pid 5072] close(3) =3D 0=0A=
[pid 5072] open("/lib/libnss_files.so.2", O_RDONLY) =3D 3=0A=
[pid 5072] fstat(3, {st_mode=3DS_IFREG|0755, st_size=3D247348, ...}) =
=3D 0=0A=
[pid 5072] read(3, =
"\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\360\33"..., 4096) =3D =
4096=0A=
[pid 5072] mmap(0, 35232, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) =3D =
0x40112000=0A=
[pid 5072] mprotect(0x4011a000, 2464, PROT_NONE) =3D 0=0A=
[pid 5072] mmap(0x4011a000, 4096, PROT_READ|PROT_WRITE, =
MAP_PRIVATE|MAP_FIXED, 3, 0x7000) =3D 0x4011a000=0A=
[pid 5072] close(3) =3D 0=0A=
[pid 5072] munmap(0x40013000, 25676) =3D 0=0A=
[pid 5072] open("/etc/passwd", O_RDONLY) =3D 3=0A=
[pid 5072] fcntl(3, F_GETFD) =3D 0=0A=
[pid 5072] fcntl(3, F_SETFD, FD_CLOEXEC) =3D 0=0A=
[pid 5072] fstat(3, {st_mode=3DS_IFREG|0644, st_size=3D4890, ...}) =3D =
0=0A=
[pid 5072] mmap(0, 4096, PROT_READ|PROT_WRITE, =
MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) =3D 0x40013000=0A=
[pid 5072] read(3, "root:DSVw9Br8/N7yc:0:0:root:/roo"..., 4096) =3D =
4096=0A=
[pid 5072] close(3) =3D 0=0A=
[pid 5072] munmap(0x40013000, 4096) =3D 0=0A=
[pid 5072] uname({sys=3D"Linux", node=3D"akbar.nevex.com", ...}) =3D =
0=0A=
[pid 5072] open("/usr/local/ace/ace/libnss_nisplus.so.2", O_RDONLY) =
=3D -1 ENOENT (No such file or directory)=0A=
[pid 5072] open("/etc/ld.so.cache", O_RDONLY) =3D 3=0A=
[pid 5072] fstat(3, {st_mode=3DS_IFREG|0644, st_size=3D25676, ...}) =
=3D 0=0A=
[pid 5072] mmap(0, 25676, PROT_READ, MAP_PRIVATE, 3, 0) =3D =
0x40013000=0A=
[pid 5072] close(3) =3D 0=0A=
[pid 5072] open("/lib/libnss_nisplus.so.2", O_RDONLY) =3D 3=0A=
[pid 5072] fstat(3, {st_mode=3DS_IFREG|0755, st_size=3D253826, ...}) =
=3D 0=0A=
[pid 5072] read(3, =
"\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\320\32"..., 4096) =3D =
4096=0A=
[pid 5072] mmap(0, 40852, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) =3D =
0x4011b000=0A=
[pid 5072] mprotect(0x40124000, 3988, PROT_NONE) =3D 0=0A=
[pid 5072] mmap(0x40124000, 4096, PROT_READ|PROT_WRITE, =
MAP_PRIVATE|MAP_FIXED, 3, 0x8000) =3D 0x40124000=0A=
[pid 5072] close(3) =3D 0=0A=
[pid 5072] open("/usr/local/ace/ace/libnsl.so.1", O_RDONLY) =3D -1 =
ENOENT (No such file or directory)=0A=
[pid 5072] open("/lib/libnsl.so.1", O_RDONLY) =3D 3=0A=
[pid 5072] fstat(3, {st_mode=3DS_IFREG|0755, st_size=3D372604, ...}) =
=3D 0=0A=
[pid 5072] read(3, =
"\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\2408\0"..., 4096) =3D =
4096=0A=
[pid 5072] mmap(0, 86440, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) =3D =
0x40125000=0A=
[pid 5072] mprotect(0x40137000, 12712, PROT_NONE) =3D 0=0A=
[pid 5072] mmap(0x40137000, 4096, PROT_READ|PROT_WRITE, =
MAP_PRIVATE|MAP_FIXED, 3, 0x11000) =3D 0x40137000=0A=
[pid 5072] mmap(0x40138000, 8616, PROT_READ|PROT_WRITE, =
MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) =3D 0x40138000=0A=
[pid 5072] close(3) =3D 0=0A=
[pid 5072] munmap(0x40013000, 25676) =3D 0=0A=
[pid 5072] open("/usr/local/ace/ace/libnss_nis.so.2", O_RDONLY) =3D -1 =
ENOENT (No such file or directory)=0A=
[pid 5072] open("/etc/ld.so.cache", O_RDONLY) =3D 3=0A=
[pid 5072] fstat(3, {st_mode=3DS_IFREG|0644, st_size=3D25676, ...}) =
=3D 0=0A=
[pid 5072] mmap(0, 25676, PROT_READ, MAP_PRIVATE, 3, 0) =3D =
0x40013000=0A=
[pid 5072] close(3) =3D 0=0A=
[pid 5072] open("/lib/libnss_nis.so.2", O_RDONLY) =3D 3=0A=
[pid 5072] fstat(3, {st_mode=3DS_IFREG|0755, st_size=3D254027, ...}) =
=3D 0=0A=
[pid 5072] read(3, =
"\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\240\32"..., 4096) =3D =
4096=0A=
[pid 5072] mmap(0, 36368, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) =3D =
0x4013b000=0A=
[pid 5072] mprotect(0x40143000, 3600, PROT_NONE) =3D 0=0A=
[pid 5072] mmap(0x40143000, 4096, PROT_READ|PROT_WRITE, =
MAP_PRIVATE|MAP_FIXED, 3, 0x7000) =3D 0x40143000=0A=
[pid 5072] close(3) =3D 0=0A=
[pid 5072] munmap(0x40013000, 25676) =3D 0=0A=
[pid 5072] brk(0x80a8000) =3D 0x80a8000=0A=
[pid 5072] brk(0x80aa000) =3D 0x80aa000=0A=
[pid 5072] getcwd("/a/akbar/home/gvwilson/p2", 4095) =3D 26=0A=
[pid 5072] getpid() =3D 5072=0A=
[pid 5072] getppid() =3D 5071=0A=
[pid 5072] getpgrp() =3D 5070=0A=
[pid 5072] fcntl(-1, F_SETFD, FD_CLOEXEC) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5072] rt_sigaction(SIGCHLD, {0x806059c, [], 0x4000000}, =
{SIG_DFL}, 8) =3D 0=0A=
[pid 5072] brk(0x80ab000) =3D 0x80ab000=0A=
[pid 5072] stat(".", {st_mode=3DS_IFDIR|0777, st_size=3D1024, ...}) =
=3D 0=0A=
[pid 5072] stat("/home/gvwilson/bin/python", {st_mode=3DS_IFREG|0755, =
st_size=3D1407749, ...}) =3D 0=0A=
[pid 5072] brk(0x80ac000) =3D 0x80ac000=0A=
[pid 5072] rt_sigaction(SIGHUP, {SIG_DFL}, NULL, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGILL, {SIG_DFL}, NULL, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGTRAP, {SIG_DFL}, NULL, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGABRT, {SIG_DFL}, NULL, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGFPE, {SIG_DFL}, NULL, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGBUS, {SIG_DFL}, NULL, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGSEGV, {SIG_DFL}, NULL, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGPIPE, {SIG_IGN}, NULL, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGALRM, {SIG_DFL}, NULL, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGTERM, {SIG_DFL}, NULL, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGXCPU, {SIG_DFL}, NULL, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGXFSZ, {SIG_DFL}, NULL, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGVTALRM, {SIG_DFL}, NULL, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGPROF, {SIG_DFL}, NULL, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGUSR1, {SIG_DFL}, NULL, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGUSR2, {SIG_DFL}, NULL, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGINT, {SIG_DFL}, {0x804bb38, [HUP INT ILL =
TRAP ABRT BUS FPE USR1 SEGV USR2 PIPE ALRM TERM XCPU XFSZ VTALRM PROF], =
0x4000000}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGQUIT, {SIG_DFL}, {SIG_IGN}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGCHLD, {SIG_DFL}, {0x806059c, [], =
0x4000000}, 8) =3D 0=0A=
[pid 5072] execve("/home/gvwilson/bin/python", ["python", =
"tryout.py"], [/* 29 vars */]) =3D 0=0A=
[pid 5072] brk(0) =3D 0x80bf6dc=0A=
[pid 5072] open("/etc/ld.so.preload", O_RDONLY) =3D -1 ENOENT (No such =
file or directory)=0A=
[pid 5072] open("/usr/local/ace/ace/i686/mmx/libpthread.so.0", =
O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
[pid 5072] stat("/usr/local/ace/ace/i686/mmx", 0xbffff550) =3D -1 =
ENOENT (No such file or directory)=0A=
[pid 5072] open("/usr/local/ace/ace/i686/libpthread.so.0", O_RDONLY) =
=3D -1 ENOENT (No such file or directory)=0A=
[pid 5072] stat("/usr/local/ace/ace/i686", 0xbffff550) =3D -1 ENOENT =
(No such file or directory)=0A=
[pid 5072] open("/usr/local/ace/ace/mmx/libpthread.so.0", O_RDONLY) =
=3D -1 ENOENT (No such file or directory)=0A=
[pid 5072] stat("/usr/local/ace/ace/mmx", 0xbffff550) =3D -1 ENOENT =
(No such file or directory)=0A=
[pid 5072] open("/usr/local/ace/ace/libpthread.so.0", O_RDONLY) =3D -1 =
ENOENT (No such file or directory)=0A=
[pid 5072] stat("/usr/local/ace/ace", {st_mode=3DS_IFDIR|0775, =
st_size=3D19456, ...}) =3D 0=0A=
[pid 5072] open("/etc/ld.so.cache", O_RDONLY) =3D 3=0A=
[pid 5072] fstat(3, {st_mode=3DS_IFREG|0644, st_size=3D25676, ...}) =
=3D 0=0A=
[pid 5072] mmap(0, 25676, PROT_READ, MAP_PRIVATE, 3, 0) =3D =
0x40013000=0A=
[pid 5072] close(3) =3D 0=0A=
[pid 5072] open("/lib/libpthread.so.0", O_RDONLY) =3D 3=0A=
[pid 5072] fstat(3, {st_mode=3DS_IFREG|0755, st_size=3D247381, ...}) =
=3D 0=0A=
[pid 5072] read(3, =
"\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\3407\0"..., 4096) =3D =
4096=0A=
[pid 5072] mmap(0, 69188, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) =3D =
0x4001a000=0A=
[pid 5072] mprotect(0x40024000, 28228, PROT_NONE) =3D 0=0A=
[pid 5072] mmap(0x40024000, 28672, PROT_READ|PROT_WRITE, =
MAP_PRIVATE|MAP_FIXED, 3, 0x9000) =3D 0x40024000=0A=
[pid 5072] close(3) =3D 0=0A=
[pid 5072] open("/usr/local/ace/ace/libdl.so.2", O_RDONLY) =3D -1 =
ENOENT (No such file or directory)=0A=
[pid 5072] open("/lib/libdl.so.2", O_RDONLY) =3D 3=0A=
[pid 5072] fstat(3, {st_mode=3DS_IFREG|0755, st_size=3D74663, ...}) =
=3D 0=0A=
[pid 5072] read(3, =
"\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0p\31\0\000"..., 4096) =
=3D 4096=0A=
[pid 5072] mmap(0, 4096, PROT_READ|PROT_WRITE, =
MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) =3D 0x4002b000=0A=
[pid 5072] mmap(0, 11532, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) =3D =
0x4002c000=0A=
[pid 5072] mprotect(0x4002e000, 3340, PROT_NONE) =3D 0=0A=
[pid 5072] mmap(0x4002e000, 4096, PROT_READ|PROT_WRITE, =
MAP_PRIVATE|MAP_FIXED, 3, 0x1000) =3D 0x4002e000=0A=
[pid 5072] close(3) =3D 0=0A=
[pid 5072] open("/usr/local/ace/ace/libutil.so.1", O_RDONLY) =3D -1 =
ENOENT (No such file or directory)=0A=
[pid 5072] open("/lib/libutil.so.1", O_RDONLY) =3D 3=0A=
[pid 5072] fstat(3, {st_mode=3DS_IFREG|0755, st_size=3D46504, ...}) =
=3D 0=0A=
[pid 5072] read(3, =
"\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0P\f\0\000"..., 4096) =
=3D 4096=0A=
[pid 5072] mmap(0, 10104, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) =3D =
0x4002f000=0A=
[pid 5072] mprotect(0x40031000, 1912, PROT_NONE) =3D 0=0A=
[pid 5072] mmap(0x40031000, 4096, PROT_READ|PROT_WRITE, =
MAP_PRIVATE|MAP_FIXED, 3, 0x1000) =3D 0x40031000=0A=
[pid 5072] close(3) =3D 0=0A=
[pid 5072] open("/usr/local/ace/ace/libm.so.6", O_RDONLY) =3D -1 =
ENOENT (No such file or directory)=0A=
[pid 5072] open("/lib/libm.so.6", O_RDONLY) =3D 3=0A=
[pid 5072] fstat(3, {st_mode=3DS_IFREG|0755, st_size=3D540120, ...}) =
=3D 0=0A=
[pid 5072] read(3, =
"\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\320=3D\0"..., 4096) =
=3D 4096=0A=
[pid 5072] mmap(0, 114648, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) =3D =
0x40032000=0A=
[pid 5072] mprotect(0x4004d000, 4056, PROT_NONE) =3D 0=0A=
[pid 5072] mmap(0x4004d000, 4096, PROT_READ|PROT_WRITE, =
MAP_PRIVATE|MAP_FIXED, 3, 0x1a000) =3D 0x4004d000=0A=
[pid 5072] close(3) =3D 0=0A=
[pid 5072] open("/usr/local/ace/ace/libc.so.6", O_RDONLY) =3D -1 =
ENOENT (No such file or directory)=0A=
[pid 5072] open("/lib/libc.so.6", O_RDONLY) =3D 3=0A=
[pid 5072] fstat(3, {st_mode=3DS_IFREG|0755, st_size=3D4118299, ...}) =
=3D 0=0A=
[pid 5072] read(3, =
"\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\250\202"..., 4096) =3D =
4096=0A=
[pid 5072] mmap(0, 993500, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) =3D =
0x4004e000=0A=
[pid 5072] mprotect(0x40139000, 30940, PROT_NONE) =3D 0=0A=
[pid 5072] mmap(0x40139000, 16384, PROT_READ|PROT_WRITE, =
MAP_PRIVATE|MAP_FIXED, 3, 0xea000) =3D 0x40139000=0A=
[pid 5072] mmap(0x4013d000, 14556, PROT_READ|PROT_WRITE, =
MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) =3D 0x4013d000=0A=
[pid 5072] close(3) =3D 0=0A=
[pid 5072] mprotect(0x4004e000, 962560, PROT_READ|PROT_WRITE) =3D 0=0A=
[pid 5072] mprotect(0x4004e000, 962560, PROT_READ|PROT_EXEC) =3D 0=0A=
[pid 5072] munmap(0x40013000, 25676) =3D 0=0A=
[pid 5072] personality(0 /* PER_??? */) =3D 0=0A=
[pid 5072] getpid() =3D 5072=0A=
[pid 5072] getrlimit(RLIMIT_STACK, {rlim_cur=3D2040*1024, =
rlim_max=3DRLIM_INFINITY}) =3D 0=0A=
[pid 5072] getpid() =3D 5072=0A=
[pid 5072] uname({sys=3D"Linux", node=3D"akbar.nevex.com", ...}) =3D =
0=0A=
[pid 5072] rt_sigaction(SIGRT_0, {0x40020e10, [], 0x4000000}, NULL, 8) =
=3D 0=0A=
[pid 5072] rt_sigaction(SIGRT_1, {0x400207ac, [], 0x4000000}, NULL, 8) =
=3D 0=0A=
[pid 5072] rt_sigaction(SIGRT_2, {0x40020e9c, [], 0x4000000}, NULL, 8) =
=3D 0=0A=
[pid 5072] rt_sigprocmask(SIG_BLOCK, [RT_0], NULL, 8) =3D 0=0A=
[pid 5072] brk(0) =3D 0x80bf6dc=0A=
[pid 5072] brk(0x80bf70c) =3D 0x80bf70c=0A=
[pid 5072] brk(0x80c0000) =3D 0x80c0000=0A=
[pid 5072] open("tryout.py", O_RDONLY) =3D 3=0A=
[pid 5072] ioctl(0, TCGETS, 0xbffffabc) =3D -1 EINVAL (Invalid =
argument)=0A=
[pid 5072] brk(0x80c1000) =3D 0x80c1000=0A=
[pid 5072] brk(0x80c2000) =3D 0x80c2000=0A=
[pid 5072] brk(0x80c3000) =3D 0x80c3000=0A=
[pid 5072] brk(0x80c4000) =3D 0x80c4000=0A=
[pid 5072] stat("/home/gvwilson/bin/python", {st_mode=3DS_IFREG|0755, =
st_size=3D1407749, ...}) =3D 0=0A=
[pid 5072] readlink("/home/gvwilson/bin/python", "python2.1", 1024) =
=3D 9=0A=
[pid 5072] readlink("/home/gvwilson/bin/python2.1", 0xbffff30c, 1024) =
=3D -1 EINVAL (Invalid argument)=0A=
[pid 5072] stat("/home/gvwilson/bin/Modules/Setup", 0xbffff1f4) =3D -1 =
ENOENT (No such file or directory)=0A=
[pid 5072] stat("/home/gvwilson/bin/lib/python2.1/os.py", 0xbffff1d4) =
=3D -1 ENOENT (No such file or directory)=0A=
[pid 5072] stat("/home/gvwilson/bin/lib/python2.1/os.pyc", 0xbffff1cc) =
=3D -1 ENOENT (No such file or directory)=0A=
[pid 5072] stat("/home/gvwilson/lib/python2.1/os.py", =
{st_mode=3DS_IFREG|0644, st_size=3D16300, ...}) =3D 0=0A=
[pid 5072] stat("/home/gvwilson/bin/Modules/Setup", 0xbffff1f8) =3D -1 =
ENOENT (No such file or directory)=0A=
[pid 5072] stat("/home/gvwilson/bin/lib/python2.1/lib-dynload", =
0xbffff1f0) =3D -1 ENOENT (No such file or directory)=0A=
[pid 5072] stat("/home/gvwilson/lib/python2.1/lib-dynload", =
{st_mode=3DS_IFDIR|0777, st_size=3D1024, ...}) =3D 0=0A=
[pid 5072] brk(0x80c5000) =3D 0x80c5000=0A=
[pid 5072] brk(0x80c6000) =3D 0x80c6000=0A=
[pid 5072] brk(0x80c7000) =3D 0x80c7000=0A=
[pid 5072] brk(0x80c8000) =3D 0x80c8000=0A=
[pid 5072] brk(0x80c9000) =3D 0x80c9000=0A=
[pid 5072] brk(0x80ca000) =3D 0x80ca000=0A=
[pid 5072] rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) =3D 0=0A=
[pid 5072] getpid() =3D 5072=0A=
[pid 5072] brk(0x80cb000) =3D 0x80cb000=0A=
[pid 5072] rt_sigaction(SIGHUP, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGINT, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGQUIT, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGILL, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGTRAP, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGABRT, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGBUS, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGFPE, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGKILL, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGUSR1, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGSEGV, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGUSR2, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGPIPE, NULL, {SIG_IGN}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGALRM, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGTERM, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGSTKFLT, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGCHLD, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGCONT, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGSTOP, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGTSTP, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGTTIN, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGTTOU, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGURG, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGXCPU, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGXFSZ, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGVTALRM, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGPROF, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGWINCH, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGIO, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGPWR, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGUNUSED, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGRT_3, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGRT_4, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGRT_5, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGRT_6, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGRT_7, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGRT_8, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGRT_9, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGRT_10, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGRT_11, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGRT_12, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGRT_13, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGRT_14, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGRT_15, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGRT_16, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGRT_17, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGRT_18, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGRT_19, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGRT_20, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGRT_21, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGRT_22, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGRT_23, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGRT_24, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGRT_25, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGRT_26, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGRT_27, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGRT_28, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGRT_29, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGRT_30, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGRT_31, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGINT, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5072] rt_sigaction(SIGINT, {0x40021460, [], 0x4000000}, NULL, 8) =
=3D 0=0A=
[pid 5072] brk(0x80cd000) =3D 0x80cd000=0A=
[pid 5072] stat("/home/gvwilson/lib/python2.1/site", 0xbfffec9c) =3D =
-1 ENOENT (No such file or directory)=0A=
[pid 5072] open("/home/gvwilson/lib/python2.1/site.so", O_RDONLY) =3D =
-1 ENOENT (No such file or directory)=0A=
[pid 5072] open("/home/gvwilson/lib/python2.1/sitemodule.so", =
O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
[pid 5072] open("/home/gvwilson/lib/python2.1/site.py", O_RDONLY) =3D =
4=0A=
[pid 5072] open("/dev/null", O_RDONLY|O_NONBLOCK|O_DIRECTORY) =3D -1 =
ENOTDIR (Not a directory)=0A=
[pid 5072] open("/home/gvwilson/lib/python2.1", =
O_RDONLY|O_NONBLOCK|O_DIRECTORY) =3D 5=0A=
[pid 5072] fstat(5, {st_mode=3DS_IFDIR|0755, st_size=3D10240, ...}) =
=3D 0=0A=
[pid 5072] fcntl(5, F_SETFD, FD_CLOEXEC) =3D 0=0A=
[pid 5072] getdents(5, /* 53 entries */, 3933) =3D 1168=0A=
[pid 5072] getdents(5, /* 52 entries */, 3933) =3D 1156=0A=
[pid 5072] getdents(5, /* 53 entries */, 3933) =3D 1172=0A=
[pid 5072] close(5) =3D 0=0A=
[pid 5072] fstat(4, {st_mode=3DS_IFREG|0644, st_size=3D8778, ...}) =3D =
0=0A=
[pid 5072] open("/home/gvwilson/lib/python2.1/site.pyc", O_RDONLY) =3D =
5=0A=
[pid 5072] fstat(5, {st_mode=3DS_IFREG|0666, st_size=3D9529, ...}) =3D =
0=0A=
[pid 5072] mmap(0, 4096, PROT_READ|PROT_WRITE, =
MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) =3D 0x40013000=0A=
[pid 5072] read(5, =
"*\353\r\n\310\274\232:c\0\0\0\0\t\0\0\0s\343\4\0\0\177"..., 4096) =3D =
4096=0A=
[pid 5072] fstat(5, {st_mode=3DS_IFREG|0666, st_size=3D9529, ...}) =3D =
0=0A=
[pid 5072] read(5, "\203\1\0}\1\0Wn =
\0\177a\0\4t\5\0i\10\0j\n\0o\16\0\1\1\1"..., 4096) =3D 4096=0A=
[pid 5072] read(5, "\0LICENSE.txts\7\0\0\0LICENSEs\5\0\0\0asc"..., =
4096) =3D 1337=0A=
[pid 5072] read(5, "", 4096) =3D 0=0A=
[pid 5072] brk(0x80ce000) =3D 0x80ce000=0A=
[pid 5072] brk(0x80cf000) =3D 0x80cf000=0A=
[pid 5072] brk(0x80d0000) =3D 0x80d0000=0A=
[pid 5072] close(5) =3D 0=0A=
[pid 5072] munmap(0x40013000, 4096) =3D 0=0A=
[pid 5072] stat("/home/gvwilson/lib/python2.1/os", 0xbfffde20) =3D -1 =
ENOENT (No such file or directory)=0A=
[pid 5072] open("/home/gvwilson/lib/python2.1/os.so", O_RDONLY) =3D -1 =
ENOENT (No such file or directory)=0A=
[pid 5072] open("/home/gvwilson/lib/python2.1/osmodule.so", O_RDONLY) =
=3D -1 ENOENT (No such file or directory)=0A=
[pid 5072] open("/home/gvwilson/lib/python2.1/os.py", O_RDONLY) =3D =
5=0A=
[pid 5072] open("/home/gvwilson/lib/python2.1", =
O_RDONLY|O_NONBLOCK|O_DIRECTORY) =3D 6=0A=
[pid 5072] fstat(6, {st_mode=3DS_IFDIR|0755, st_size=3D10240, ...}) =
=3D 0=0A=
[pid 5072] fcntl(6, F_SETFD, FD_CLOEXEC) =3D 0=0A=
[pid 5072] brk(0x80d2000) =3D 0x80d2000=0A=
[pid 5072] getdents(6, /* 53 entries */, 3933) =3D 1168=0A=
[pid 5072] getdents(6, /* 52 entries */, 3933) =3D 1156=0A=
[pid 5072] close(6) =3D 0=0A=
[pid 5072] fstat(5, {st_mode=3DS_IFREG|0644, st_size=3D16300, ...}) =
=3D 0=0A=
[pid 5072] open("/home/gvwilson/lib/python2.1/os.pyc", O_RDONLY) =3D =
6=0A=
[pid 5072] fstat(6, {st_mode=3DS_IFREG|0666, st_size=3D21279, ...}) =
=3D 0=0A=
[pid 5072] mmap(0, 4096, PROT_READ|PROT_WRITE, =
MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) =3D 0x40013000=0A=
[pid 5072] read(6, =
"*\353\r\n\307\274\232:c\0\0\0\0\v\0\0\0s\336\10\0\0\177"..., 4096) =3D =
4096=0A=
[pid 5072] fstat(6, {st_mode=3DS_IFREG|0666, st_size=3D21279, ...}) =
=3D 0=0A=
[pid 5072] brk(0x80d8000) =3D 0x80d8000=0A=
[pid 5072] read(6, =
"\0|\2\0\203\1\0\\\2\0}\2\0}\3\0n\1\0\1\177\257\0|\2\0o"..., 16384) =3D =
16384=0A=
[pid 5072] read(6, "\0\0_spawnvefs\4\0\0\0paths\6\0\0\0spawnls"..., =
4096) =3D 799=0A=
[pid 5072] read(6, "", 4096) =3D 0=0A=
[pid 5072] brk(0x80d9000) =3D 0x80d9000=0A=
[pid 5072] brk(0x80da000) =3D 0x80da000=0A=
[pid 5072] brk(0x80db000) =3D 0x80db000=0A=
[pid 5072] brk(0x80dc000) =3D 0x80dc000=0A=
[pid 5072] brk(0x80dd000) =3D 0x80dd000=0A=
[pid 5072] brk(0x80de000) =3D 0x80de000=0A=
[pid 5072] brk(0x80e2000) =3D 0x80e2000=0A=
[pid 5072] close(6) =3D 0=0A=
[pid 5072] munmap(0x40013000, 4096) =3D 0=0A=
[pid 5072] brk(0x80e3000) =3D 0x80e3000=0A=
[pid 5072] stat("/home/gvwilson/lib/python2.1/posixpath", 0xbfffcfa4) =
=3D -1 ENOENT (No such file or directory)=0A=
[pid 5072] open("/home/gvwilson/lib/python2.1/posixpath.so", O_RDONLY) =
=3D -1 ENOENT (No such file or directory)=0A=
[pid 5072] open("/home/gvwilson/lib/python2.1/posixpathmodule.so", =
O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
[pid 5072] open("/home/gvwilson/lib/python2.1/posixpath.py", O_RDONLY) =
=3D 6=0A=
[pid 5072] open("/home/gvwilson/lib/python2.1", =
O_RDONLY|O_NONBLOCK|O_DIRECTORY) =3D 7=0A=
[pid 5072] fstat(7, {st_mode=3DS_IFDIR|0755, st_size=3D10240, ...}) =
=3D 0=0A=
[pid 5072] fcntl(7, F_SETFD, FD_CLOEXEC) =3D 0=0A=
[pid 5072] brk(0x80e5000) =3D 0x80e5000=0A=
[pid 5072] getdents(7, /* 53 entries */, 3933) =3D 1168=0A=
[pid 5072] getdents(7, /* 52 entries */, 3933) =3D 1156=0A=
[pid 5072] close(7) =3D 0=0A=
[pid 5072] fstat(6, {st_mode=3DS_IFREG|0644, st_size=3D11111, ...}) =
=3D 0=0A=
[pid 5072] open("/home/gvwilson/lib/python2.1/posixpath.pyc", =
O_RDONLY) =3D 7=0A=
[pid 5072] fstat(7, {st_mode=3DS_IFREG|0666, st_size=3D12385, ...}) =
=3D 0=0A=
[pid 5072] mmap(0, 4096, PROT_READ|PROT_WRITE, =
MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) =3D 0x40013000=0A=
[pid 5072] read(7, =
"*\353\r\n\307\274\232:c\0\0\0\0\31\0\0\0s\261\1\0\0\177"..., 4096) =3D =
4096=0A=
[pid 5072] fstat(7, {st_mode=3DS_IFREG|0666, st_size=3D12385, ...}) =
=3D 0=0A=
[pid 5072] read(7, =
"ponents\0\0\0\0i\0\0\0\0i\1\0\0\0N(\6\0\0\0s\1\0\0\0"..., 8192) =3D =
8192=0A=
[pid 5072] read(7, "lib/python2.1/posixpath.pys\1\0\0\0?"..., 4096) =
=3D 97=0A=
[pid 5072] read(7, "", 4096) =3D 0=0A=
[pid 5072] brk(0x80e6000) =3D 0x80e6000=0A=
[pid 5072] brk(0x80e7000) =3D 0x80e7000=0A=
[pid 5072] brk(0x80ee000) =3D 0x80ee000=0A=
[pid 5072] close(7) =3D 0=0A=
[pid 5072] munmap(0x40013000, 4096) =3D 0=0A=
[pid 5072] stat("/home/gvwilson/lib/python2.1/stat", 0xbfffc128) =3D =
-1 ENOENT (No such file or directory)=0A=
[pid 5072] open("/home/gvwilson/lib/python2.1/stat.so", O_RDONLY) =3D =
-1 ENOENT (No such file or directory)=0A=
[pid 5072] open("/home/gvwilson/lib/python2.1/statmodule.so", =
O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
[pid 5072] open("/home/gvwilson/lib/python2.1/stat.py", O_RDONLY) =3D =
7=0A=
[pid 5072] open("/home/gvwilson/lib/python2.1", =
O_RDONLY|O_NONBLOCK|O_DIRECTORY) =3D 8=0A=
[pid 5072] fstat(8, {st_mode=3DS_IFDIR|0755, st_size=3D10240, ...}) =
=3D 0=0A=
[pid 5072] fcntl(8, F_SETFD, FD_CLOEXEC) =3D 0=0A=
[pid 5072] getdents(8, /* 53 entries */, 3933) =3D 1168=0A=
[pid 5072] getdents(8, /* 52 entries */, 3933) =3D 1156=0A=
[pid 5072] getdents(8, /* 53 entries */, 3933) =3D 1172=0A=
[pid 5072] close(8) =3D 0=0A=
[pid 5072] fstat(7, {st_mode=3DS_IFREG|0644, st_size=3D1667, ...}) =3D =
0=0A=
[pid 5072] open("/home/gvwilson/lib/python2.1/stat.pyc", O_RDONLY) =3D =
8=0A=
[pid 5072] fstat(8, {st_mode=3DS_IFREG|0666, st_size=3D3460, ...}) =3D =
0=0A=
[pid 5072] mmap(0, 4096, PROT_READ|PROT_WRITE, =
MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) =3D 0x40013000=0A=
[pid 5072] read(8, =
"*\353\r\n\311\274\232:c\0\0\0\0\1\0\0\0s\300\1\0\0\177"..., 4096) =3D =
3460=0A=
[pid 5072] fstat(8, {st_mode=3DS_IFREG|0666, st_size=3D3460, ...}) =3D =
0=0A=
[pid 5072] read(8, "", 4096) =3D 0=0A=
[pid 5072] close(8) =3D 0=0A=
[pid 5072] munmap(0x40013000, 4096) =3D 0=0A=
[pid 5072] close(7) =3D 0=0A=
[pid 5072] close(6) =3D 0=0A=
[pid 5072] stat("/home/gvwilson/lib/python2.1/UserDict", 0xbfffcfa4) =
=3D -1 ENOENT (No such file or directory)=0A=
[pid 5072] open("/home/gvwilson/lib/python2.1/UserDict.so", O_RDONLY) =
=3D -1 ENOENT (No such file or directory)=0A=
[pid 5072] open("/home/gvwilson/lib/python2.1/UserDictmodule.so", =
O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
[pid 5072] open("/home/gvwilson/lib/python2.1/UserDict.py", O_RDONLY) =
=3D 6=0A=
[pid 5072] open("/home/gvwilson/lib/python2.1", =
O_RDONLY|O_NONBLOCK|O_DIRECTORY) =3D 7=0A=
[pid 5072] fstat(7, {st_mode=3DS_IFDIR|0755, st_size=3D10240, ...}) =
=3D 0=0A=
[pid 5072] fcntl(7, F_SETFD, FD_CLOEXEC) =3D 0=0A=
[pid 5072] getdents(7, /* 53 entries */, 3933) =3D 1168=0A=
[pid 5072] close(7) =3D 0=0A=
[pid 5072] fstat(6, {st_mode=3DS_IFREG|0644, st_size=3D1573, ...}) =3D =
0=0A=
[pid 5072] open("/home/gvwilson/lib/python2.1/UserDict.pyc", O_RDONLY) =
=3D 7=0A=
[pid 5072] fstat(7, {st_mode=3DS_IFREG|0666, st_size=3D4341, ...}) =3D =
0=0A=
[pid 5072] mmap(0, 4096, PROT_READ|PROT_WRITE, =
MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) =3D 0x40013000=0A=
[pid 5072] read(7, =
"*\353\r\n\302\274\232:c\0\0\0\0\3\0\0\0s&\0\0\0\177\0\0"..., 4096) =3D =
4096=0A=
[pid 5072] fstat(7, {st_mode=3DS_IFREG|0666, st_size=3D4341, ...}) =3D =
0=0A=
[pid 5072] read(7, =
"s\7\0\0\0popitem(\0\0\0\0(\0\0\0\0(\0\0\0\0s(\0\0\0"..., 4096) =3D =
245=0A=
[pid 5072] read(7, "", 4096) =3D 0=0A=
[pid 5072] brk(0x80ef000) =3D 0x80ef000=0A=
[pid 5072] close(7) =3D 0=0A=
[pid 5072] munmap(0x40013000, 4096) =3D 0=0A=
[pid 5072] close(6) =3D 0=0A=
[pid 5072] brk(0x80f0000) =3D 0x80f0000=0A=
[pid 5072] brk(0x80f1000) =3D 0x80f1000=0A=
[pid 5072] brk(0x80f2000) =3D 0x80f2000=0A=
[pid 5072] brk(0x80f3000) =3D 0x80f3000=0A=
[pid 5072] brk(0x80f4000) =3D 0x80f4000=0A=
[pid 5072] brk(0x80f5000) =3D 0x80f5000=0A=
[pid 5072] brk(0x80f6000) =3D 0x80f6000=0A=
[pid 5072] brk(0x80f7000) =3D 0x80f7000=0A=
[pid 5072] brk(0x80f8000) =3D 0x80f8000=0A=
[pid 5072] brk(0x80f9000) =3D 0x80f9000=0A=
[pid 5072] brk(0x80fa000) =3D 0x80fa000=0A=
[pid 5072] brk(0x80fb000) =3D 0x80fb000=0A=
[pid 5072] brk(0x80fc000) =3D 0x80fc000=0A=
[pid 5072] brk(0x80fe000) =3D 0x80fe000=0A=
[pid 5072] close(5) =3D 0=0A=
[pid 5072] stat("/home/gvwilson/lib/python2.1/site-packages", =
{st_mode=3DS_IFDIR|0755, st_size=3D1024, ...}) =3D 0=0A=
[pid 5072] open("/home/gvwilson/lib/python2.1/site-packages", =
O_RDONLY|O_NONBLOCK|O_DIRECTORY) =3D 5=0A=
[pid 5072] fstat(5, {st_mode=3DS_IFDIR|0755, st_size=3D1024, ...}) =3D =
0=0A=
[pid 5072] fcntl(5, F_SETFD, FD_CLOEXEC) =3D 0=0A=
[pid 5072] getdents(5, /* 4 entries */, 3933) =3D 68=0A=
[pid 5072] getdents(5, /* 0 entries */, 3933) =3D 0=0A=
[pid 5072] close(5) =3D 0=0A=
[pid 5072] stat("/home/gvwilson/lib/site-python", 0xbfffe9ec) =3D -1 =
ENOENT (No such file or directory)=0A=
[pid 5072] open("/usr/share/locale/locale.alias", O_RDONLY) =3D 5=0A=
[pid 5072] fstat(5, {st_mode=3DS_IFREG|0644, st_size=3D2174, ...}) =3D =
0=0A=
[pid 5072] mmap(0, 4096, PROT_READ|PROT_WRITE, =
MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) =3D 0x40013000=0A=
[pid 5072] read(5, "# Locale name alias data base.\n#"..., 4096) =3D =
2174=0A=
[pid 5072] read(5, "", 4096) =3D 0=0A=
[pid 5072] close(5) =3D 0=0A=
[pid 5072] munmap(0x40013000, 4096) =3D 0=0A=
[pid 5072] open("/usr/share/i18n/locale.alias", O_RDONLY) =3D -1 =
ENOENT (No such file or directory)=0A=
[pid 5072] open("/usr/share/locale/en_US/LC_MESSAGES/libc.mo", =
O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
[pid 5072] open("/usr/share/locale/en/LC_MESSAGES/libc.mo", O_RDONLY) =
=3D -1 ENOENT (No such file or directory)=0A=
[pid 5072] stat("/home/gvwilson/lib/python2.1/sitecustomize", =
0xbfffde20) =3D -1 ENOENT (No such file or directory)=0A=
[pid 5072] open("/home/gvwilson/lib/python2.1/sitecustomize.so", =
O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
[pid 5072] open("/home/gvwilson/lib/python2.1/sitecustomizemodule.so", =
O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
[pid 5072] open("/home/gvwilson/lib/python2.1/sitecustomize.py", =
O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
[pid 5072] open("/home/gvwilson/lib/python2.1/sitecustomize.pyc", =
O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
[pid 5072] =
stat("/home/gvwilson/lib/python2.1/lib-dynload/sitecustomize", =
0xbfffde20) =3D -1 ENOENT (No such file or directory)=0A=
[pid 5072] =
open("/home/gvwilson/lib/python2.1/lib-dynload/sitecustomize.so", =
O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
[pid 5072] =
open("/home/gvwilson/lib/python2.1/lib-dynload/sitecustomizemodule.so", =
O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
[pid 5072] =
open("/home/gvwilson/lib/python2.1/lib-dynload/sitecustomize.py", =
O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
[pid 5072] =
open("/home/gvwilson/lib/python2.1/lib-dynload/sitecustomize.pyc", =
O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
[pid 5072] =
stat("/home/gvwilson/lib/python2.1/plat-linux2/sitecustomize", =
0xbfffde20) =3D -1 ENOENT (No such file or directory)=0A=
[pid 5072] =
open("/home/gvwilson/lib/python2.1/plat-linux2/sitecustomize.so", =
O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
[pid 5072] =
open("/home/gvwilson/lib/python2.1/plat-linux2/sitecustomizemodule.so", =
O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
[pid 5072] =
open("/home/gvwilson/lib/python2.1/plat-linux2/sitecustomize.py", =
O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
[pid 5072] =
open("/home/gvwilson/lib/python2.1/plat-linux2/sitecustomize.pyc", =
O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
[pid 5072] stat("/home/gvwilson/lib/python2.1/lib-tk/sitecustomize", =
0xbfffde20) =3D -1 ENOENT (No such file or directory)=0A=
[pid 5072] =
open("/home/gvwilson/lib/python2.1/lib-tk/sitecustomize.so", O_RDONLY) =
=3D -1 ENOENT (No such file or directory)=0A=
[pid 5072] =
open("/home/gvwilson/lib/python2.1/lib-tk/sitecustomizemodule.so", =
O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
[pid 5072] =
open("/home/gvwilson/lib/python2.1/lib-tk/sitecustomize.py", O_RDONLY) =
=3D -1 ENOENT (No such file or directory)=0A=
[pid 5072] =
open("/home/gvwilson/lib/python2.1/lib-tk/sitecustomize.pyc", O_RDONLY) =
=3D -1 ENOENT (No such file or directory)=0A=
[pid 5072] =
stat("/home/gvwilson/lib/python2.1/site-packages/sitecustomize", =
0xbfffde20) =3D -1 ENOENT (No such file or directory)=0A=
[pid 5072] =
open("/home/gvwilson/lib/python2.1/site-packages/sitecustomize.so", =
O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
[pid 5072] =
open("/home/gvwilson/lib/python2.1/site-packages/sitecustomizemodule.so"=
, O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
[pid 5072] =
open("/home/gvwilson/lib/python2.1/site-packages/sitecustomize.py", =
O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
[pid 5072] =
open("/home/gvwilson/lib/python2.1/site-packages/sitecustomize.pyc", =
O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
[pid 5072] close(4) =3D 0=0A=
[pid 5072] readlink("tryout.py", 0xbffff748, 1024) =3D -1 EINVAL =
(Invalid argument)=0A=
[pid 5072] ioctl(3, TCGETS, 0xbffffa9c) =3D -1 ENOTTY (Inappropriate =
ioctl for device)=0A=
[pid 5072] fstat(3, {st_mode=3DS_IFREG|0666, st_size=3D20, ...}) =3D =
0=0A=
[pid 5072] mmap(0, 4096, PROT_READ|PROT_WRITE, =
MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) =3D 0x40013000=0A=
[pid 5072] _llseek(3, 0, [0], SEEK_CUR) =3D 0=0A=
[pid 5072] read(3, "print \"We made it!\"\n", 4096) =3D 20=0A=
[pid 5072] _llseek(3, 20, [20], SEEK_SET) =3D 0=0A=
[pid 5072] brk(0x8101000) =3D 0x8101000=0A=
[pid 5072] read(3, "", 4096) =3D 0=0A=
[pid 5072] close(3) =3D 0=0A=
[pid 5072] munmap(0x40013000, 4096) =3D 0=0A=
[pid 5072] fstat(1, {st_mode=3DS_IFIFO|0600, st_size=3D0, ...}) =3D =
0=0A=
[pid 5072] mmap(0, 4096, PROT_READ|PROT_WRITE, =
MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) =3D 0x40013000=0A=
[pid 5072] rt_sigaction(SIGINT, NULL, {0x40021460, [], 0x4000000}, 8) =
=3D 0=0A=
[pid 5072] rt_sigaction(SIGINT, {SIG_DFL}, NULL, 8) =3D 0=0A=
[pid 5072] write(1, "We made it!\n", 12) =3D 12=0A=
[pid 5071] <... read resumed> "We made it!\n", 8192) =3D 12=0A=
[pid 5071] read(5, <unfinished ...>=0A=
[pid 5072] munmap(0x40013000, 4096) =3D 0=0A=
[pid 5072] _exit(0) =3D ?=0A=
<... read resumed> "", 4096) =3D 0=0A=
--- SIGCHLD (Child exited) ---=0A=
read(5, "", 8192) =3D 0=0A=
wait4(5072, [WIFEXITED(s) && WEXITSTATUS(s) =3D=3D 0], WNOHANG, NULL) =
=3D 5072=0A=
pipe([3, 4]) =3D 0=0A=
pipe([6, 7]) =3D 0=0A=
fork() =3D 5073=0A=
[pid 5071] close(3) =3D 0=0A=
[pid 5071] fcntl(4, F_GETFL) =3D 0x1 (flags O_WRONLY)=0A=
[pid 5071] fstat(4, {st_mode=3DS_IFIFO|0600, st_size=3D0, ...}) =3D =
0=0A=
[pid 5071] mmap(0, 4096, PROT_READ|PROT_WRITE, =
MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) =3D 0x40142000=0A=
[pid 5071] _llseek(4, 0, 0xbffff338, SEEK_CUR) =3D -1 ESPIPE (Illegal =
seek)=0A=
[pid 5071] close(7) =3D 0=0A=
[pid 5071] fcntl(6, F_GETFL) =3D 0 (flags O_RDONLY)=0A=
[pid 5071] fstat(6, {st_mode=3DS_IFIFO|0600, st_size=3D0, ...}) =3D =
0=0A=
[pid 5071] mmap(0, 4096, PROT_READ|PROT_WRITE, =
MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) =3D 0x40143000=0A=
[pid 5071] _llseek(6, 0, 0xbffff338, SEEK_CUR) =3D -1 ESPIPE (Illegal =
seek)=0A=
[pid 5071] close(4 <unfinished ...>=0A=
[pid 5073] getpid() =3D 5073=0A=
[pid 5073] getpid() =3D 5073=0A=
[pid 5073] dup2(3, 0) =3D 0=0A=
[pid 5073] dup2(7, 1) =3D 1=0A=
[pid 5073] close(3) =3D 0=0A=
[pid 5073] close(4) =3D 0=0A=
[pid 5073] close(5) =3D 0=0A=
[pid 5073] close(6) =3D 0=0A=
[pid 5073] close(7) =3D 0=0A=
[pid 5073] close(8) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(9) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(10) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(11) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(12) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(13) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(14) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(15) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(16) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(17) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(18) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(19) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(20) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(21) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(22) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(23) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(24) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(25) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(26) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(27) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(28) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(29) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(30) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(31) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(32) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(33) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(34) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(35) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(36) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(37) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(38) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(39) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(40) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(41) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(42) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(43) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(44) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(45) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(46) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(47) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(48) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(49) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(50) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(51) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(52) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(53) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(54) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(55) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(56) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(57) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(58) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(59) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(60) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(61) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(62) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(63) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(64) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(65) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(66) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(67) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(68) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(69) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(70) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(71) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(72) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(73) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(74) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(75) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(76) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(77) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(78) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(79) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(80) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(81) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(82) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(83) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(84) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(85) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(86) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(87) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(88) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(89) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(90) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(91) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(92) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(93) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(94) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(95) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(96) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(97) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(98) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(99) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(100) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(101) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(102) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(103) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(104) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(105) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(106) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(107) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(108) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(109) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(110) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(111) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(112) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(113) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(114) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(115) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(116) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(117) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(118) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(119) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(120) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(121) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(122) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(123) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(124) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(125) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(126) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(127) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(128) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(129) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(130) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(131) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(132) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(133) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(134) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(135) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(136) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(137) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(138) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(139) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(140) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(141) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(142) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(143) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(144) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(145) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(146) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(147) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(148) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(149) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(150) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(151) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(152) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(153) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(154) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(155) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(156) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(157) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(158) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(159) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(160) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(161) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(162) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(163) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(164) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(165) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(166) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(167) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(168) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(169) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(170) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(171) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(172) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(173) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(174) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(175) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(176) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(177) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(178) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(179) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(180) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(181) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(182) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(183) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(184) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(185) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(186) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(187) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(188) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(189) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(190) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(191) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(192) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(193) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(194) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(195) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(196) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(197) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(198) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(199) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(200) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(201) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(202) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(203) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(204) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(205) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(206) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(207) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(208) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(209) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(210) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(211) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(212) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(213) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(214) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(215) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(216) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(217) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(218) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(219) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(220) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(221) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(222) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(223) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(224) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(225) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(226) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(227) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(228) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(229) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(230) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(231) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(232) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(233) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(234) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(235) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(236) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(237) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(238) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(239) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(240) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(241) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(242) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(243) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(244) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(245) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(246) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(247) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(248) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(249) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(250) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(251) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(252) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(253) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(254) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] close(255) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] getpid() =3D 5073=0A=
[pid 5073] rt_sigaction(SIGRT_0, {SIG_DFL}, NULL, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGRT_1, {SIG_DFL}, NULL, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGRT_2, {SIG_DFL}, NULL, 8) =3D 0=0A=
[pid 5073] execve("/bin/sh", ["/bin/sh", "-c", "python tryout.py"], =
[/* 30 vars */]) =3D 0=0A=
[pid 5071] <... close resumed> ) =3D 0=0A=
[pid 5071] munmap(0x40142000, 4096) =3D 0=0A=
[pid 5071] read(6, <unfinished ...>=0A=
[pid 5073] brk(0) =3D 0x80a5420=0A=
[pid 5073] open("/etc/ld.so.preload", O_RDONLY) =3D -1 ENOENT (No such =
file or directory)=0A=
[pid 5073] open("/usr/local/ace/ace/i686/mmx/libtermcap.so.2", =
O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
[pid 5073] stat("/usr/local/ace/ace/i686/mmx", 0xbffff550) =3D -1 =
ENOENT (No such file or directory)=0A=
[pid 5073] open("/usr/local/ace/ace/i686/libtermcap.so.2", O_RDONLY) =
=3D -1 ENOENT (No such file or directory)=0A=
[pid 5073] stat("/usr/local/ace/ace/i686", 0xbffff550) =3D -1 ENOENT =
(No such file or directory)=0A=
[pid 5073] open("/usr/local/ace/ace/mmx/libtermcap.so.2", O_RDONLY) =
=3D -1 ENOENT (No such file or directory)=0A=
[pid 5073] stat("/usr/local/ace/ace/mmx", 0xbffff550) =3D -1 ENOENT =
(No such file or directory)=0A=
[pid 5073] open("/usr/local/ace/ace/libtermcap.so.2", O_RDONLY) =3D -1 =
ENOENT (No such file or directory)=0A=
[pid 5073] stat("/usr/local/ace/ace", {st_mode=3DS_IFDIR|0775, =
st_size=3D19456, ...}) =3D 0=0A=
[pid 5073] open("/etc/ld.so.cache", O_RDONLY) =3D 3=0A=
[pid 5073] fstat(3, {st_mode=3DS_IFREG|0644, st_size=3D25676, ...}) =
=3D 0=0A=
[pid 5073] mmap(0, 25676, PROT_READ, MAP_PRIVATE, 3, 0) =3D =
0x40013000=0A=
[pid 5073] close(3) =3D 0=0A=
[pid 5073] open("/lib/libtermcap.so.2", O_RDONLY) =3D 3=0A=
[pid 5073] fstat(3, {st_mode=3DS_IFREG|0755, st_size=3D15001, ...}) =
=3D 0=0A=
[pid 5073] read(3, =
"\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\300\v\0"..., 4096) =3D =
4096=0A=
[pid 5073] mmap(0, 13896, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) =3D =
0x4001a000=0A=
[pid 5073] mprotect(0x4001d000, 1608, PROT_NONE) =3D 0=0A=
[pid 5073] mmap(0x4001d000, 4096, PROT_READ|PROT_WRITE, =
MAP_PRIVATE|MAP_FIXED, 3, 0x2000) =3D 0x4001d000=0A=
[pid 5073] close(3) =3D 0=0A=
[pid 5073] open("/usr/local/ace/ace/libc.so.6", O_RDONLY) =3D -1 =
ENOENT (No such file or directory)=0A=
[pid 5073] open("/lib/libc.so.6", O_RDONLY) =3D 3=0A=
[pid 5073] fstat(3, {st_mode=3DS_IFREG|0755, st_size=3D4118299, ...}) =
=3D 0=0A=
[pid 5073] read(3, =
"\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\250\202"..., 4096) =3D =
4096=0A=
[pid 5073] mmap(0, 4096, PROT_READ|PROT_WRITE, =
MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) =3D 0x4001e000=0A=
[pid 5073] mmap(0, 993500, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) =3D =
0x4001f000=0A=
[pid 5073] mprotect(0x4010a000, 30940, PROT_NONE) =3D 0=0A=
[pid 5073] mmap(0x4010a000, 16384, PROT_READ|PROT_WRITE, =
MAP_PRIVATE|MAP_FIXED, 3, 0xea000) =3D 0x4010a000=0A=
[pid 5073] mmap(0x4010e000, 14556, PROT_READ|PROT_WRITE, =
MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) =3D 0x4010e000=0A=
[pid 5073] close(3) =3D 0=0A=
[pid 5073] mprotect(0x4001f000, 962560, PROT_READ|PROT_WRITE) =3D 0=0A=
[pid 5073] mprotect(0x4001f000, 962560, PROT_READ|PROT_EXEC) =3D 0=0A=
[pid 5073] munmap(0x40013000, 25676) =3D 0=0A=
[pid 5073] personality(0 /* PER_??? */) =3D 0=0A=
[pid 5073] getpid() =3D 5073=0A=
[pid 5073] brk(0) =3D 0x80a5420=0A=
[pid 5073] brk(0x80a55c0) =3D 0x80a55c0=0A=
[pid 5073] brk(0x80a6000) =3D 0x80a6000=0A=
[pid 5073] getuid() =3D 1002=0A=
[pid 5073] getgid() =3D 100=0A=
[pid 5073] geteuid() =3D 1002=0A=
[pid 5073] getegid() =3D 100=0A=
[pid 5073] time(NULL) =3D 983229974=0A=
[pid 5073] rt_sigaction(SIGCHLD, {SIG_DFL}, {SIG_DFL}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGCHLD, {SIG_DFL}, {SIG_DFL}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGINT, {SIG_DFL}, {SIG_DFL}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGINT, {SIG_DFL}, {SIG_DFL}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGQUIT, {SIG_DFL}, {SIG_DFL}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGQUIT, {SIG_DFL}, {SIG_DFL}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGHUP, {0x804bb38, [HUP INT ILL TRAP ABRT BUS =
FPE USR1 SEGV USR2 PIPE ALRM TERM XCPU XFSZ VTALRM PROF], 0x4000000}, =
{SIG_DFL}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGINT, {0x804bb38, [HUP INT ILL TRAP ABRT BUS =
FPE USR1 SEGV USR2 PIPE ALRM TERM XCPU XFSZ VTALRM PROF], 0x4000000}, =
{SIG_DFL}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGILL, {0x804bb38, [HUP INT ILL TRAP ABRT BUS =
FPE USR1 SEGV USR2 PIPE ALRM TERM XCPU XFSZ VTALRM PROF], 0x4000000}, =
{SIG_DFL}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGTRAP, {0x804bb38, [HUP INT ILL TRAP ABRT =
BUS FPE USR1 SEGV USR2 PIPE ALRM TERM XCPU XFSZ VTALRM PROF], =
0x4000000}, {SIG_DFL}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGABRT, {0x804bb38, [HUP INT ILL TRAP ABRT =
BUS FPE USR1 SEGV USR2 PIPE ALRM TERM XCPU XFSZ VTALRM PROF], =
0x4000000}, {SIG_DFL}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGFPE, {0x804bb38, [HUP INT ILL TRAP ABRT BUS =
FPE USR1 SEGV USR2 PIPE ALRM TERM XCPU XFSZ VTALRM PROF], 0x4000000}, =
{SIG_DFL}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGBUS, {0x804bb38, [HUP INT ILL TRAP ABRT BUS =
FPE USR1 SEGV USR2 PIPE ALRM TERM XCPU XFSZ VTALRM PROF], 0x4000000}, =
{SIG_DFL}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGSEGV, {0x804bb38, [HUP INT ILL TRAP ABRT =
BUS FPE USR1 SEGV USR2 PIPE ALRM TERM XCPU XFSZ VTALRM PROF], =
0x4000000}, {SIG_DFL}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGPIPE, {0x804bb38, [HUP INT ILL TRAP ABRT =
BUS FPE USR1 SEGV USR2 PIPE ALRM TERM XCPU XFSZ VTALRM PROF], =
0x4000000}, {SIG_IGN}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGPIPE, {SIG_IGN}, {0x804bb38, [HUP INT ILL =
TRAP ABRT BUS FPE USR1 SEGV USR2 PIPE ALRM TERM XCPU XFSZ VTALRM PROF], =
0x4000000}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGALRM, {0x804bb38, [HUP INT ILL TRAP ABRT =
BUS FPE USR1 SEGV USR2 PIPE ALRM TERM XCPU XFSZ VTALRM PROF], =
0x4000000}, {SIG_DFL}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGTERM, {0x804bb38, [HUP INT ILL TRAP ABRT =
BUS FPE USR1 SEGV USR2 PIPE ALRM TERM XCPU XFSZ VTALRM PROF], =
0x4000000}, {SIG_DFL}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGXCPU, {0x804bb38, [HUP INT ILL TRAP ABRT =
BUS FPE USR1 SEGV USR2 PIPE ALRM TERM XCPU XFSZ VTALRM PROF], =
0x4000000}, {SIG_DFL}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGXFSZ, {0x804bb38, [HUP INT ILL TRAP ABRT =
BUS FPE USR1 SEGV USR2 PIPE ALRM TERM XCPU XFSZ VTALRM PROF], =
0x4000000}, {SIG_DFL}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGVTALRM, {0x804bb38, [HUP INT ILL TRAP ABRT =
BUS FPE USR1 SEGV USR2 PIPE ALRM TERM XCPU XFSZ VTALRM PROF], =
0x4000000}, {SIG_DFL}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGPROF, {0x804bb38, [HUP INT ILL TRAP ABRT =
BUS FPE USR1 SEGV USR2 PIPE ALRM TERM XCPU XFSZ VTALRM PROF], =
0x4000000}, {SIG_DFL}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGUSR1, {0x804bb38, [HUP INT ILL TRAP ABRT =
BUS FPE USR1 SEGV USR2 PIPE ALRM TERM XCPU XFSZ VTALRM PROF], =
0x4000000}, {SIG_DFL}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGUSR2, {0x804bb38, [HUP INT ILL TRAP ABRT =
BUS FPE USR1 SEGV USR2 PIPE ALRM TERM XCPU XFSZ VTALRM PROF], =
0x4000000}, {SIG_DFL}, 8) =3D 0=0A=
[pid 5073] rt_sigprocmask(SIG_BLOCK, NULL, [RT_0], 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGQUIT, {SIG_IGN}, {SIG_DFL}, 8) =3D 0=0A=
[pid 5073] socket(PF_UNIX, SOCK_STREAM, 0) =3D 3=0A=
[pid 5073] connect(3, {sun_family=3DAF_UNIX, =
sun_path=3D"/var/run/.nscd_socket"}, 110) =3D -1 ECONNREFUSED =
(Connection refused)=0A=
[pid 5073] close(3) =3D 0=0A=
[pid 5073] open("/etc/nsswitch.conf", O_RDONLY) =3D 3=0A=
[pid 5073] fstat(3, {st_mode=3DS_IFREG|0644, st_size=3D1744, ...}) =3D =
0=0A=
[pid 5073] mmap(0, 4096, PROT_READ|PROT_WRITE, =
MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) =3D 0x40013000=0A=
[pid 5073] read(3, "#\n# /etc/nsswitch.conf\n#\n# An ex"..., 4096) =3D =
1744=0A=
[pid 5073] brk(0x80a7000) =3D 0x80a7000=0A=
[pid 5073] read(3, "", 4096) =3D 0=0A=
[pid 5073] close(3) =3D 0=0A=
[pid 5073] munmap(0x40013000, 4096) =3D 0=0A=
[pid 5073] open("/usr/local/ace/ace/libnss_files.so.2", O_RDONLY) =3D =
-1 ENOENT (No such file or directory)=0A=
[pid 5073] open("/etc/ld.so.cache", O_RDONLY) =3D 3=0A=
[pid 5073] fstat(3, {st_mode=3DS_IFREG|0644, st_size=3D25676, ...}) =
=3D 0=0A=
[pid 5073] mmap(0, 25676, PROT_READ, MAP_PRIVATE, 3, 0) =3D =
0x40013000=0A=
[pid 5073] close(3) =3D 0=0A=
[pid 5073] open("/lib/libnss_files.so.2", O_RDONLY) =3D 3=0A=
[pid 5073] fstat(3, {st_mode=3DS_IFREG|0755, st_size=3D247348, ...}) =
=3D 0=0A=
[pid 5073] read(3, =
"\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\360\33"..., 4096) =3D =
4096=0A=
[pid 5073] mmap(0, 35232, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) =3D =
0x40112000=0A=
[pid 5073] mprotect(0x4011a000, 2464, PROT_NONE) =3D 0=0A=
[pid 5073] mmap(0x4011a000, 4096, PROT_READ|PROT_WRITE, =
MAP_PRIVATE|MAP_FIXED, 3, 0x7000) =3D 0x4011a000=0A=
[pid 5073] close(3) =3D 0=0A=
[pid 5073] munmap(0x40013000, 25676) =3D 0=0A=
[pid 5073] open("/etc/passwd", O_RDONLY) =3D 3=0A=
[pid 5073] fcntl(3, F_GETFD) =3D 0=0A=
[pid 5073] fcntl(3, F_SETFD, FD_CLOEXEC) =3D 0=0A=
[pid 5073] fstat(3, {st_mode=3DS_IFREG|0644, st_size=3D4890, ...}) =3D =
0=0A=
[pid 5073] mmap(0, 4096, PROT_READ|PROT_WRITE, =
MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) =3D 0x40013000=0A=
[pid 5073] read(3, "root:DSVw9Br8/N7yc:0:0:root:/roo"..., 4096) =3D =
4096=0A=
[pid 5073] close(3) =3D 0=0A=
[pid 5073] munmap(0x40013000, 4096) =3D 0=0A=
[pid 5073] uname({sys=3D"Linux", node=3D"akbar.nevex.com", ...}) =3D =
0=0A=
[pid 5073] open("/usr/local/ace/ace/libnss_nisplus.so.2", O_RDONLY) =
=3D -1 ENOENT (No such file or directory)=0A=
[pid 5073] open("/etc/ld.so.cache", O_RDONLY) =3D 3=0A=
[pid 5073] fstat(3, {st_mode=3DS_IFREG|0644, st_size=3D25676, ...}) =
=3D 0=0A=
[pid 5073] mmap(0, 25676, PROT_READ, MAP_PRIVATE, 3, 0) =3D =
0x40013000=0A=
[pid 5073] close(3) =3D 0=0A=
[pid 5073] open("/lib/libnss_nisplus.so.2", O_RDONLY) =3D 3=0A=
[pid 5073] fstat(3, {st_mode=3DS_IFREG|0755, st_size=3D253826, ...}) =
=3D 0=0A=
[pid 5073] read(3, =
"\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\320\32"..., 4096) =3D =
4096=0A=
[pid 5073] mmap(0, 40852, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) =3D =
0x4011b000=0A=
[pid 5073] mprotect(0x40124000, 3988, PROT_NONE) =3D 0=0A=
[pid 5073] mmap(0x40124000, 4096, PROT_READ|PROT_WRITE, =
MAP_PRIVATE|MAP_FIXED, 3, 0x8000) =3D 0x40124000=0A=
[pid 5073] close(3) =3D 0=0A=
[pid 5073] open("/usr/local/ace/ace/libnsl.so.1", O_RDONLY) =3D -1 =
ENOENT (No such file or directory)=0A=
[pid 5073] open("/lib/libnsl.so.1", O_RDONLY) =3D 3=0A=
[pid 5073] fstat(3, {st_mode=3DS_IFREG|0755, st_size=3D372604, ...}) =
=3D 0=0A=
[pid 5073] read(3, =
"\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\2408\0"..., 4096) =3D =
4096=0A=
[pid 5073] mmap(0, 86440, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) =3D =
0x40125000=0A=
[pid 5073] mprotect(0x40137000, 12712, PROT_NONE) =3D 0=0A=
[pid 5073] mmap(0x40137000, 4096, PROT_READ|PROT_WRITE, =
MAP_PRIVATE|MAP_FIXED, 3, 0x11000) =3D 0x40137000=0A=
[pid 5073] mmap(0x40138000, 8616, PROT_READ|PROT_WRITE, =
MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) =3D 0x40138000=0A=
[pid 5073] close(3) =3D 0=0A=
[pid 5073] munmap(0x40013000, 25676) =3D 0=0A=
[pid 5073] open("/usr/local/ace/ace/libnss_nis.so.2", O_RDONLY) =3D -1 =
ENOENT (No such file or directory)=0A=
[pid 5073] open("/etc/ld.so.cache", O_RDONLY) =3D 3=0A=
[pid 5073] fstat(3, {st_mode=3DS_IFREG|0644, st_size=3D25676, ...}) =
=3D 0=0A=
[pid 5073] mmap(0, 25676, PROT_READ, MAP_PRIVATE, 3, 0) =3D =
0x40013000=0A=
[pid 5073] close(3) =3D 0=0A=
[pid 5073] open("/lib/libnss_nis.so.2", O_RDONLY) =3D 3=0A=
[pid 5073] fstat(3, {st_mode=3DS_IFREG|0755, st_size=3D254027, ...}) =
=3D 0=0A=
[pid 5073] read(3, =
"\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\240\32"..., 4096) =3D =
4096=0A=
[pid 5073] mmap(0, 36368, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) =3D =
0x4013b000=0A=
[pid 5073] mprotect(0x40143000, 3600, PROT_NONE) =3D 0=0A=
[pid 5073] mmap(0x40143000, 4096, PROT_READ|PROT_WRITE, =
MAP_PRIVATE|MAP_FIXED, 3, 0x7000) =3D 0x40143000=0A=
[pid 5073] close(3) =3D 0=0A=
[pid 5073] munmap(0x40013000, 25676) =3D 0=0A=
[pid 5073] brk(0x80a8000) =3D 0x80a8000=0A=
[pid 5073] brk(0x80aa000) =3D 0x80aa000=0A=
[pid 5073] getcwd("/a/akbar/home/gvwilson/p2", 4095) =3D 26=0A=
[pid 5073] getpid() =3D 5073=0A=
[pid 5073] getppid() =3D 5071=0A=
[pid 5073] getpgrp() =3D 5070=0A=
[pid 5073] fcntl(-1, F_SETFD, FD_CLOEXEC) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5073] rt_sigaction(SIGCHLD, {0x806059c, [], 0x4000000}, =
{SIG_DFL}, 8) =3D 0=0A=
[pid 5073] brk(0x80ab000) =3D 0x80ab000=0A=
[pid 5073] stat(".", {st_mode=3DS_IFDIR|0777, st_size=3D1024, ...}) =
=3D 0=0A=
[pid 5073] stat("/home/gvwilson/bin/python", {st_mode=3DS_IFREG|0755, =
st_size=3D1407749, ...}) =3D 0=0A=
[pid 5073] brk(0x80ac000) =3D 0x80ac000=0A=
[pid 5073] rt_sigaction(SIGHUP, {SIG_DFL}, NULL, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGILL, {SIG_DFL}, NULL, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGTRAP, {SIG_DFL}, NULL, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGABRT, {SIG_DFL}, NULL, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGFPE, {SIG_DFL}, NULL, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGBUS, {SIG_DFL}, NULL, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGSEGV, {SIG_DFL}, NULL, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGPIPE, {SIG_IGN}, NULL, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGALRM, {SIG_DFL}, NULL, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGTERM, {SIG_DFL}, NULL, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGXCPU, {SIG_DFL}, NULL, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGXFSZ, {SIG_DFL}, NULL, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGVTALRM, {SIG_DFL}, NULL, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGPROF, {SIG_DFL}, NULL, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGUSR1, {SIG_DFL}, NULL, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGUSR2, {SIG_DFL}, NULL, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGINT, {SIG_DFL}, {0x804bb38, [HUP INT ILL =
TRAP ABRT BUS FPE USR1 SEGV USR2 PIPE ALRM TERM XCPU XFSZ VTALRM PROF], =
0x4000000}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGQUIT, {SIG_DFL}, {SIG_IGN}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGCHLD, {SIG_DFL}, {0x806059c, [], =
0x4000000}, 8) =3D 0=0A=
[pid 5073] execve("/home/gvwilson/bin/python", ["python", =
"tryout.py"], [/* 29 vars */]) =3D 0=0A=
[pid 5073] brk(0) =3D 0x80bf6dc=0A=
[pid 5073] open("/etc/ld.so.preload", O_RDONLY) =3D -1 ENOENT (No such =
file or directory)=0A=
[pid 5073] open("/usr/local/ace/ace/i686/mmx/libpthread.so.0", =
O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
[pid 5073] stat("/usr/local/ace/ace/i686/mmx", 0xbffff550) =3D -1 =
ENOENT (No such file or directory)=0A=
[pid 5073] open("/usr/local/ace/ace/i686/libpthread.so.0", O_RDONLY) =
=3D -1 ENOENT (No such file or directory)=0A=
[pid 5073] stat("/usr/local/ace/ace/i686", 0xbffff550) =3D -1 ENOENT =
(No such file or directory)=0A=
[pid 5073] open("/usr/local/ace/ace/mmx/libpthread.so.0", O_RDONLY) =
=3D -1 ENOENT (No such file or directory)=0A=
[pid 5073] stat("/usr/local/ace/ace/mmx", 0xbffff550) =3D -1 ENOENT =
(No such file or directory)=0A=
[pid 5073] open("/usr/local/ace/ace/libpthread.so.0", O_RDONLY) =3D -1 =
ENOENT (No such file or directory)=0A=
[pid 5073] stat("/usr/local/ace/ace", {st_mode=3DS_IFDIR|0775, =
st_size=3D19456, ...}) =3D 0=0A=
[pid 5073] open("/etc/ld.so.cache", O_RDONLY) =3D 3=0A=
[pid 5073] fstat(3, {st_mode=3DS_IFREG|0644, st_size=3D25676, ...}) =
=3D 0=0A=
[pid 5073] mmap(0, 25676, PROT_READ, MAP_PRIVATE, 3, 0) =3D =
0x40013000=0A=
[pid 5073] close(3) =3D 0=0A=
[pid 5073] open("/lib/libpthread.so.0", O_RDONLY) =3D 3=0A=
[pid 5073] fstat(3, {st_mode=3DS_IFREG|0755, st_size=3D247381, ...}) =
=3D 0=0A=
[pid 5073] read(3, =
"\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\3407\0"..., 4096) =3D =
4096=0A=
[pid 5073] mmap(0, 69188, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) =3D =
0x4001a000=0A=
[pid 5073] mprotect(0x40024000, 28228, PROT_NONE) =3D 0=0A=
[pid 5073] mmap(0x40024000, 28672, PROT_READ|PROT_WRITE, =
MAP_PRIVATE|MAP_FIXED, 3, 0x9000) =3D 0x40024000=0A=
[pid 5073] close(3) =3D 0=0A=
[pid 5073] open("/usr/local/ace/ace/libdl.so.2", O_RDONLY) =3D -1 =
ENOENT (No such file or directory)=0A=
[pid 5073] open("/lib/libdl.so.2", O_RDONLY) =3D 3=0A=
[pid 5073] fstat(3, {st_mode=3DS_IFREG|0755, st_size=3D74663, ...}) =
=3D 0=0A=
[pid 5073] read(3, =
"\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0p\31\0\000"..., 4096) =
=3D 4096=0A=
[pid 5073] mmap(0, 4096, PROT_READ|PROT_WRITE, =
MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) =3D 0x4002b000=0A=
[pid 5073] mmap(0, 11532, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) =3D =
0x4002c000=0A=
[pid 5073] mprotect(0x4002e000, 3340, PROT_NONE) =3D 0=0A=
[pid 5073] mmap(0x4002e000, 4096, PROT_READ|PROT_WRITE, =
MAP_PRIVATE|MAP_FIXED, 3, 0x1000) =3D 0x4002e000=0A=
[pid 5073] close(3) =3D 0=0A=
[pid 5073] open("/usr/local/ace/ace/libutil.so.1", O_RDONLY) =3D -1 =
ENOENT (No such file or directory)=0A=
[pid 5073] open("/lib/libutil.so.1", O_RDONLY) =3D 3=0A=
[pid 5073] fstat(3, {st_mode=3DS_IFREG|0755, st_size=3D46504, ...}) =
=3D 0=0A=
[pid 5073] read(3, =
"\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0P\f\0\000"..., 4096) =
=3D 4096=0A=
[pid 5073] mmap(0, 10104, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) =3D =
0x4002f000=0A=
[pid 5073] mprotect(0x40031000, 1912, PROT_NONE) =3D 0=0A=
[pid 5073] mmap(0x40031000, 4096, PROT_READ|PROT_WRITE, =
MAP_PRIVATE|MAP_FIXED, 3, 0x1000) =3D 0x40031000=0A=
[pid 5073] close(3) =3D 0=0A=
[pid 5073] open("/usr/local/ace/ace/libm.so.6", O_RDONLY) =3D -1 =
ENOENT (No such file or directory)=0A=
[pid 5073] open("/lib/libm.so.6", O_RDONLY) =3D 3=0A=
[pid 5073] fstat(3, {st_mode=3DS_IFREG|0755, st_size=3D540120, ...}) =
=3D 0=0A=
[pid 5073] read(3, =
"\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\320=3D\0"..., 4096) =
=3D 4096=0A=
[pid 5073] mmap(0, 114648, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) =3D =
0x40032000=0A=
[pid 5073] mprotect(0x4004d000, 4056, PROT_NONE) =3D 0=0A=
[pid 5073] mmap(0x4004d000, 4096, PROT_READ|PROT_WRITE, =
MAP_PRIVATE|MAP_FIXED, 3, 0x1a000) =3D 0x4004d000=0A=
[pid 5073] close(3) =3D 0=0A=
[pid 5073] open("/usr/local/ace/ace/libc.so.6", O_RDONLY) =3D -1 =
ENOENT (No such file or directory)=0A=
[pid 5073] open("/lib/libc.so.6", O_RDONLY) =3D 3=0A=
[pid 5073] fstat(3, {st_mode=3DS_IFREG|0755, st_size=3D4118299, ...}) =
=3D 0=0A=
[pid 5073] read(3, =
"\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\250\202"..., 4096) =3D =
4096=0A=
[pid 5073] mmap(0, 993500, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) =3D =
0x4004e000=0A=
[pid 5073] mprotect(0x40139000, 30940, PROT_NONE) =3D 0=0A=
[pid 5073] mmap(0x40139000, 16384, PROT_READ|PROT_WRITE, =
MAP_PRIVATE|MAP_FIXED, 3, 0xea000) =3D 0x40139000=0A=
[pid 5073] mmap(0x4013d000, 14556, PROT_READ|PROT_WRITE, =
MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) =3D 0x4013d000=0A=
[pid 5073] close(3) =3D 0=0A=
[pid 5073] mprotect(0x4004e000, 962560, PROT_READ|PROT_WRITE) =3D 0=0A=
[pid 5073] mprotect(0x4004e000, 962560, PROT_READ|PROT_EXEC) =3D 0=0A=
[pid 5073] munmap(0x40013000, 25676) =3D 0=0A=
[pid 5073] personality(0 /* PER_??? */) =3D 0=0A=
[pid 5073] getpid() =3D 5073=0A=
[pid 5073] getrlimit(RLIMIT_STACK, {rlim_cur=3D2040*1024, =
rlim_max=3DRLIM_INFINITY}) =3D 0=0A=
[pid 5073] getpid() =3D 5073=0A=
[pid 5073] uname({sys=3D"Linux", node=3D"akbar.nevex.com", ...}) =3D =
0=0A=
[pid 5073] rt_sigaction(SIGRT_0, {0x40020e10, [], 0x4000000}, NULL, 8) =
=3D 0=0A=
[pid 5073] rt_sigaction(SIGRT_1, {0x400207ac, [], 0x4000000}, NULL, 8) =
=3D 0=0A=
[pid 5073] rt_sigaction(SIGRT_2, {0x40020e9c, [], 0x4000000}, NULL, 8) =
=3D 0=0A=
[pid 5073] rt_sigprocmask(SIG_BLOCK, [RT_0], NULL, 8) =3D 0=0A=
[pid 5073] brk(0) =3D 0x80bf6dc=0A=
[pid 5073] brk(0x80bf70c) =3D 0x80bf70c=0A=
[pid 5073] brk(0x80c0000) =3D 0x80c0000=0A=
[pid 5073] open("tryout.py", O_RDONLY) =3D 3=0A=
[pid 5073] ioctl(0, TCGETS, 0xbffffabc) =3D -1 EINVAL (Invalid =
argument)=0A=
[pid 5073] brk(0x80c1000) =3D 0x80c1000=0A=
[pid 5073] brk(0x80c2000) =3D 0x80c2000=0A=
[pid 5073] brk(0x80c3000) =3D 0x80c3000=0A=
[pid 5073] brk(0x80c4000) =3D 0x80c4000=0A=
[pid 5073] stat("/home/gvwilson/bin/python", {st_mode=3DS_IFREG|0755, =
st_size=3D1407749, ...}) =3D 0=0A=
[pid 5073] readlink("/home/gvwilson/bin/python", "python2.1", 1024) =
=3D 9=0A=
[pid 5073] readlink("/home/gvwilson/bin/python2.1", 0xbffff30c, 1024) =
=3D -1 EINVAL (Invalid argument)=0A=
[pid 5073] stat("/home/gvwilson/bin/Modules/Setup", 0xbffff1f4) =3D -1 =
ENOENT (No such file or directory)=0A=
[pid 5073] stat("/home/gvwilson/bin/lib/python2.1/os.py", 0xbffff1d4) =
=3D -1 ENOENT (No such file or directory)=0A=
[pid 5073] stat("/home/gvwilson/bin/lib/python2.1/os.pyc", 0xbffff1cc) =
=3D -1 ENOENT (No such file or directory)=0A=
[pid 5073] stat("/home/gvwilson/lib/python2.1/os.py", =
{st_mode=3DS_IFREG|0644, st_size=3D16300, ...}) =3D 0=0A=
[pid 5073] stat("/home/gvwilson/bin/Modules/Setup", 0xbffff1f8) =3D -1 =
ENOENT (No such file or directory)=0A=
[pid 5073] stat("/home/gvwilson/bin/lib/python2.1/lib-dynload", =
0xbffff1f0) =3D -1 ENOENT (No such file or directory)=0A=
[pid 5073] stat("/home/gvwilson/lib/python2.1/lib-dynload", =
{st_mode=3DS_IFDIR|0777, st_size=3D1024, ...}) =3D 0=0A=
[pid 5073] brk(0x80c5000) =3D 0x80c5000=0A=
[pid 5073] brk(0x80c6000) =3D 0x80c6000=0A=
[pid 5073] brk(0x80c7000) =3D 0x80c7000=0A=
[pid 5073] brk(0x80c8000) =3D 0x80c8000=0A=
[pid 5073] brk(0x80c9000) =3D 0x80c9000=0A=
[pid 5073] brk(0x80ca000) =3D 0x80ca000=0A=
[pid 5073] rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) =3D 0=0A=
[pid 5073] getpid() =3D 5073=0A=
[pid 5073] brk(0x80cb000) =3D 0x80cb000=0A=
[pid 5073] rt_sigaction(SIGHUP, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGINT, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGQUIT, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGILL, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGTRAP, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGABRT, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGBUS, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGFPE, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGKILL, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGUSR1, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGSEGV, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGUSR2, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGPIPE, NULL, {SIG_IGN}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGALRM, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGTERM, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGSTKFLT, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGCHLD, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGCONT, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGSTOP, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGTSTP, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGTTIN, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGTTOU, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGURG, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGXCPU, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGXFSZ, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGVTALRM, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGPROF, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGWINCH, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGIO, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGPWR, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGUNUSED, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGRT_3, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGRT_4, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGRT_5, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGRT_6, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGRT_7, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGRT_8, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGRT_9, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGRT_10, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGRT_11, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGRT_12, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGRT_13, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGRT_14, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGRT_15, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGRT_16, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGRT_17, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGRT_18, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGRT_19, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGRT_20, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGRT_21, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGRT_22, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGRT_23, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGRT_24, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGRT_25, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGRT_26, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGRT_27, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGRT_28, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGRT_29, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGRT_30, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGRT_31, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGINT, NULL, {SIG_DFL}, 8) =3D 0=0A=
[pid 5073] rt_sigaction(SIGINT, {0x40021460, [], 0x4000000}, NULL, 8) =
=3D 0=0A=
[pid 5073] brk(0x80cd000) =3D 0x80cd000=0A=
[pid 5073] stat("/home/gvwilson/lib/python2.1/site", 0xbfffec9c) =3D =
-1 ENOENT (No such file or directory)=0A=
[pid 5073] open("/home/gvwilson/lib/python2.1/site.so", O_RDONLY) =3D =
-1 ENOENT (No such file or directory)=0A=
[pid 5073] open("/home/gvwilson/lib/python2.1/sitemodule.so", =
O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
[pid 5073] open("/home/gvwilson/lib/python2.1/site.py", O_RDONLY) =3D =
4=0A=
[pid 5073] open("/dev/null", O_RDONLY|O_NONBLOCK|O_DIRECTORY) =3D -1 =
ENOTDIR (Not a directory)=0A=
[pid 5073] open("/home/gvwilson/lib/python2.1", =
O_RDONLY|O_NONBLOCK|O_DIRECTORY) =3D 5=0A=
[pid 5073] fstat(5, {st_mode=3DS_IFDIR|0755, st_size=3D10240, ...}) =
=3D 0=0A=
[pid 5073] fcntl(5, F_SETFD, FD_CLOEXEC) =3D 0=0A=
[pid 5073] getdents(5, /* 53 entries */, 3933) =3D 1168=0A=
[pid 5073] getdents(5, /* 52 entries */, 3933) =3D 1156=0A=
[pid 5073] getdents(5, /* 53 entries */, 3933) =3D 1172=0A=
[pid 5073] close(5) =3D 0=0A=
[pid 5073] fstat(4, {st_mode=3DS_IFREG|0644, st_size=3D8778, ...}) =3D =
0=0A=
[pid 5073] open("/home/gvwilson/lib/python2.1/site.pyc", O_RDONLY) =3D =
5=0A=
[pid 5073] fstat(5, {st_mode=3DS_IFREG|0666, st_size=3D9529, ...}) =3D =
0=0A=
[pid 5073] mmap(0, 4096, PROT_READ|PROT_WRITE, =
MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) =3D 0x40013000=0A=
[pid 5073] read(5, =
"*\353\r\n\310\274\232:c\0\0\0\0\t\0\0\0s\343\4\0\0\177"..., 4096) =3D =
4096=0A=
[pid 5073] fstat(5, {st_mode=3DS_IFREG|0666, st_size=3D9529, ...}) =3D =
0=0A=
[pid 5073] read(5, "\203\1\0}\1\0Wn =
\0\177a\0\4t\5\0i\10\0j\n\0o\16\0\1\1\1"..., 4096) =3D 4096=0A=
[pid 5073] read(5, "\0LICENSE.txts\7\0\0\0LICENSEs\5\0\0\0asc"..., =
4096) =3D 1337=0A=
[pid 5073] read(5, "", 4096) =3D 0=0A=
[pid 5073] brk(0x80ce000) =3D 0x80ce000=0A=
[pid 5073] brk(0x80cf000) =3D 0x80cf000=0A=
[pid 5073] brk(0x80d0000) =3D 0x80d0000=0A=
[pid 5073] close(5) =3D 0=0A=
[pid 5073] munmap(0x40013000, 4096) =3D 0=0A=
[pid 5073] stat("/home/gvwilson/lib/python2.1/os", 0xbfffde20) =3D -1 =
ENOENT (No such file or directory)=0A=
[pid 5073] open("/home/gvwilson/lib/python2.1/os.so", O_RDONLY) =3D -1 =
ENOENT (No such file or directory)=0A=
[pid 5073] open("/home/gvwilson/lib/python2.1/osmodule.so", O_RDONLY) =
=3D -1 ENOENT (No such file or directory)=0A=
[pid 5073] open("/home/gvwilson/lib/python2.1/os.py", O_RDONLY) =3D =
5=0A=
[pid 5073] open("/home/gvwilson/lib/python2.1", =
O_RDONLY|O_NONBLOCK|O_DIRECTORY) =3D 6=0A=
[pid 5073] fstat(6, {st_mode=3DS_IFDIR|0755, st_size=3D10240, ...}) =
=3D 0=0A=
[pid 5073] fcntl(6, F_SETFD, FD_CLOEXEC) =3D 0=0A=
[pid 5073] brk(0x80d2000) =3D 0x80d2000=0A=
[pid 5073] getdents(6, /* 53 entries */, 3933) =3D 1168=0A=
[pid 5073] getdents(6, /* 52 entries */, 3933) =3D 1156=0A=
[pid 5073] close(6) =3D 0=0A=
[pid 5073] fstat(5, {st_mode=3DS_IFREG|0644, st_size=3D16300, ...}) =
=3D 0=0A=
[pid 5073] open("/home/gvwilson/lib/python2.1/os.pyc", O_RDONLY) =3D =
6=0A=
[pid 5073] fstat(6, {st_mode=3DS_IFREG|0666, st_size=3D21279, ...}) =
=3D 0=0A=
[pid 5073] mmap(0, 4096, PROT_READ|PROT_WRITE, =
MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) =3D 0x40013000=0A=
[pid 5073] read(6, =
"*\353\r\n\307\274\232:c\0\0\0\0\v\0\0\0s\336\10\0\0\177"..., 4096) =3D =
4096=0A=
[pid 5073] fstat(6, {st_mode=3DS_IFREG|0666, st_size=3D21279, ...}) =
=3D 0=0A=
[pid 5073] brk(0x80d8000) =3D 0x80d8000=0A=
[pid 5073] read(6, =
"\0|\2\0\203\1\0\\\2\0}\2\0}\3\0n\1\0\1\177\257\0|\2\0o"..., 16384) =3D =
16384=0A=
[pid 5073] read(6, "\0\0_spawnvefs\4\0\0\0paths\6\0\0\0spawnls"..., =
4096) =3D 799=0A=
[pid 5073] read(6, "", 4096) =3D 0=0A=
[pid 5073] brk(0x80d9000) =3D 0x80d9000=0A=
[pid 5073] brk(0x80da000) =3D 0x80da000=0A=
[pid 5073] brk(0x80db000) =3D 0x80db000=0A=
[pid 5073] brk(0x80dc000) =3D 0x80dc000=0A=
[pid 5073] brk(0x80dd000) =3D 0x80dd000=0A=
[pid 5073] brk(0x80de000) =3D 0x80de000=0A=
[pid 5073] brk(0x80e2000) =3D 0x80e2000=0A=
[pid 5073] close(6) =3D 0=0A=
[pid 5073] munmap(0x40013000, 4096) =3D 0=0A=
[pid 5073] brk(0x80e3000) =3D 0x80e3000=0A=
[pid 5073] stat("/home/gvwilson/lib/python2.1/posixpath", 0xbfffcfa4) =
=3D -1 ENOENT (No such file or directory)=0A=
[pid 5073] open("/home/gvwilson/lib/python2.1/posixpath.so", O_RDONLY) =
=3D -1 ENOENT (No such file or directory)=0A=
[pid 5073] open("/home/gvwilson/lib/python2.1/posixpathmodule.so", =
O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
[pid 5073] open("/home/gvwilson/lib/python2.1/posixpath.py", O_RDONLY) =
=3D 6=0A=
[pid 5073] open("/home/gvwilson/lib/python2.1", =
O_RDONLY|O_NONBLOCK|O_DIRECTORY) =3D 7=0A=
[pid 5073] fstat(7, {st_mode=3DS_IFDIR|0755, st_size=3D10240, ...}) =
=3D 0=0A=
[pid 5073] fcntl(7, F_SETFD, FD_CLOEXEC) =3D 0=0A=
[pid 5073] brk(0x80e5000) =3D 0x80e5000=0A=
[pid 5073] getdents(7, /* 53 entries */, 3933) =3D 1168=0A=
[pid 5073] getdents(7, /* 52 entries */, 3933) =3D 1156=0A=
[pid 5073] close(7) =3D 0=0A=
[pid 5073] fstat(6, {st_mode=3DS_IFREG|0644, st_size=3D11111, ...}) =
=3D 0=0A=
[pid 5073] open("/home/gvwilson/lib/python2.1/posixpath.pyc", =
O_RDONLY) =3D 7=0A=
[pid 5073] fstat(7, {st_mode=3DS_IFREG|0666, st_size=3D12385, ...}) =
=3D 0=0A=
[pid 5073] mmap(0, 4096, PROT_READ|PROT_WRITE, =
MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) =3D 0x40013000=0A=
[pid 5073] read(7, =
"*\353\r\n\307\274\232:c\0\0\0\0\31\0\0\0s\261\1\0\0\177"..., 4096) =3D =
4096=0A=
[pid 5073] fstat(7, {st_mode=3DS_IFREG|0666, st_size=3D12385, ...}) =
=3D 0=0A=
[pid 5073] read(7, =
"ponents\0\0\0\0i\0\0\0\0i\1\0\0\0N(\6\0\0\0s\1\0\0\0"..., 8192) =3D =
8192=0A=
[pid 5073] read(7, "lib/python2.1/posixpath.pys\1\0\0\0?"..., 4096) =
=3D 97=0A=
[pid 5073] read(7, "", 4096) =3D 0=0A=
[pid 5073] brk(0x80e6000) =3D 0x80e6000=0A=
[pid 5073] brk(0x80e7000) =3D 0x80e7000=0A=
[pid 5073] brk(0x80ee000) =3D 0x80ee000=0A=
[pid 5073] close(7) =3D 0=0A=
[pid 5073] munmap(0x40013000, 4096) =3D 0=0A=
[pid 5073] stat("/home/gvwilson/lib/python2.1/stat", 0xbfffc128) =3D =
-1 ENOENT (No such file or directory)=0A=
[pid 5073] open("/home/gvwilson/lib/python2.1/stat.so", O_RDONLY) =3D =
-1 ENOENT (No such file or directory)=0A=
[pid 5073] open("/home/gvwilson/lib/python2.1/statmodule.so", =
O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
[pid 5073] open("/home/gvwilson/lib/python2.1/stat.py", O_RDONLY) =3D =
7=0A=
[pid 5073] open("/home/gvwilson/lib/python2.1", =
O_RDONLY|O_NONBLOCK|O_DIRECTORY) =3D 8=0A=
[pid 5073] fstat(8, {st_mode=3DS_IFDIR|0755, st_size=3D10240, ...}) =
=3D 0=0A=
[pid 5073] fcntl(8, F_SETFD, FD_CLOEXEC) =3D 0=0A=
[pid 5073] getdents(8, /* 53 entries */, 3933) =3D 1168=0A=
[pid 5073] getdents(8, /* 52 entries */, 3933) =3D 1156=0A=
[pid 5073] getdents(8, /* 53 entries */, 3933) =3D 1172=0A=
[pid 5073] close(8) =3D 0=0A=
[pid 5073] fstat(7, {st_mode=3DS_IFREG|0644, st_size=3D1667, ...}) =3D =
0=0A=
[pid 5073] open("/home/gvwilson/lib/python2.1/stat.pyc", O_RDONLY) =3D =
8=0A=
[pid 5073] fstat(8, {st_mode=3DS_IFREG|0666, st_size=3D3460, ...}) =3D =
0=0A=
[pid 5073] mmap(0, 4096, PROT_READ|PROT_WRITE, =
MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) =3D 0x40013000=0A=
[pid 5073] read(8, =
"*\353\r\n\311\274\232:c\0\0\0\0\1\0\0\0s\300\1\0\0\177"..., 4096) =3D =
3460=0A=
[pid 5073] fstat(8, {st_mode=3DS_IFREG|0666, st_size=3D3460, ...}) =3D =
0=0A=
[pid 5073] read(8, "", 4096) =3D 0=0A=
[pid 5073] close(8) =3D 0=0A=
[pid 5073] munmap(0x40013000, 4096) =3D 0=0A=
[pid 5073] close(7) =3D 0=0A=
[pid 5073] close(6) =3D 0=0A=
[pid 5073] stat("/home/gvwilson/lib/python2.1/UserDict", 0xbfffcfa4) =
=3D -1 ENOENT (No such file or directory)=0A=
[pid 5073] open("/home/gvwilson/lib/python2.1/UserDict.so", O_RDONLY) =
=3D -1 ENOENT (No such file or directory)=0A=
[pid 5073] open("/home/gvwilson/lib/python2.1/UserDictmodule.so", =
O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
[pid 5073] open("/home/gvwilson/lib/python2.1/UserDict.py", O_RDONLY) =
=3D 6=0A=
[pid 5073] open("/home/gvwilson/lib/python2.1", =
O_RDONLY|O_NONBLOCK|O_DIRECTORY) =3D 7=0A=
[pid 5073] fstat(7, {st_mode=3DS_IFDIR|0755, st_size=3D10240, ...}) =
=3D 0=0A=
[pid 5073] fcntl(7, F_SETFD, FD_CLOEXEC) =3D 0=0A=
[pid 5073] getdents(7, /* 53 entries */, 3933) =3D 1168=0A=
[pid 5073] close(7) =3D 0=0A=
[pid 5073] fstat(6, {st_mode=3DS_IFREG|0644, st_size=3D1573, ...}) =3D =
0=0A=
[pid 5073] open("/home/gvwilson/lib/python2.1/UserDict.pyc", O_RDONLY) =
=3D 7=0A=
[pid 5073] fstat(7, {st_mode=3DS_IFREG|0666, st_size=3D4341, ...}) =3D =
0=0A=
[pid 5073] mmap(0, 4096, PROT_READ|PROT_WRITE, =
MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) =3D 0x40013000=0A=
[pid 5073] read(7, =
"*\353\r\n\302\274\232:c\0\0\0\0\3\0\0\0s&\0\0\0\177\0\0"..., 4096) =3D =
4096=0A=
[pid 5073] fstat(7, {st_mode=3DS_IFREG|0666, st_size=3D4341, ...}) =3D =
0=0A=
[pid 5073] read(7, =
"s\7\0\0\0popitem(\0\0\0\0(\0\0\0\0(\0\0\0\0s(\0\0\0"..., 4096) =3D =
245=0A=
[pid 5073] read(7, "", 4096) =3D 0=0A=
[pid 5073] brk(0x80ef000) =3D 0x80ef000=0A=
[pid 5073] close(7) =3D 0=0A=
[pid 5073] munmap(0x40013000, 4096) =3D 0=0A=
[pid 5073] close(6) =3D 0=0A=
[pid 5073] brk(0x80f0000) =3D 0x80f0000=0A=
[pid 5073] brk(0x80f1000) =3D 0x80f1000=0A=
[pid 5073] brk(0x80f2000) =3D 0x80f2000=0A=
[pid 5073] brk(0x80f3000) =3D 0x80f3000=0A=
[pid 5073] brk(0x80f4000) =3D 0x80f4000=0A=
[pid 5073] brk(0x80f5000) =3D 0x80f5000=0A=
[pid 5073] brk(0x80f6000) =3D 0x80f6000=0A=
[pid 5073] brk(0x80f7000) =3D 0x80f7000=0A=
[pid 5073] brk(0x80f8000) =3D 0x80f8000=0A=
[pid 5073] brk(0x80f9000) =3D 0x80f9000=0A=
[pid 5073] brk(0x80fa000) =3D 0x80fa000=0A=
[pid 5073] brk(0x80fb000) =3D 0x80fb000=0A=
[pid 5073] brk(0x80fc000) =3D 0x80fc000=0A=
[pid 5073] brk(0x80fe000) =3D 0x80fe000=0A=
[pid 5073] close(5) =3D 0=0A=
[pid 5073] stat("/home/gvwilson/lib/python2.1/site-packages", =
{st_mode=3DS_IFDIR|0755, st_size=3D1024, ...}) =3D 0=0A=
[pid 5073] open("/home/gvwilson/lib/python2.1/site-packages", =
O_RDONLY|O_NONBLOCK|O_DIRECTORY) =3D 5=0A=
[pid 5073] fstat(5, {st_mode=3DS_IFDIR|0755, st_size=3D1024, ...}) =3D =
0=0A=
[pid 5073] fcntl(5, F_SETFD, FD_CLOEXEC) =3D 0=0A=
[pid 5073] getdents(5, /* 4 entries */, 3933) =3D 68=0A=
[pid 5073] getdents(5, /* 0 entries */, 3933) =3D 0=0A=
[pid 5073] close(5) =3D 0=0A=
[pid 5073] stat("/home/gvwilson/lib/site-python", 0xbfffe9ec) =3D -1 =
ENOENT (No such file or directory)=0A=
[pid 5073] open("/usr/share/locale/locale.alias", O_RDONLY) =3D 5=0A=
[pid 5073] fstat(5, {st_mode=3DS_IFREG|0644, st_size=3D2174, ...}) =3D =
0=0A=
[pid 5073] mmap(0, 4096, PROT_READ|PROT_WRITE, =
MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) =3D 0x40013000=0A=
[pid 5073] read(5, "# Locale name alias data base.\n#"..., 4096) =3D =
2174=0A=
[pid 5073] read(5, "", 4096) =3D 0=0A=
[pid 5073] close(5) =3D 0=0A=
[pid 5073] munmap(0x40013000, 4096) =3D 0=0A=
[pid 5073] open("/usr/share/i18n/locale.alias", O_RDONLY) =3D -1 =
ENOENT (No such file or directory)=0A=
[pid 5073] open("/usr/share/locale/en_US/LC_MESSAGES/libc.mo", =
O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
[pid 5073] open("/usr/share/locale/en/LC_MESSAGES/libc.mo", O_RDONLY) =
=3D -1 ENOENT (No such file or directory)=0A=
[pid 5073] stat("/home/gvwilson/lib/python2.1/sitecustomize", =
0xbfffde20) =3D -1 ENOENT (No such file or directory)=0A=
[pid 5073] open("/home/gvwilson/lib/python2.1/sitecustomize.so", =
O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
[pid 5073] open("/home/gvwilson/lib/python2.1/sitecustomizemodule.so", =
O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
[pid 5073] open("/home/gvwilson/lib/python2.1/sitecustomize.py", =
O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
[pid 5073] open("/home/gvwilson/lib/python2.1/sitecustomize.pyc", =
O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
[pid 5073] =
stat("/home/gvwilson/lib/python2.1/lib-dynload/sitecustomize", =
0xbfffde20) =3D -1 ENOENT (No such file or directory)=0A=
[pid 5073] =
open("/home/gvwilson/lib/python2.1/lib-dynload/sitecustomize.so", =
O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
[pid 5073] =
open("/home/gvwilson/lib/python2.1/lib-dynload/sitecustomizemodule.so", =
O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
[pid 5073] open("/home/gvwilson/lib/python2.1/lib-dynload/sitecustomize=
.py", O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
[pid 5073] =
open("/home/gvwilson/lib/python2.1/lib-dynload/sitecustomize.pyc", =
O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
[pid 5073] =
stat("/home/gvwilson/lib/python2.1/plat-linux2/sitecustomize", =
0xbfffde20) =3D -1 ENOENT (No such file or directory)=0A=
[pid 5073] =
open("/home/gvwilson/lib/python2.1/plat-linux2/sitecustomize.so", =
O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
[pid 5073] =
open("/home/gvwilson/lib/python2.1/plat-linux2/sitecustomizemodule.so", =
O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
[pid 5073] =
open("/home/gvwilson/lib/python2.1/plat-linux2/sitecustomize.py", =
O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
[pid 5073] =
open("/home/gvwilson/lib/python2.1/plat-linux2/sitecustomize.pyc", =
O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
[pid 5073] stat("/home/gvwilson/lib/python2.1/lib-tk/sitecustomize", =
0xbfffde20) =3D -1 ENOENT (No such file or directory)=0A=
[pid 5073] =
open("/home/gvwilson/lib/python2.1/lib-tk/sitecustomize.so", O_RDONLY) =
=3D -1 ENOENT (No such file or directory)=0A=
[pid 5073] =
open("/home/gvwilson/lib/python2.1/lib-tk/sitecustomizemodule.so", =
O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
[pid 5073] =
open("/home/gvwilson/lib/python2.1/lib-tk/sitecustomize.py", O_RDONLY) =
=3D -1 ENOENT (No such file or directory)=0A=
[pid 5073] =
open("/home/gvwilson/lib/python2.1/lib-tk/sitecustomize.pyc", O_RDONLY) =
=3D -1 ENOENT (No such file or directory)=0A=
[pid 5073] =
stat("/home/gvwilson/lib/python2.1/site-packages/sitecustomize", =
0xbfffde20) =3D -1 ENOENT (No such file or directory)=0A=
[pid 5073] =
open("/home/gvwilson/lib/python2.1/site-packages/sitecustomize.so", =
O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
[pid 5073] =
open("/home/gvwilson/lib/python2.1/site-packages/sitecustomizemodule.so"=
, O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
[pid 5073] =
open("/home/gvwilson/lib/python2.1/site-packages/sitecustomize.py", =
O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
[pid 5073] =
open("/home/gvwilson/lib/python2.1/site-packages/sitecustomize.pyc", =
O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
[pid 5073] close(4) =3D 0=0A=
[pid 5073] readlink("tryout.py", 0xbffff748, 1024) =3D -1 EINVAL =
(Invalid argument)=0A=
[pid 5073] ioctl(3, TCGETS, 0xbffffa9c) =3D -1 ENOTTY (Inappropriate =
ioctl for device)=0A=
[pid 5073] fstat(3, {st_mode=3DS_IFREG|0666, st_size=3D20, ...}) =3D =
0=0A=
[pid 5073] mmap(0, 4096, PROT_READ|PROT_WRITE, =
MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) =3D 0x40013000=0A=
[pid 5073] _llseek(3, 0, [0], SEEK_CUR) =3D 0=0A=
[pid 5073] read(3, "print \"We made it!\"\n", 4096) =3D 20=0A=
[pid 5073] _llseek(3, 20, [20], SEEK_SET) =3D 0=0A=
[pid 5073] brk(0x8101000) =3D 0x8101000=0A=
[pid 5073] read(3, "", 4096) =3D 0=0A=
[pid 5073] close(3) =3D 0=0A=
[pid 5073] munmap(0x40013000, 4096) =3D 0=0A=
[pid 5073] fstat(1, {st_mode=3DS_IFIFO|0600, st_size=3D0, ...}) =3D =
0=0A=
[pid 5073] mmap(0, 4096, PROT_READ|PROT_WRITE, =
MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) =3D 0x40013000=0A=
[pid 5073] rt_sigaction(SIGINT, NULL, {0x40021460, [], 0x4000000}, 8) =
=3D 0=0A=
[pid 5073] rt_sigaction(SIGINT, {SIG_DFL}, NULL, 8) =3D 0=0A=
[pid 5073] write(1, "We made it!\n", 12) =3D 12=0A=
[pid 5071] <... read resumed> "We made it!\n", 8192) =3D 12=0A=
[pid 5071] read(6, <unfinished ...>=0A=
[pid 5073] munmap(0x40013000, 4096) =3D 0=0A=
[pid 5073] _exit(0) =3D ?=0A=
<... read resumed> "", 4096) =3D 0=0A=
--- SIGCHLD (Child exited) ---=0A=
read(6, "", 8192) =3D 0=0A=
open("printing.html", O_RDONLY) =3D 3=0A=
stat("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/drivers2",=
{st_mode=3DS_IFDIR|0777, st_size=3D1024, ...}) =3D 0=0A=
stat("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/drivers2/_=
_init__.py", {st_mode=3DS_IFREG|0666, st_size=3D39, ...}) =3D 0=0A=
stat("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/drivers2/_=
_init__", 0xbfffe354) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/drivers2/_=
_init__.so", O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/drivers2/_=
_init__module.so", O_RDONLY) =3D -1 ENOENT (No such file or =
directory)=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/drivers2/_=
_init__.py", O_RDONLY) =3D 4=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/drivers2",=
O_RDONLY|O_NONBLOCK|O_DIRECTORY) =3D 7=0A=
fstat(7, {st_mode=3DS_IFDIR|0777, st_size=3D1024, ...}) =3D 0=0A=
fcntl(7, F_SETFD, FD_CLOEXEC) =3D 0=0A=
brk(0x8132000) =3D 0x8132000=0A=
getdents(7, /* 8 entries */, 3933) =3D 188=0A=
close(7) =3D 0=0A=
fstat(4, {st_mode=3DS_IFREG|0666, st_size=3D39, ...}) =3D 0=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/drivers2/_=
_init__.pyc", O_RDONLY) =3D 7=0A=
fstat(7, {st_mode=3DS_IFREG|0666, st_size=3D211, ...}) =3D 0=0A=
mmap(0, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) =
=3D 0x40142000=0A=
read(7, "*\353\r\n\341\221\3109c\0\0\0\0\1\0\0\0s\20\0\0\0\177\0"..., =
4096) =3D 211=0A=
fstat(7, {st_mode=3DS_IFREG|0666, st_size=3D211, ...}) =3D 0=0A=
read(7, "", 4096) =3D 0=0A=
close(7) =3D 0=0A=
munmap(0x40142000, 4096) =3D 0=0A=
close(4) =3D 0=0A=
stat("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/drivers2/d=
rv_pyexpat", 0xbfffe79c) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/drivers2/d=
rv_pyexpat.so", O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/drivers2/d=
rv_pyexpatmodule.so", O_RDONLY) =3D -1 ENOENT (No such file or =
directory)=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/drivers2/d=
rv_pyexpat.py", O_RDONLY) =3D 4=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/drivers2",=
O_RDONLY|O_NONBLOCK|O_DIRECTORY) =3D 7=0A=
fstat(7, {st_mode=3DS_IFDIR|0777, st_size=3D1024, ...}) =3D 0=0A=
fcntl(7, F_SETFD, FD_CLOEXEC) =3D 0=0A=
getdents(7, /* 8 entries */, 3933) =3D 188=0A=
close(7) =3D 0=0A=
fstat(4, {st_mode=3DS_IFREG|0666, st_size=3D638, ...}) =3D 0=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/drivers2/d=
rv_pyexpat.pyc", O_RDONLY) =3D 7=0A=
fstat(7, {st_mode=3DS_IFREG|0666, st_size=3D407, ...}) =3D 0=0A=
mmap(0, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) =
=3D 0x40142000=0A=
read(7, "*\353\r\nC\377\3209c\0\0\0\0\2\0\0\0s \0\0\0\177\0\0d\0"..., =
4096) =3D 407=0A=
fstat(7, {st_mode=3DS_IFREG|0666, st_size=3D407, ...}) =3D 0=0A=
read(7, "", 4096) =3D 0=0A=
close(7) =3D 0=0A=
munmap(0x40142000, 4096) =3D 0=0A=
stat("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/drivers2/x=
ml", 0xbfffd920) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/drivers2/x=
ml.so", O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/drivers2/x=
mlmodule.so", O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/drivers2/x=
ml.py", O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/drivers2/x=
ml.pyc", O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
stat("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/expatreade=
r", 0xbfffd920) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/expatreade=
r.so", O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/expatreade=
rmodule.so", O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/expatreade=
r.py", O_RDONLY) =3D 7=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax", =
O_RDONLY|O_NONBLOCK|O_DIRECTORY) =3D 8=0A=
fstat(8, {st_mode=3DS_IFDIR|0777, st_size=3D1024, ...}) =3D 0=0A=
fcntl(8, F_SETFD, FD_CLOEXEC) =3D 0=0A=
getdents(8, /* 24 entries */, 3933) =3D 556=0A=
close(8) =3D 0=0A=
fstat(7, {st_mode=3DS_IFREG|0666, st_size=3D8257, ...}) =3D 0=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/expatreade=
r.pyc", O_RDONLY) =3D 8=0A=
fstat(8, {st_mode=3DS_IFREG|0666, st_size=3D12826, ...}) =3D 0=0A=
mmap(0, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) =
=3D 0x40142000=0A=
read(8, "*\353\r\n|\216r:c\0\0\0\0\5\0\0\0sA\1\0\0\177\0\0d\0\0"..., =
4096) =3D 4096=0A=
fstat(8, {st_mode=3DS_IFREG|0666, st_size=3D12826, ...}) =3D 0=0A=
read(8, "\0\0\0resets\r\0\0\0_cont_handlers\r\0\0\0s"..., 8192) =3D =
8192=0A=
read(8, "\16\0\0\0AttributesImpls\20\0\0\0Attribute"..., 4096) =3D =
538=0A=
read(8, "", 4096) =3D 0=0A=
close(8) =3D 0=0A=
munmap(0x40142000, 4096) =3D 0=0A=
stat("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/xml", =
0xbfffcaa4) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/xml.so", =
O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/xmlmodule.=
so", O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/xml.py", =
O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/xml.pyc", =
O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
stat("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/parsers", =
{st_mode=3DS_IFDIR|0777, st_size=3D1024, ...}) =3D 0=0A=
stat("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/parsers/__init=
__.py", {st_mode=3DS_IFREG|0666, st_size=3D43, ...}) =3D 0=0A=
stat("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/parsers/__init=
__", 0xbfffc65c) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/parsers/__init=
__.so", O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/parsers/__init=
__module.so", O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/parsers/__init=
__.py", O_RDONLY) =3D 8=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/parsers", =
O_RDONLY|O_NONBLOCK|O_DIRECTORY) =3D 9=0A=
fstat(9, {st_mode=3DS_IFDIR|0777, st_size=3D1024, ...}) =3D 0=0A=
fcntl(9, F_SETFD, FD_CLOEXEC) =3D 0=0A=
brk(0x8134000) =3D 0x8134000=0A=
getdents(9, /* 11 entries */, 3933) =3D 228=0A=
close(9) =3D 0=0A=
fstat(8, {st_mode=3DS_IFREG|0666, st_size=3D43, ...}) =3D 0=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/parsers/__init=
__.pyc", O_RDONLY) =3D 9=0A=
fstat(9, {st_mode=3DS_IFREG|0666, st_size=3D221, ...}) =3D 0=0A=
mmap(0, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) =
=3D 0x40142000=0A=
read(9, "*\353\r\nn\200\221:c\0\0\0\0\3\0\0\0s\31\0\0\0\177\0\0"..., =
4096) =3D 221=0A=
fstat(9, {st_mode=3DS_IFREG|0666, st_size=3D221, ...}) =3D 0=0A=
read(9, "", 4096) =3D 0=0A=
close(9) =3D 0=0A=
munmap(0x40142000, 4096) =3D 0=0A=
close(8) =3D 0=0A=
stat("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/parsers/expat"=
, 0xbfffcaa4) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/parsers/expat.=
so", O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/parsers/expatm=
odule.so", O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/parsers/expat.=
py", O_RDONLY) =3D 8=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/parsers", =
O_RDONLY|O_NONBLOCK|O_DIRECTORY) =3D 9=0A=
fstat(9, {st_mode=3DS_IFDIR|0777, st_size=3D1024, ...}) =3D 0=0A=
fcntl(9, F_SETFD, FD_CLOEXEC) =3D 0=0A=
getdents(9, /* 11 entries */, 3933) =3D 228=0A=
close(9) =3D 0=0A=
fstat(8, {st_mode=3DS_IFREG|0666, st_size=3D112, ...}) =3D 0=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/parsers/expat.=
pyc", O_RDONLY) =3D 9=0A=
fstat(9, {st_mode=3DS_IFREG|0666, st_size=3D315, ...}) =3D 0=0A=
mmap(0, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) =
=3D 0x40142000=0A=
read(9, "*\353\r\n\37s\3179c\0\0\0\0\1\0\0\0s#\0\0\0\177\0\0d\0"..., =
4096) =3D 315=0A=
fstat(9, {st_mode=3DS_IFREG|0666, st_size=3D315, ...}) =3D 0=0A=
read(9, "", 4096) =3D 0=0A=
close(9) =3D 0=0A=
munmap(0x40142000, 4096) =3D 0=0A=
stat("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/parsers/pyexpa=
t", 0xbfffbc28) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/parsers/pyexpa=
t.so", O_RDONLY) =3D 9=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/parsers", =
O_RDONLY|O_NONBLOCK|O_DIRECTORY) =3D 10=0A=
fstat(10, {st_mode=3DS_IFDIR|0777, st_size=3D1024, ...}) =3D 0=0A=
fcntl(10, F_SETFD, FD_CLOEXEC) =3D 0=0A=
getdents(10, /* 11 entries */, 3933) =3D 228=0A=
close(10) =3D 0=0A=
fstat(9, {st_mode=3DS_IFREG|0777, st_size=3D380343, ...}) =3D 0=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/parsers/pyexpa=
t.so", O_RDONLY) =3D 10=0A=
fstat(10, {st_mode=3DS_IFREG|0777, st_size=3D380343, ...}) =3D 0=0A=
read(10, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\0008\0"..., =
4096) =3D 4096=0A=
mmap(0, 141796, PROT_READ|PROT_EXEC, MAP_PRIVATE, 10, 0) =3D =
0x40144000=0A=
mprotect(0x40164000, 10724, PROT_NONE) =3D 0=0A=
mmap(0x40164000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED, =
10, 0x1f000) =3D 0x40164000=0A=
close(10) =3D 0=0A=
close(9) =3D 0=0A=
close(8) =3D 0=0A=
stat("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/saxutils",=
0xbfffcaa4) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/saxutils.s=
o", O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/saxutilsmo=
dule.so", O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/saxutils.p=
y", O_RDONLY) =3D 8=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax", =
O_RDONLY|O_NONBLOCK|O_DIRECTORY) =3D 9=0A=
fstat(9, {st_mode=3DS_IFDIR|0777, st_size=3D1024, ...}) =3D 0=0A=
fcntl(9, F_SETFD, FD_CLOEXEC) =3D 0=0A=
brk(0x8136000) =3D 0x8136000=0A=
getdents(9, /* 24 entries */, 3933) =3D 556=0A=
close(9) =3D 0=0A=
fstat(8, {st_mode=3DS_IFREG|0666, st_size=3D19814, ...}) =3D 0=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/saxutils.p=
yc", O_RDONLY) =3D 9=0A=
fstat(9, {st_mode=3DS_IFREG|0666, st_size=3D41178, ...}) =3D 0=0A=
mmap(0, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) =
=3D 0x40142000=0A=
read(9, "*\353\r\n\370\216r:c\0\0\0\0\17\0\0\0s\211\2\0\0\177\0"..., =
4096) =3D 4096=0A=
fstat(9, {st_mode=3DS_IFREG|0666, st_size=3D41178, ...}) =3D 0=0A=
brk(0x8141000) =3D 0x8141000=0A=
read(9, "\3\1\f\1c\2\0\2\0\4\0\3\0sJ\0\0\0\177I\0\177J\0|\0\0i\1"..., =
36864) =3D 36864=0A=
read(9, "s\f\0\0\0_StringTypess\v\0\0\0ErrorRaise"..., 4096) =3D 218=0A=
read(9, "", 4096) =3D 0=0A=
brk(0x8142000) =3D 0x8142000=0A=
brk(0x8143000) =3D 0x8143000=0A=
brk(0x8144000) =3D 0x8144000=0A=
brk(0x8145000) =3D 0x8145000=0A=
brk(0x8146000) =3D 0x8146000=0A=
brk(0x8147000) =3D 0x8147000=0A=
brk(0x8148000) =3D 0x8148000=0A=
brk(0x8149000) =3D 0x8149000=0A=
brk(0x814a000) =3D 0x814a000=0A=
brk(0x814b000) =3D 0x814b000=0A=
brk(0x814c000) =3D 0x814c000=0A=
brk(0x814d000) =3D 0x814d000=0A=
brk(0x814e000) =3D 0x814e000=0A=
brk(0x814f000) =3D 0x814f000=0A=
close(9) =3D 0=0A=
munmap(0x40142000, 4096) =3D 0=0A=
stat("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/urllib", =
0xbfffbc28) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/urllib.so"=
, O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/urllibmodu=
le.so", O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/urllib.py"=
, O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/urllib.pyc=
", O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
stat("urllib", 0xbfffbc28) =3D -1 ENOENT (No such file or =
directory)=0A=
open("urllib.so", O_RDONLY) =3D -1 ENOENT (No such file or =
directory)=0A=
open("urllibmodule.so", O_RDONLY) =3D -1 ENOENT (No such file or =
directory)=0A=
open("urllib.py", O_RDONLY) =3D -1 ENOENT (No such file or =
directory)=0A=
open("urllib.pyc", O_RDONLY) =3D -1 ENOENT (No such file or =
directory)=0A=
stat("/home/gvwilson/lib/python2.1/urllib", 0xbfffbc28) =3D -1 ENOENT =
(No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/urllib.so", O_RDONLY) =3D -1 ENOENT =
(No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/urllibmodule.so", O_RDONLY) =3D -1 =
ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/urllib.py", O_RDONLY) =3D 9=0A=
open("/home/gvwilson/lib/python2.1", O_RDONLY|O_NONBLOCK|O_DIRECTORY) =
=3D 10=0A=
fstat(10, {st_mode=3DS_IFDIR|0755, st_size=3D10240, ...}) =3D 0=0A=
fcntl(10, F_SETFD, FD_CLOEXEC) =3D 0=0A=
getdents(10, /* 53 entries */, 3933) =3D 1168=0A=
getdents(10, /* 52 entries */, 3933) =3D 1156=0A=
getdents(10, /* 53 entries */, 3933) =3D 1172=0A=
close(10) =3D 0=0A=
fstat(9, {st_mode=3DS_IFREG|0644, st_size=3D46705, ...}) =3D 0=0A=
open("/home/gvwilson/lib/python2.1/urllib.pyc", O_RDONLY) =3D 10=0A=
fstat(10, {st_mode=3DS_IFREG|0666, st_size=3D54647, ...}) =3D 0=0A=
mmap(0, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) =
=3D 0x40142000=0A=
read(10, "*\353\r\n\312\274\232:c\0\0\0\0\t\0\0\0s1\4\0\0\177\0\0"..., =
4096) =3D 4096=0A=
fstat(10, {st_mode=3DS_IFREG|0666, st_size=3D54647, ...}) =3D 0=0A=
brk(0x815d000) =3D 0x815d000=0A=
read(10, "\n\0\177_\0d\5\0|\0\0i\v\0f\2\0g\1\0|\0\0_\f\0\177`\0g"..., =
49152) =3D 49152=0A=
read(10, "itports\n\0\0\0_nportprogs\n\0\0\0splitn"..., 4096) =3D =
1399=0A=
read(10, "", 4096) =3D 0=0A=
brk(0x816a000) =3D 0x816a000=0A=
brk(0x816b000) =3D 0x816b000=0A=
brk(0x816c000) =3D 0x816c000=0A=
brk(0x816d000) =3D 0x816d000=0A=
close(10) =3D 0=0A=
munmap(0x40142000, 4096) =3D 0=0A=
stat("socket", 0xbfffadac) =3D -1 ENOENT (No such file or =
directory)=0A=
open("socket.so", O_RDONLY) =3D -1 ENOENT (No such file or =
directory)=0A=
open("socketmodule.so", O_RDONLY) =3D -1 ENOENT (No such file or =
directory)=0A=
open("socket.py", O_RDONLY) =3D -1 ENOENT (No such file or =
directory)=0A=
open("socket.pyc", O_RDONLY) =3D -1 ENOENT (No such file or =
directory)=0A=
stat("/home/gvwilson/lib/python2.1/socket", 0xbfffadac) =3D -1 ENOENT =
(No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/socket.so", O_RDONLY) =3D -1 ENOENT =
(No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/socketmodule.so", O_RDONLY) =3D -1 =
ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/socket.py", O_RDONLY) =3D 10=0A=
open("/home/gvwilson/lib/python2.1", O_RDONLY|O_NONBLOCK|O_DIRECTORY) =
=3D 11=0A=
fstat(11, {st_mode=3DS_IFDIR|0755, st_size=3D10240, ...}) =3D 0=0A=
fcntl(11, F_SETFD, FD_CLOEXEC) =3D 0=0A=
getdents(11, /* 53 entries */, 3933) =3D 1168=0A=
getdents(11, /* 52 entries */, 3933) =3D 1156=0A=
getdents(11, /* 53 entries */, 3933) =3D 1172=0A=
close(11) =3D 0=0A=
fstat(10, {st_mode=3DS_IFREG|0644, st_size=3D7402, ...}) =3D 0=0A=
open("/home/gvwilson/lib/python2.1/socket.pyc", O_RDONLY) =3D 11=0A=
fstat(11, {st_mode=3DS_IFREG|0666, st_size=3D10086, ...}) =3D 0=0A=
mmap(0, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) =
=3D 0x40142000=0A=
read(11, "*\353\r\n\310\274\232:c\0\0\0\0\5\0\0\0s\34\2\0\0\177\0"..., =
4096) =3D 4096=0A=
fstat(11, {st_mode=3DS_IFREG|0666, st_size=3D10086, ...}) =3D 0=0A=
read(11, "\0d\0\0S(\2\0\0\0Ni\0\0\0\0(\2\0\0\0s\4\0\0\0selfs\5"..., =
4096) =3D 4096=0A=
read(11, "\1!\1\v\0\10\1\17\1\20\1\24\1\20\1\10\1\20\1\22\1\24\1"..., =
4096) =3D 1894=0A=
read(11, "", 4096) =3D 0=0A=
close(11) =3D 0=0A=
munmap(0x40142000, 4096) =3D 0=0A=
stat("_socket", 0xbfff9f30) =3D -1 ENOENT (No such file or =
directory)=0A=
open("_socket.so", O_RDONLY) =3D -1 ENOENT (No such file or =
directory)=0A=
open("_socketmodule.so", O_RDONLY) =3D -1 ENOENT (No such file or =
directory)=0A=
open("_socket.py", O_RDONLY) =3D -1 ENOENT (No such file or =
directory)=0A=
open("_socket.pyc", O_RDONLY) =3D -1 ENOENT (No such file or =
directory)=0A=
stat("/home/gvwilson/lib/python2.1/_socket", 0xbfff9f30) =3D -1 ENOENT =
(No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/_socket.so", O_RDONLY) =3D -1 ENOENT =
(No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/_socketmodule.so", O_RDONLY) =3D -1 =
ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/_socket.py", O_RDONLY) =3D -1 ENOENT =
(No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/_socket.pyc", O_RDONLY) =3D -1 =
ENOENT (No such file or directory)=0A=
stat("/home/gvwilson/lib/python2.1/lib-dynload/_socket", 0xbfff9f30) =
=3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/lib-dynload/_socket.so", O_RDONLY) =
=3D 11=0A=
open("/home/gvwilson/lib/python2.1/lib-dynload", =
O_RDONLY|O_NONBLOCK|O_DIRECTORY) =3D 12=0A=
fstat(12, {st_mode=3DS_IFDIR|0777, st_size=3D1024, ...}) =3D 0=0A=
fcntl(12, F_SETFD, FD_CLOEXEC) =3D 0=0A=
getdents(12, /* 54 entries */, 3933) =3D 1160=0A=
close(12) =3D 0=0A=
fstat(11, {st_mode=3DS_IFREG|0777, st_size=3D154739, ...}) =3D 0=0A=
open("/home/gvwilson/lib/python2.1/lib-dynload/_socket.so", O_RDONLY) =
=3D 12=0A=
fstat(12, {st_mode=3DS_IFREG|0777, st_size=3D154739, ...}) =3D 0=0A=
read(12, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\20\36\0"..., =
4096) =3D 4096=0A=
mmap(0, 33140, PROT_READ|PROT_EXEC, MAP_PRIVATE, 12, 0) =3D =
0x40167000=0A=
mprotect(0x4016d000, 8564, PROT_NONE) =3D 0=0A=
mmap(0x4016d000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED, =
12, 0x5000) =3D 0x4016d000=0A=
close(12) =3D 0=0A=
open("/usr/local/ace/ace/libssl.so.0", O_RDONLY) =3D -1 ENOENT (No such =
file or directory)=0A=
open("/etc/ld.so.cache", O_RDONLY) =3D 12=0A=
fstat(12, {st_mode=3DS_IFREG|0644, st_size=3D25676, ...}) =3D 0=0A=
mmap(0, 25676, PROT_READ, MAP_PRIVATE, 12, 0) =3D 0x40170000=0A=
close(12) =3D 0=0A=
open("/usr/lib/libssl.so.0", O_RDONLY) =3D 12=0A=
fstat(12, {st_mode=3DS_IFREG|0755, st_size=3D181336, ...}) =3D 0=0A=
read(12, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\340\227"..., =
4096) =3D 4096=0A=
mmap(0, 182788, PROT_READ|PROT_EXEC, MAP_PRIVATE, 12, 0) =3D =
0x40177000=0A=
mprotect(0x401a1000, 10756, PROT_NONE) =3D 0=0A=
mmap(0x401a1000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED, =
12, 0x29000) =3D 0x401a1000=0A=
close(12) =3D 0=0A=
open("/usr/local/ace/ace/libcrypto.so.0", O_RDONLY) =3D -1 ENOENT (No =
such file or directory)=0A=
open("/usr/lib/libcrypto.so.0", O_RDONLY) =3D 12=0A=
fstat(12, {st_mode=3DS_IFREG|0755, st_size=3D788568, ...}) =3D 0=0A=
read(12, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0`r\2\000"..., =
4096) =3D 4096=0A=
mmap(0, 767656, PROT_READ|PROT_EXEC, MAP_PRIVATE, 12, 0) =3D =
0x401a4000=0A=
mprotect(0x40256000, 38568, PROT_NONE) =3D 0=0A=
mmap(0x40256000, 32768, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED, =
12, 0xb1000) =3D 0x40256000=0A=
mmap(0x4025e000, 5800, PROT_READ|PROT_WRITE, =
MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) =3D 0x4025e000=0A=
close(12) =3D 0=0A=
mprotect(0x401a4000, 729088, PROT_READ|PROT_WRITE) =3D 0=0A=
mprotect(0x401a4000, 729088, PROT_READ|PROT_EXEC) =3D 0=0A=
munmap(0x40170000, 25676) =3D 0=0A=
close(11) =3D 0=0A=
uname({sys=3D"Linux", node=3D"akbar.nevex.com", ...}) =3D 0=0A=
brk(0x816f000) =3D 0x816f000=0A=
brk(0x8171000) =3D 0x8171000=0A=
brk(0x8173000) =3D 0x8173000=0A=
close(10) =3D 0=0A=
close(9) =3D 0=0A=
stat("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/urlparse",=
0xbfffbc28) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/urlparse.s=
o", O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/urlparsemo=
dule.so", O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/urlparse.p=
y", O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/urlparse.p=
yc", O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
stat("urlparse", 0xbfffbc28) =3D -1 ENOENT (No such file or =
directory)=0A=
open("urlparse.so", O_RDONLY) =3D -1 ENOENT (No such file or =
directory)=0A=
open("urlparsemodule.so", O_RDONLY) =3D -1 ENOENT (No such file or =
directory)=0A=
open("urlparse.py", O_RDONLY) =3D -1 ENOENT (No such file or =
directory)=0A=
open("urlparse.pyc", O_RDONLY) =3D -1 ENOENT (No such file or =
directory)=0A=
stat("/home/gvwilson/lib/python2.1/urlparse", 0xbfffbc28) =3D -1 ENOENT =
(No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/urlparse.so", O_RDONLY) =3D -1 =
ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/urlparsemodule.so", O_RDONLY) =3D -1 =
ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/urlparse.py", O_RDONLY) =3D 9=0A=
open("/home/gvwilson/lib/python2.1", O_RDONLY|O_NONBLOCK|O_DIRECTORY) =
=3D 10=0A=
fstat(10, {st_mode=3DS_IFDIR|0755, st_size=3D10240, ...}) =3D 0=0A=
fcntl(10, F_SETFD, FD_CLOEXEC) =3D 0=0A=
getdents(10, /* 53 entries */, 3933) =3D 1168=0A=
getdents(10, /* 52 entries */, 3933) =3D 1156=0A=
getdents(10, /* 53 entries */, 3933) =3D 1172=0A=
close(10) =3D 0=0A=
fstat(9, {st_mode=3DS_IFREG|0644, st_size=3D8619, ...}) =3D 0=0A=
open("/home/gvwilson/lib/python2.1/urlparse.pyc", O_RDONLY) =3D 10=0A=
fstat(10, {st_mode=3DS_IFREG|0666, st_size=3D9090, ...}) =3D 0=0A=
mmap(0, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) =
=3D 0x40142000=0A=
read(10, "*\353\r\n\312\274\232:c\0\0\0\0\16\0\0\0s\237\1\0\0\177"..., =
4096) =3D 4096=0A=
fstat(10, {st_mode=3DS_IFREG|0666, st_size=3D9090, ...}) =3D 0=0A=
read(10, "\0\0\fo\v\0\1\177\205\0|\1\0Sn\1\0\1\177\206\0|\1\0\fo"..., =
4096) =3D 4096=0A=
read(10, "\3\0\0\0abss\7\0\0\0wrappeds\3\0\0\0len(\v\0\0\0"..., 4096) =
=3D 898=0A=
read(10, "", 4096) =3D 0=0A=
close(10) =3D 0=0A=
munmap(0x40142000, 4096) =3D 0=0A=
close(9) =3D 0=0A=
stat("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/codecs", =
0xbfffbc28) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/codecs.so"=
, O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/codecsmodu=
le.so", O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/codecs.py"=
, O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/site-packages/_xmlplus/sax/codecs.pyc=
", O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
stat("codecs", 0xbfffbc28) =3D -1 ENOENT (No such file or =
directory)=0A=
open("codecs.so", O_RDONLY) =3D -1 ENOENT (No such file or =
directory)=0A=
open("codecsmodule.so", O_RDONLY) =3D -1 ENOENT (No such file or =
directory)=0A=
open("codecs.py", O_RDONLY) =3D -1 ENOENT (No such file or =
directory)=0A=
open("codecs.pyc", O_RDONLY) =3D -1 ENOENT (No such file or =
directory)=0A=
stat("/home/gvwilson/lib/python2.1/codecs", 0xbfffbc28) =3D -1 ENOENT =
(No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/codecs.so", O_RDONLY) =3D -1 ENOENT =
(No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/codecsmodule.so", O_RDONLY) =3D -1 =
ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/codecs.py", O_RDONLY) =3D 9=0A=
open("/home/gvwilson/lib/python2.1", O_RDONLY|O_NONBLOCK|O_DIRECTORY) =
=3D 10=0A=
fstat(10, {st_mode=3DS_IFDIR|0755, st_size=3D10240, ...}) =3D 0=0A=
fcntl(10, F_SETFD, FD_CLOEXEC) =3D 0=0A=
getdents(10, /* 53 entries */, 3933) =3D 1168=0A=
close(10) =3D 0=0A=
fstat(9, {st_mode=3DS_IFREG|0644, st_size=3D17775, ...}) =3D 0=0A=
open("/home/gvwilson/lib/python2.1/codecs.pyc", O_RDONLY) =3D 10=0A=
fstat(10, {st_mode=3DS_IFREG|0666, st_size=3D22453, ...}) =3D 0=0A=
mmap(0, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) =
=3D 0x40142000=0A=
read(10, "*\353\r\n\304\274\232:c\0\0\0\0\v\0\0\0s\325\1\0\0\177"..., =
4096) =3D 4096=0A=
fstat(10, {st_mode=3DS_IFREG|0666, st_size=3D22453, ...}) =3D 0=0A=
brk(0x8179000) =3D 0x8179000=0A=
read(10, "ors(\0\0\0\0(\0\0\0\0s&\0\0\0/home/gvwilson"..., 16384) =3D =
16384=0A=
read(10, "e given to define the error hand"..., 4096) =3D 1973=0A=
read(10, "", 4096) =3D 0=0A=
brk(0x817a000) =3D 0x817a000=0A=
brk(0x817b000) =3D 0x817b000=0A=
brk(0x817c000) =3D 0x817c000=0A=
brk(0x817d000) =3D 0x817d000=0A=
brk(0x817e000) =3D 0x817e000=0A=
brk(0x817f000) =3D 0x817f000=0A=
close(10) =3D 0=0A=
munmap(0x40142000, 4096) =3D 0=0A=
stat("struct", 0xbfffadac) =3D -1 ENOENT (No such file or =
directory)=0A=
open("struct.so", O_RDONLY) =3D -1 ENOENT (No such file or =
directory)=0A=
open("structmodule.so", O_RDONLY) =3D -1 ENOENT (No such file or =
directory)=0A=
open("struct.py", O_RDONLY) =3D -1 ENOENT (No such file or =
directory)=0A=
open("struct.pyc", O_RDONLY) =3D -1 ENOENT (No such file or =
directory)=0A=
stat("/home/gvwilson/lib/python2.1/struct", 0xbfffadac) =3D -1 ENOENT =
(No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/struct.so", O_RDONLY) =3D -1 ENOENT =
(No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/structmodule.so", O_RDONLY) =3D -1 =
ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/struct.py", O_RDONLY) =3D -1 ENOENT =
(No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/struct.pyc", O_RDONLY) =3D -1 ENOENT =
(No such file or directory)=0A=
stat("/home/gvwilson/lib/python2.1/lib-dynload/struct", 0xbfffadac) =3D =
-1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/lib-dynload/struct.so", O_RDONLY) =
=3D 10=0A=
open("/home/gvwilson/lib/python2.1/lib-dynload", =
O_RDONLY|O_NONBLOCK|O_DIRECTORY) =3D 11=0A=
fstat(11, {st_mode=3DS_IFDIR|0777, st_size=3D1024, ...}) =3D 0=0A=
fcntl(11, F_SETFD, FD_CLOEXEC) =3D 0=0A=
getdents(11, /* 54 entries */, 3933) =3D 1160=0A=
close(11) =3D 0=0A=
fstat(10, {st_mode=3DS_IFREG|0777, st_size=3D66988, ...}) =3D 0=0A=
open("/home/gvwilson/lib/python2.1/lib-dynload/struct.so", O_RDONLY) =
=3D 11=0A=
fstat(11, {st_mode=3DS_IFREG|0777, st_size=3D66988, ...}) =3D 0=0A=
read(11, =
"\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0P\17\0\000"..., 4096) =
=3D 4096=0A=
mmap(0, 19000, PROT_READ|PROT_EXEC, MAP_PRIVATE, 11, 0) =3D =
0x40170000=0A=
mprotect(0x40173000, 6712, PROT_NONE) =3D 0=0A=
mmap(0x40173000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED, 11, =
0x2000) =3D 0x40173000=0A=
close(11) =3D 0=0A=
close(10) =3D 0=0A=
stat("_codecs", 0xbfffadac) =3D -1 ENOENT (No such file or =
directory)=0A=
open("_codecs.so", O_RDONLY) =3D -1 ENOENT (No such file or =
directory)=0A=
open("_codecsmodule.so", O_RDONLY) =3D -1 ENOENT (No such file or =
directory)=0A=
open("_codecs.py", O_RDONLY) =3D -1 ENOENT (No such file or =
directory)=0A=
open("_codecs.pyc", O_RDONLY) =3D -1 ENOENT (No such file or =
directory)=0A=
stat("/home/gvwilson/lib/python2.1/_codecs", 0xbfffadac) =3D -1 ENOENT =
(No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/_codecs.so", O_RDONLY) =3D -1 ENOENT =
(No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/_codecsmodule.so", O_RDONLY) =3D -1 =
ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/_codecs.py", O_RDONLY) =3D -1 ENOENT =
(No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/_codecs.pyc", O_RDONLY) =3D -1 =
ENOENT (No such file or directory)=0A=
stat("/home/gvwilson/lib/python2.1/lib-dynload/_codecs", 0xbfffadac) =
=3D -1 ENOENT (No such file or directory)=0A=
open("/home/gvwilson/lib/python2.1/lib-dynload/_codecs.so", O_RDONLY) =
=3D 10=0A=
open("/home/gvwilson/lib/python2.1/lib-dynload", =
O_RDONLY|O_NONBLOCK|O_DIRECTORY) =3D 11=0A=
fstat(11, {st_mode=3DS_IFDIR|0777, st_size=3D1024, ...}) =3D 0=0A=
fcntl(11, F_SETFD, FD_CLOEXEC) =3D 0=0A=
getdents(11, /* 54 entries */, 3933) =3D 1160=0A=
close(11) =3D 0=0A=
fstat(10, {st_mode=3DS_IFREG|0777, st_size=3D49229, ...}) =3D 0=0A=
open("/home/gvwilson/lib/python2.1/lib-dynload/_codecs.so", O_RDONLY) =
=3D 11=0A=
fstat(11, {st_mode=3DS_IFREG|0777, st_size=3D49229, ...}) =3D 0=0A=
read(11, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0p\r\0\000"..., =
4096) =3D 4096=0A=
mmap(0, 12844, PROT_READ|PROT_EXEC, MAP_PRIVATE, 11, 0) =3D =
0x40260000=0A=
mprotect(0x40262000, 4652, PROT_NONE) =3D 0=0A=
mmap(0x40262000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED, 11, =
0x1000) =3D 0x40262000=0A=
close(11) =3D 0=0A=
close(10) =3D 0=0A=
close(9) =3D 0=0A=
close(8) =3D 0=0A=
close(7) =3D 0=0A=
close(4) =3D 0=0A=
brk(0x8190000) =3D 0x8190000=0A=
read(3, "<html><body>\n\n<pre prog=3D\"tryout."..., 65516) =3D 72=0A=
read(3, "", 65444) =3D 0=0A=
wait4(5073, [WIFEXITED(s) && WEXITSTATUS(s) =3D=3D 0], WNOHANG, NULL) =
=3D 5073=0A=
close(6) =3D 0=0A=
munmap(0x40143000, 4096) =3D 0=0A=
pipe([4, 6]) =3D 0=0A=
pipe([7, 8]) =3D 0=0A=
fork() =3D 5074=0A=
[pid 5071] close(4) =3D 0=0A=
[pid 5071] fcntl(6, F_GETFL) =3D 0x1 (flags O_WRONLY)=0A=
[pid 5071] fstat(6, {st_mode=3DS_IFIFO|0600, st_size=3D0, ...}) =3D =
0=0A=
[pid 5071] mmap(0, 4096, PROT_READ|PROT_WRITE, =
MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) =3D 0x40142000=0A=
[pid 5071] _llseek(6, 0, 0xbfffeb0c, SEEK_CUR) =3D -1 ESPIPE (Illegal =
seek)=0A=
[pid 5071] close(8) =3D 0=0A=
[pid 5071] fcntl(7, F_GETFL) =3D 0 (flags O_RDONLY)=0A=
[pid 5071] fstat(7, {st_mode=3DS_IFIFO|0600, st_size=3D0, ...}) =3D =
0=0A=
[pid 5071] mmap(0, 4096, PROT_READ|PROT_WRITE, =
MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) =3D 0x40143000=0A=
[pid 5071] _llseek(7, 0, 0xbfffeb0c, SEEK_CUR) =3D -1 ESPIPE (Illegal =
seek)=0A=
[pid 5071] close(6) =3D 0=0A=
[pid 5071] munmap(0x40142000, 4096) =3D 0=0A=
[pid 5074] getpid() =3D 5074=0A=
[pid 5074] getpid() =3D 5074=0A=
[pid 5074] dup2(4, 0) =3D 0=0A=
[pid 5074] dup2(8, 1) =3D 1=0A=
[pid 5074] close(3) =3D 0=0A=
[pid 5074] close(4) =3D 0=0A=
[pid 5074] close(5) =3D 0=0A=
[pid 5074] close(6) =3D 0=0A=
[pid 5074] close(7) =3D 0=0A=
[pid 5074] close(8) =3D 0=0A=
[pid 5074] close(9) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(10) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(11) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(12) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(13) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(14) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(15) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(16) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(17) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(18) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(19) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(20) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(21) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(22) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(23) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(24) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(25) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(26) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(27) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(28) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(29) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(30) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(31) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(32) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(33) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(34) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(35) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(36) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(37) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(38) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(39) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(40) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(41) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(42) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(43) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(44) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(45) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(46) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(47) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(48) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(49) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(50) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(51) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(52) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(53) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(54) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(55) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(56) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(57) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(58) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(59) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(60) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(61) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(62) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(63) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(64) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(65) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(66) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(67) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(68) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(69) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(70) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(71) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(72) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(73) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(74) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(75) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(76) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(77) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(78) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(79) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(80) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(81) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(82) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(83) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(84) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(85) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(86) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(87) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(88) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(89) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(90) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(91) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(92) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(93) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(94) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(95) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(96) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(97) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(98) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(99) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(100) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(101) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(102) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(103) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(104) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(105) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(106) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(107) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(108) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(109) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(110) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(111) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(112) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(113) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(114) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(115) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(116) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(117) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(118) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(119) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(120) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(121) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(122) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(123) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(124 <unfinished ...>=0A=
[pid 5071] read(7, <unfinished ...>=0A=
[pid 5074] <... close resumed> ) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(125) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(126) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(127) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(128) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(129) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(130) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(131) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(132) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(133) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(134) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(135) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(136) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(137) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(138) =3D -1 EBADF (Bad file descripto=
r)=0A=
[pid 5074] close(139) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(140) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(141) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(142) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(143) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(144) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(145) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(146) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(147) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(148) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(149) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(150) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(151) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(152) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(153) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(154) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(155) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(156) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(157) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(158) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(159) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(160) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(161) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(162) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(163) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(164) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(165) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(166) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(167) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(168) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(169) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(170) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(171) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(172) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(173) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(174) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(175) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(176) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(177) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(178) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(179) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(180) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(181) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(182) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(183) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(184) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(185) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(186) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(187) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(188) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(189) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(190) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(191) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(192) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(193) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(194) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(195) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(196) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(197) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(198) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(199) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(200) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(201) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(202) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(203) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(204) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(205) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(206) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(207) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(208) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(209) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(210) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(211) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(212) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(213) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(214) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(215) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(216) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(217) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(218) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(219) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(220) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(221) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(222) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(223) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(224) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(225) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(226) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(227) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(228) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(229) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(230) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(231) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(232) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(233) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(234) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(235) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(236) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(237) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(238) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(239) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(240) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(241) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(242) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(243) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(244) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(245) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(246) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(247) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(248) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(249) =3D -1 EBADF (Bad file descripto=
r)=0A=
[pid 5074] close(250) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(251) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(252) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(253) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(254) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] close(255) =3D -1 EBADF (Bad file =
descriptor)=0A=
[pid 5074] stat("tempfile", 0xbfffdbb0) =3D -1 ENOENT (No such file or =
directory)=0A=
[pid 5074] open("tempfile.so", O_RDONLY) =3D -1 ENOENT (No such file =
or directory)=0A=
[pid 5074] open("tempfilemodule.so", O_RDONLY) =3D -1 ENOENT (No such =
file or directory)=0A=
[pid 5074] open("tempfile.py", O_RDONLY) =3D -1 ENOENT (No such file =
or directory)=0A=
[pid 5074] open("tempfile.pyc", O_RDONLY) =3D -1 ENOENT (No such file =
or directory)=0A=
[pid 5074] stat("/home/gvwilson/lib/python2.1/tempfile", 0xbfffdbb0) =
=3D -1 ENOENT (No such file or directory)=0A=
[pid 5074] open("/home/gvwilson/lib/python2.1/tempfile.so", O_RDONLY) =
=3D -1 ENOENT (No such file or directory)=0A=
[pid 5074] open("/home/gvwilson/lib/python2.1/tempfilemodule.so", =
O_RDONLY) =3D -1 ENOENT (No such file or directory)=0A=
[pid 5074] open("/home/gvwilson/lib/python2.1/tempfile.py", O_RDONLY) =
=3D 3=0A=
[pid 5074] open("/home/gvwilson/lib/python2.1", =
O_RDONLY|O_NONBLOCK|O_DIRECTORY) =3D 4=0A=
[pid 5074] fstat(4, {st_mode=3DS_IFDIR|0755, st_size=3D10240, ...}) =
=3D 0=0A=
[pid 5074] fcntl(4, F_SETFD, FD_CLOEXEC) =3D 0=0A=
[pid 5074] getdents(4, /* 53 entries */, 3933) =3D 1168=0A=
[pid 5074] getdents(4, /* 52 entries */, 3933) =3D 1156=0A=
[pid 5074] getdents(4, /* 53 entries */, 3933) =3D 1172=0A=
[pid 5074] close(4) =3D 0=0A=
[pid 5074] fstat(3, {st_mode=3DS_IFREG|0644, st_size=3D6279, ...}) =3D =
0=0A=
[pid 5074] open("/home/gvwilson/lib/python2.1/tempfile.pyc", O_RDONLY) =
=3D 4=0A=
[pid 5074] fstat(4, {st_mode=3DS_IFREG|0666, st_size=3D7208, ...}) =3D =
0=0A=
[pid 5074] mmap(0, 4096, PROT_READ|PROT_WRITE, =
MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) =3D 0x40142000=0A=
[pid 5074] read(4, =
"*\353\r\n\311\274\232:c\0\0\0\0\7\0\0\0s\212\1\0\0\177"..., 4096) =3D =
4096=0A=
[pid 5074] fstat(4, {st_mode=3DS_IFREG|0666, st_size=3D7208, ...}) =3D =
0=0A=
[pid 5074] read(4, =
"(\1\0\0\0s\4\0\0\0self(\0\0\0\0(\0\0\0\0s(\0\0\0/ho"..., 4096) =3D =
3112=0A=
[pid 5074] read(4, "", 4096) =3D 0=0A=
[pid 5074] close(4) =3D 0=0A=
[pid 5074] munmap(0x40142000, 4096) =3D 0=0A=
[pid 5074] close(3) =3D 0=0A=
[pid 5074] getcwd("/a/akbar/home/gvwilson/p2", 1026) =3D 26=0A=
[pid 5074] getpid() =3D 5074=0A=
[pid 5074] open("/var/tmp/@5074.test", O_RDWR|O_CREAT|O_EXCL, 0700) =
=3D 3=0A=
[pid 5074] fcntl(3, F_GETFL) =3D 0x2 (flags O_RDWR)=0A=
[pid 5074] fstat(3, {st_mode=3DS_IFREG|0700, st_size=3D0, ...}) =3D =
0=0A=
[pid 5074] mmap(0, 4096, PROT_READ|PROT_WRITE, =
MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) =3D 0x40142000=0A=
[pid 5074] _llseek(3, 0, [0], SEEK_CUR) =3D 0=0A=
[pid 5074] write(3, "blat", 4) =3D 4=0A=
[pid 5074] close(3) =3D 0=0A=
[pid 5074] munmap(0x40142000, 4096) =3D 0=0A=
[pid 5074] unlink("/var/tmp/@5074.test") =3D 0=0A=
[pid 5074] getpid() =3D 5074=0A=
[pid 5074] stat("/var/tmp/@5074.0", 0xbfffe67c) =3D -1 ENOENT (No such =
file or directory)=0A=
[pid 5074] getpid() =3D 5074=0A=
[pid 5074] rt_sigaction(SIGRT_0, {SIG_DFL}, NULL, 8) =3D 0=0A=
[pid 5074] rt_sigaction(SIGRT_1, {SIG_DFL}, NULL, 8) =3D 0=0A=
[pid 5074] rt_sigaction(SIGRT_2, {SIG_DFL}, NULL, 8) =3D 0=0A=
[pid 5074] execve("/var/tmp/@5074.0", ["blah"], [/* 30 vars */]) =3D =
-1 ENOENT (No such file or directory)=0A=
[pid 5074] _exit(1) =3D ?=0A=
<... read resumed> "", 8192) =3D 0=0A=
--- SIGCHLD (Child exited) ---=0A=
read(3, "", 65516) =3D 0=0A=
close(3) =3D 0=0A=
rt_sigaction(SIGINT, NULL, {0x40021460, [], 0x4000000}, 8) =3D 0=0A=
rt_sigaction(SIGINT, {SIG_DFL}, NULL, 8) =3D 0=0A=
close(5) =3D 0=0A=
munmap(0x40141000, 4096) =3D 0=0A=
close(7) =3D 0=0A=
munmap(0x40143000, 4096) =3D 0=0A=
write(1, "Running popen2 directly, result "..., 228Running popen2 =
directly, result is ['We made it!\n']=0A=
using just a class, shell command is 'python tryout.py'=0A=
using just a class, result is ['We made it!\n']=0A=
using SAX, shell command is 'python tryout.py'=0A=
using SAX, result is []=0A=
) =3D 228=0A=
munmap(0x40019000, 4096) =3D 0=0A=
_exit(0) =3D ?=0A=
------_=_NextPart_000_01C0A04B.2E82C5CC
Content-Type: application/octet-stream;
name="tryout.py"
Content-Transfer-Encoding: quoted-printable
Content-Disposition: attachment;
filename="tryout.py"
print "We made it!"=0A=
------_=_NextPart_000_01C0A04B.2E82C5CC--