summaryrefslogtreecommitdiff
path: root/src/OpenSSL/__init__.py
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2017-07-25 10:33:17 -0400
committerHynek Schlawack <hs@ox.cx>2017-07-25 16:33:17 +0200
commit23c965e7864bd9f37cf2c6076895c9bec395f00c (patch)
treec90c026df662bee4f21a46e29f72feb0895dc41a /src/OpenSSL/__init__.py
parent209de940c3d36e700d73385b417cb94064c13919 (diff)
downloadpyopenssl-23c965e7864bd9f37cf2c6076895c9bec395f00c.tar.gz
Delete rand.py (#675)
Diffstat (limited to 'src/OpenSSL/__init__.py')
-rw-r--r--src/OpenSSL/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/OpenSSL/__init__.py b/src/OpenSSL/__init__.py
index b827e3c..810d00d 100644
--- a/src/OpenSSL/__init__.py
+++ b/src/OpenSSL/__init__.py
@@ -5,7 +5,7 @@
pyOpenSSL - A simple wrapper around the OpenSSL library
"""
-from OpenSSL import rand, crypto, SSL
+from OpenSSL import crypto, SSL
from OpenSSL.version import (
__author__, __copyright__, __email__, __license__, __summary__, __title__,
__uri__, __version__,
@@ -13,7 +13,7 @@ from OpenSSL.version import (
__all__ = [
- "SSL", "crypto", "rand",
+ "SSL", "crypto",
"__author__", "__copyright__", "__email__", "__license__", "__summary__",
"__title__", "__uri__", "__version__",