diff options
author | David Reid <dreid@dreid.org> | 2013-12-12 15:19:37 -0800 |
---|---|---|
committer | David Reid <dreid@dreid.org> | 2013-12-12 15:19:37 -0800 |
commit | 2bc3334979ceaee2592e42b3135454ab63b4d009 (patch) | |
tree | 6cd8c7c428385160d5656e0b40b8c262a5f41edc /cryptography | |
parent | c4f9b1db8b6848b78dd348e9f2ce32752a7b2e39 (diff) | |
download | cryptography-2bc3334979ceaee2592e42b3135454ab63b4d009.tar.gz cryptography-2bc3334979ceaee2592e42b3135454ab63b4d009.tar.bz2 cryptography-2bc3334979ceaee2592e42b3135454ab63b4d009.zip |
alex parens.
Diffstat (limited to 'cryptography')
-rw-r--r-- | cryptography/hazmat/bindings/openssl/backend.py | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/cryptography/hazmat/bindings/openssl/backend.py b/cryptography/hazmat/bindings/openssl/backend.py index d69fdc45..2e73180f 100644 --- a/cryptography/hazmat/bindings/openssl/backend.py +++ b/cryptography/hazmat/bindings/openssl/backend.py @@ -131,11 +131,13 @@ class Backend(object): # int foo(short); lib = ffi.verify( - source="\n".join([_OSX_PRE_INCLUDE] + - includes + - [_OSX_POST_INCLUDE] + - functions + - customizations), + source="\n".join( + [_OSX_PRE_INCLUDE] + + includes + + [_OSX_POST_INCLUDE] + + functions + + customizations + ), libraries=["crypto", "ssl"], ) |