diff options
author | Chandan Kumar <chkumar246@users.noreply.github.com> | 2017-06-09 09:43:58 (GMT) |
---|---|---|
committer | Nick Coghlan <ncoghlan@gmail.com> | 2017-06-09 09:43:58 (GMT) |
commit | 63c2c8ac17750ba2be2cfc4e339cae1f4edee54f (patch) | |
tree | 6796905974555c26c1530fcbe1014596263a5be5 /Modules | |
parent | 59fdf0f3ba0469f5ee45eee59cc166411fbe0b75 (diff) | |
download | cpython-63c2c8ac17750ba2be2cfc4e339cae1f4edee54f.zip cpython-63c2c8ac17750ba2be2cfc4e339cae1f4edee54f.tar.gz cpython-63c2c8ac17750ba2be2cfc4e339cae1f4edee54f.tar.bz2 |
bpo-19180: Updated references for RFC 1750, RFC 3280 & RFC 4366 (GH-148)
* 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.
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 d318b25..9077d0a 100644 --- a/Modules/_ssl.c +++ b/Modules/_ssl.c @@ -4440,7 +4440,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 905274f..4a053d4 100644 --- a/Modules/clinic/_ssl.c.h +++ b/Modules/clinic/_ssl.c.h @@ -847,7 +847,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_FASTCALL, _ssl_RAND_add__doc__}, |