[issue23274] make_ssl_data.py in Python 2.7.9 needs Python 3 to run

2016-09-08 Thread Christian Heimes
Christian Heimes added the comment: It's 2016. Everybody should have a host with Python 3. In fact it's more likely that your machine doesn't have 2.7. -- nosy: +christian.heimes resolution: -> wont fix status: open -> closed ___ Python tracker

[issue23274] make_ssl_data.py in Python 2.7.9 needs Python 3 to run

2015-01-19 Thread Michael Schlenker
New submission from Michael Schlenker: The make_ssl_data.py script in Tools/ssl/ needs a python3 to run due to the usage of open(..., encoding='latin1'). This makes usage on a host without python3 installed more complex than needed. It should use io.open(...) to run on both python3 and

[issue23274] make_ssl_data.py in Python 2.7.9 needs Python 3 to run

2015-01-19 Thread Antoine Pitrou
Antoine Pitrou added the comment: That shouldn't be very important. The already-generated _ssl_data.h in the distribution should be enough. -- nosy: +alex, pitrou ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue23274

[issue23274] make_ssl_data.py in Python 2.7.9 needs Python 3 to run

2015-01-19 Thread Antoine Pitrou
Antoine Pitrou added the comment: Yesterday I've regenerated _ssl_data.h with the latest OpenSSL git, so that should suit you. Be sure to update your hg clone of Python. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue23274

[issue23274] make_ssl_data.py in Python 2.7.9 needs Python 3 to run

2015-01-19 Thread Michael Schlenker
Michael Schlenker added the comment: yes, priority is probably low. Just stumbled over it when building against openssl 1.0.1L and trying to regen the datafile automatically in a build script. -- versions: +Python 2.7 ___ Python tracker