diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2014-03-08 08:32:56 -0800 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2014-03-08 08:32:56 -0800 |
commit | c37feed731bca6dab9e1afacc446b7516fed30aa (patch) | |
tree | 5545dcd366f023efd40e9fe235ce10ad333cfff4 /tests/hazmat/bindings | |
parent | 78c2f2d2c0a40d20edcaf37c33e91224af3ecbb6 (diff) | |
download | cryptography-c37feed731bca6dab9e1afacc446b7516fed30aa.tar.gz cryptography-c37feed731bca6dab9e1afacc446b7516fed30aa.tar.bz2 cryptography-c37feed731bca6dab9e1afacc446b7516fed30aa.zip |
Added future imports and licenses that are missing
Diffstat (limited to 'tests/hazmat/bindings')
-rw-r--r-- | tests/hazmat/bindings/test_commoncrypto.py | 2 | ||||
-rw-r--r-- | tests/hazmat/bindings/test_openssl.py | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/tests/hazmat/bindings/test_commoncrypto.py b/tests/hazmat/bindings/test_commoncrypto.py index db3d1b74..0332674b 100644 --- a/tests/hazmat/bindings/test_commoncrypto.py +++ b/tests/hazmat/bindings/test_commoncrypto.py @@ -11,6 +11,8 @@ # See the License for the specific language governing permissions and # limitations under the License. +from __future__ import absolute_import, division, print_function + import pytest from cryptography.hazmat.bindings.commoncrypto.binding import Binding diff --git a/tests/hazmat/bindings/test_openssl.py b/tests/hazmat/bindings/test_openssl.py index c476390b..acab22b1 100644 --- a/tests/hazmat/bindings/test_openssl.py +++ b/tests/hazmat/bindings/test_openssl.py @@ -11,6 +11,8 @@ # See the License for the specific language governing permissions and # limitations under the License. +from __future__ import absolute_import, division, print_function + import pytest from cryptography.hazmat.bindings.openssl.binding import Binding |