New submission from ulidtko :
The following script fails:
from time import sleep
try:
while True:
sleep(0.1)
print "blah"
except KeyboardInterrupt:
pass
when being launched with redirections like this:
$ python test.py | tee /dev/null
and the tee process g
ulidtko added the comment:
Ok, I can do it with socket.gethostbyname().
Thanks for clarifications.
--
___
Python tracker
<http://bugs.python.org/issue10
ulidtko added the comment:
Can I perform a name resolution before chrooting, save the result and use it
later for creating an instance of http.server.HTTPServer, as a workaround?
--
___
Python tracker
<http://bugs.python.org/issue10
New submission from ulidtko :
Consider the following test script:
import os
import urllib.request
os.chroot("/tmp")
urllib.request.urlopen("http://localhost";)
When executed with enough privileges, the script terminates with the following
traceback:
Traceback (m