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 ciprian.trofin
Recipients ciprian.trofin
Date 2010-03-26.07:33:09
SpamBayes Score 0.0007706052
Marked as misclassified No
Message-id <1269588795.92.0.67904846936.issue8238@psf.upfronthosting.co.za>
In-reply-to
Content
After I installed Python 2.6.5, I noticed a drop in performance of web connections via proxy.

This script:
---------------------------------------------------------
import time
import urllib2

timeMark = time.time()
opener = urllib2.build_opener()
textWeb = opener.open("http://www.google.com/").read()
print time.time() - timeMark
---------------------------------------------------------

takes about 60 seconds to complete (consistently)

The same script, run using Python 2.6.2 is completed in less than 1 second  (0.2seconds)

The test system:
- Windows XP SP3
- internet connection via corporate connection, using a proxy (the proxy is set in Control Panel - Internet Options etc)
History
Date User Action Args
2010-03-26 07:33:17ciprian.trofinsetrecipients: + ciprian.trofin
2010-03-26 07:33:15ciprian.trofinsetmessageid: <1269588795.92.0.67904846936.issue8238@psf.upfronthosting.co.za>
2010-03-26 07:33:13ciprian.trofinlinkissue8238 messages
2010-03-26 07:33:09ciprian.trofincreate