aboutsummaryrefslogtreecommitdiffstats
path: root/cryptography
diff options
context:
space:
mode:
authorDonald Stufft <donald@stufft.io>2013-10-16 15:07:30 -0700
committerDonald Stufft <donald@stufft.io>2013-10-16 15:07:30 -0700
commit9a76847c67f76184afbd5274d55ac55c34e06dd2 (patch)
tree0169b36528a7ef6fddcd3f5c097e0083f84f80ec /cryptography
parentb98118f59f1f6ba79f3b5cdd705ebc56f9ec9f34 (diff)
parent745c95c75cc6588ecd9b927e5974bf00426125a2 (diff)
downloadcryptography-9a76847c67f76184afbd5274d55ac55c34e06dd2.tar.gz
cryptography-9a76847c67f76184afbd5274d55ac55c34e06dd2.tar.bz2
cryptography-9a76847c67f76184afbd5274d55ac55c34e06dd2.zip
Merge pull request #106 from alex/duplication-reduction
Remove much of the duplication found in the tests
Diffstat (limited to 'cryptography')
-rw-r--r--cryptography/bindings/__init__.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/cryptography/bindings/__init__.py b/cryptography/bindings/__init__.py
index 8b165009..215f17c7 100644
--- a/cryptography/bindings/__init__.py
+++ b/cryptography/bindings/__init__.py
@@ -11,7 +11,10 @@
# See the License for the specific language governing permissions and
# limitations under the License.
-from cryptography.bindings.openssl import api
+from cryptography.bindings import openssl
-_default_api = api
+_default_api = openssl.api
+_ALL_APIS = [
+ openssl.api
+]