summaryrefslogtreecommitdiff
path: root/src/OpenSSL/rand.py
diff options
context:
space:
mode:
authorHynek Schlawack <hs@ox.cx>2016-01-19 14:09:32 +0100
committerHynek Schlawack <hs@ox.cx>2016-01-19 14:13:02 +0100
commit0cc615430d58f7bb0936840c5b10cb0530e3885a (patch)
tree3ac407007f12fc3645f78d03ee98976769b0213b /src/OpenSSL/rand.py
parent9b73a6d6f9d453a954618a3b191ec9261f0aa939 (diff)
downloadpyopenssl-0cc615430d58f7bb0936840c5b10cb0530e3885a.tar.gz
2016 snook up on us
Diffstat (limited to 'src/OpenSSL/rand.py')
-rw-r--r--src/OpenSSL/rand.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/OpenSSL/rand.py b/src/OpenSSL/rand.py
index c12638f..087b243 100644
--- a/src/OpenSSL/rand.py
+++ b/src/OpenSSL/rand.py
@@ -118,7 +118,7 @@ def egd(path, bytes=_unspecified):
Does *not* actually query the EGD.
- .. deprecated:: 15.2.0
+ .. deprecated:: 16.0.0
EGD was only necessary for some commercial UNIX systems that all
reached their ends of life more than a decade ago. See
`pyca/cryptography#1636
@@ -129,7 +129,7 @@ def egd(path, bytes=_unspecified):
:returns: ``len(bytes)`` or 255 if not specified.
"""
- warnings.warn("OpenSSL.rand.egd() is deprecated as of 15.2.0.",
+ warnings.warn("OpenSSL.rand.egd() is deprecated as of 16.0.0.",
DeprecationWarning)
if not isinstance(path, _builtin_bytes):