ResponseNotReady exception

asit lipun4u at gmail.com
Sat Jan 3 15:38:38 EST 2009


import httplib

class Server:
    #server class
    def __init__(self, host):
        self.host = host
    def fetch(self, path):
        http = httplib.HTTPConnection(self.host)
        http.putrequest("GET", path)
        r = http.getresponse()
        print str(r.status) + "  :  " + r.reason


server = Server("www.python.org")
fp=open("phpvuln.txt")
x=fp.readlines();
for y in x:
     server.fetch("/" + y);

In the above code the phpvuln.txt file contains a list of directories.

Why the above code throws ResponseNotReady exception ???




More information about the Python-list mailing list