diff options
author | 2019-08-13 04:28:37 +0300 | |
---|---|---|
committer | 2019-08-13 04:28:37 +0300 | |
commit | efac9e98709cc21c41f882102519a5545b6394a9 (patch) | |
tree | f3af9de56fd08609f98183a07215165f787b8118 /lib_pypy/_cffi_ssl/README.md | |
parent | Add link to nice rpython tutorial, fix some doc build errors (diff) | |
download | pypy-efac9e98709cc21c41f882102519a5545b6394a9.tar.gz pypy-efac9e98709cc21c41f882102519a5545b6394a9.tar.bz2 pypy-efac9e98709cc21c41f882102519a5545b6394a9.zip |
remove old sources
Diffstat (limited to 'lib_pypy/_cffi_ssl/README.md')
-rw-r--r-- | lib_pypy/_cffi_ssl/README.md | 19 |
1 files changed, 2 insertions, 17 deletions
diff --git a/lib_pypy/_cffi_ssl/README.md b/lib_pypy/_cffi_ssl/README.md index 045f2b4228..8cc08d8bc7 100644 --- a/lib_pypy/_cffi_ssl/README.md +++ b/lib_pypy/_cffi_ssl/README.md @@ -5,18 +5,6 @@ back to cryptography. PyPy vendors it's own copy of the cffi backend thus it renames the compiled shared object to _pypy_openssl.so (which means that cryptography can ship their own cffi backend) -NOTE: currently, we have the following changes: - -* ``_cffi_src/openssl/callbacks.py`` to not rely on the CPython C API - (this change is now backported) - -* ``_cffi_src/utils.py`` for issue #2575 (29c9a89359e4) - -* ``_cffi_src/openssl/x509_vfy.py`` for issue #2605 (ca4d0c90f5a1) - -* ``_cffi_src/openssl/pypy_win32_extra.py`` for Win32-only functionality like ssl.enum_certificates() - - # Tests? Currently this module is tested using CPython's standard library test suite. @@ -25,11 +13,8 @@ Currently this module is tested using CPython's standard library test suite. Copy over all the sources into the folder `lib_pypy/_cffi_ssl/*`. Updating the cffi backend can be simply done by the following command:: - $ cp -r <cloned cryptography folder>/src/_cffi_src/* . - -NOTE: you need to keep our version of ``_cffi_src/openssl/callbacks.py`` -for now! + $ cp -r <cloned cryptography folder>/src/* . # Crpytography version -Copied over release version `1.7.2` +Copied over release version `2.7` |