diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2014-01-07 12:27:08 -0800 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2014-01-07 12:27:08 -0800 |
commit | 5e5316de9ca968f646aa04301fcf3109aef0473f (patch) | |
tree | 0bfcb081074648c95356508df5b5323b484a4d00 | |
parent | d7e04ae2f45c99034d564fd6a7747bf216d00ea9 (diff) | |
download | cryptography-5e5316de9ca968f646aa04301fcf3109aef0473f.tar.gz cryptography-5e5316de9ca968f646aa04301fcf3109aef0473f.tar.bz2 cryptography-5e5316de9ca968f646aa04301fcf3109aef0473f.zip |
This is dangerous
-rw-r--r-- | setup.py | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -47,13 +47,10 @@ class cffi_build(build): from cryptography.hazmat.primitives import constant_time, padding self.distribution.ext_modules = [ + Binding().ffi.verifier.get_extension(), constant_time._ffi.verifier.get_extension(), padding._ffi.verifier.get_extension() ] - if Binding.is_available(): - self.distribution.ext_modules.append( - Binding().ffi.verifier.get_extension() - ) build.finalize_options(self) |