New issue 2013: PyPy 2.5.1 missing some SSL constants https://bitbucket.org/pypy/pypy/issue/2013/pypy-251-missing-some-ssl-constants
Cory Benfield: Per [this gist](https://gist.github.com/Lukasa/c5c304a4c355d6f49035): ```python Python 2.7.9 (9c4588d731b7, Mar 23 2015, 20:00:36) [PyPy 2.5.1 with MSC v.1500 32 bit] on win32 Type "help", "copyright", "credits" or "license" for more information. >>>> import ssl >>>> ssl.OPENSSL_VERSION 'OpenSSL 1.0.1i 6 Aug 2014' >>>> ssl.PROTOCOL_TLSv1_2 Traceback (most recent call last): File "<stdin>", line 1, in <module> AttributeError: 'module' object has no attribute 'PROTOCOL_TLSv1_2' ``` This is probably caused by the backport of the 2.7.9 SSL module, which newly exposed this constant (along with some others). I recommend checking all the constants in [this document](https://docs.python.org/2/library/ssl.html) that were added in 2.7.9 to see if they got left out. _______________________________________________ pypy-issue mailing list pypy-issue@python.org https://mail.python.org/mailman/listinfo/pypy-issue