This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Claudiu.Popa
Recipients Claudiu.Popa, eric.araujo
Date 2010-06-11.17:45:37
SpamBayes Score 0.21029173
Marked as misclassified No
Message-id <1276278338.95.0.209396558643.issue8975@psf.upfronthosting.co.za>
In-reply-to
Content
"""                CHttp.__init__(self,1,proxy = shared.setts.currentGoogleProxy)
                self.timeout = shared.setts.cGglHttpTimeout

                self.proxy = globShare.currentGoogleProxy[globShare.currentGoogleIndex]
                if self.proxy:
                        proxy_support = urllib.request.ProxyHandler({'http':self.proxy,'https':self.proxy,'ftp':self.proxy})
                else:
                        proxy_support = urllib.request.ProxyHandler({})
                #socket.setdefaulttimeout(30)

                        #self._cp = urllib.request.HTTPCookieProcessor(http.cookiejar.CookieJar())

                self._cj = http.cookiejar.MozillaCookieJar()
                self._opener1 = urllib.request.build_opener(proxy_support,self._cp)
..... openedUrl = self._opener1.open(req)"""

The script was a crawler that searches for pdf's on internet. One thread printed the untreated exception.
History
Date User Action Args
2010-06-11 17:45:39Claudiu.Popasetrecipients: + Claudiu.Popa, eric.araujo
2010-06-11 17:45:38Claudiu.Popasetmessageid: <1276278338.95.0.209396558643.issue8975@psf.upfronthosting.co.za>
2010-06-11 17:45:37Claudiu.Popalinkissue8975 messages
2010-06-11 17:45:37Claudiu.Popacreate