diff options
author | Nick Coghlan <ncoghlan@gmail.com> | 2017-06-09 12:37:53 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-09 12:37:53 (GMT) |
commit | c422959daca0598fabbefa5de4417ebce3b1da06 (patch) | |
tree | 806354b72ed248b924ce0edca6aa367d30d70453 /Modules | |
parent | f0ff849adc6b4a01f9d1f08d9ad0f1511ff84541 (diff) | |
download | cpython-c422959daca0598fabbefa5de4417ebce3b1da06.zip cpython-c422959daca0598fabbefa5de4417ebce3b1da06.tar.gz cpython-c422959daca0598fabbefa5de4417ebce3b1da06.tar.bz2 |
[3.6] bpo-19180: Updated references for RFC 1750, RFC 3280 & RFC 4366
* RFC 1750 has been been obsoleted by RFC 4086.
* RFC 3280 has been obsoleted by RFC 5280.
* RFC 4366 has been obsoleted by RFC 6066.
(cherry picked from commit 63c2c8ac17750ba2be2cfc4e339cae1f4edee54f)
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/_ssl.c | 2 | ||||
-rw-r--r-- | Modules/clinic/_ssl.c.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Modules/_ssl.c b/Modules/_ssl.c index dbfbd44..a421fc0 100644 --- a/Modules/_ssl.c +++ b/Modules/_ssl.c @@ -4475,7 +4475,7 @@ _ssl.RAND_add Mix string into the OpenSSL PRNG state. entropy (a float) is a lower bound on the entropy contained in -string. See RFC 1750. +string. See RFC 4086. [clinic start generated code]*/ static PyObject * diff --git a/Modules/clinic/_ssl.c.h b/Modules/clinic/_ssl.c.h index 29f5838..333aad7 100644 --- a/Modules/clinic/_ssl.c.h +++ b/Modules/clinic/_ssl.c.h @@ -839,7 +839,7 @@ PyDoc_STRVAR(_ssl_RAND_add__doc__, "Mix string into the OpenSSL PRNG state.\n" "\n" "entropy (a float) is a lower bound on the entropy contained in\n" -"string. See RFC 1750."); +"string. See RFC 4086."); #define _SSL_RAND_ADD_METHODDEF \ {"RAND_add", (PyCFunction)_ssl_RAND_add, METH_VARARGS, _ssl_RAND_add__doc__}, |