[python-win32] Read timeout with liburl2 on HTTPS connection with non-standard port

Tim Roberts timr at probo.com
Thu Nov 29 20:58:44 CET 2012


Claudiu Curca wrote:
> Hello Tim,
>
> You must've hit the servers while they were rolling some update. It is working for me in browser and curl. Can you please try again?

Yes, it now works for me, both in Firefox and in your Python script

C:\tmp>type x.py
import urllib2

req = urllib2.Request("https://benotificationsmock.cloudapp.net:8443")
resp = urllib2.urlopen(req, timeout = 5)
print resp.code
C:\tmp>x.py
200

C:\tmp>

-- 
Tim Roberts, timr at probo.com
Providenza & Boekelheide, Inc.



More information about the python-win32 mailing list