[issue16361] HTTPS/TLS Problem in Python 3.3

2015-02-16 Thread Martin v . Löwis
Martin v. Löwis added the comment: Python 3.3 no longer receives Windows releases, so closing this issue as out of date. Phil, if the issue persists in a newer Python version, please re-report. -- resolution: -> out of date status: open -> closed __

[issue16361] HTTPS/TLS Problem in Python 3.3

2015-02-14 Thread Mark Lawrence
Mark Lawrence added the comment: On Windows 3.4.2 ssl.OPENSSL_VERSION is 'OpenSSL 1.0.1i 6 Aug 2014' and 3.5 is currently being built with 1.0.1l so is there anything that our windows developers need to do here with 3.3? -- nosy: +BreamoreBoy ___ Py

[issue16361] HTTPS/TLS Problem in Python 3.3

2014-02-14 Thread Jesús Cea Avión
Changes by Jesús Cea Avión : -- nosy: +jcea ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python

[issue16361] HTTPS/TLS Problem in Python 3.3

2012-10-30 Thread Antoine Pitrou
Antoine Pitrou added the comment: Note that you could work around the issue by forcing a lower SSL version: ssl_context = ssl.SSLContext(ssl.PROTOCOL_SSLv3) opener = urllib.request.build_opener( urllib.request.HTTPCookieProcessor(cj),

[issue16361] HTTPS/TLS Problem in Python 3.3

2012-10-30 Thread Antoine Pitrou
Changes by Antoine Pitrou : Added file: http://bugs.python.org/file27797/windows-tls12-handshake.txt ___ Python tracker ___ ___ Python-bugs-li

[issue16361] HTTPS/TLS Problem in Python 3.3

2012-10-30 Thread Antoine Pitrou
Changes by Antoine Pitrou : Added file: http://bugs.python.org/file27796/linux-tls10-handshake.txt ___ Python tracker ___ ___ Python-bugs-list

[issue16361] HTTPS/TLS Problem in Python 3.3

2012-10-30 Thread Antoine Pitrou
Antoine Pitrou added the comment: It looks like we use OpenSSL 1.0.1c for Python 3.3 Windows builds, which would explain the different Client Hello. In your capture, the client identifies itself as TLS 1.2, while on my Linux box it's TLS 1.0. I'm uploading the decoded protocol tree of the two

[issue16361] HTTPS/TLS Problem in Python 3.3

2012-10-30 Thread Antoine Pitrou
Antoine Pitrou added the comment: Your script works for me under Linux with Python 3.2, 3.3 and 3.4. Perhaps the problem has to do with the version of OpenSSL that we package Windows binaries with? My OpenSSL version here (as given by ssl.OPENSSL_VERSION) is 'OpenSSL 1.0.0d 8 Feb 2011'. --

[issue16361] HTTPS/TLS Problem in Python 3.3

2012-10-30 Thread Charles-François Natali
Charles-François Natali added the comment: Well, the first difference that jumps out is that with python 2.7, the protocol used is SSLv2, whereas it's bare SSL on Python 3.3.0. But another interesting thing is the presence, in Python 2.3, of many extenstions (elliptic_curves, heartbeat, server

[issue16361] HTTPS/TLS Problem in Python 3.3

2012-10-29 Thread Phil
Phil added the comment: You will notice that in the Python 3.3.0 version after packet 54 (Client Hello), there seems to be no response from the server. Today, I was able to verify that the code worked under Python 3.2.3. -- ___ Python tracker

[issue16361] HTTPS/TLS Problem in Python 3.3

2012-10-29 Thread Phil
Changes by Phil : Added file: http://bugs.python.org/file27787/py3-filtered.pcapng ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue16361] HTTPS/TLS Problem in Python 3.3

2012-10-29 Thread Phil
Changes by Phil : Added file: http://bugs.python.org/file27786/py2-filtered.pcapng ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue16361] HTTPS/TLS Problem in Python 3.3

2012-10-29 Thread Phil
New submission from Phil: I had converted some code for a scraper from 2.7.3 to 3.3.0 on Windows 7 and suddenly the code stopped working. Now the https fetch results in: Traceback (most recent call last): File "D:\Users\Phil\Desktop\demo.py", line 67, in page=getWebData() File "D:\User