aboutsummaryrefslogtreecommitdiffstats
path: root/cryptography
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2013-10-16 14:17:36 -0700
committerAlex Gaynor <alex.gaynor@gmail.com>2013-10-16 14:17:36 -0700
commita20631d332d47903a85b61c4b68c5398125a3ebe (patch)
tree82d10997cba9841c05feb386a32d826de48fba32 /cryptography
parent016eed1cc1cc26ff404ac31ed3858de362ca37f2 (diff)
downloadcryptography-a20631d332d47903a85b61c4b68c5398125a3ebe.tar.gz
cryptography-a20631d332d47903a85b61c4b68c5398125a3ebe.tar.bz2
cryptography-a20631d332d47903a85b61c4b68c5398125a3ebe.zip
Consolidate this list
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
+]