diff options
author | Zackery Spytz <zspytz@gmail.com> | 2021-04-23 16:07:37 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-23 16:07:37 (GMT) |
commit | 7d37b86ad48368cf93440ca220b758696730d0e5 (patch) | |
tree | b5498efb0821142c51c2772ec4d283c65f0e63c8 /Modules/clinic | |
parent | a77aac4fca9723b8fd52a832f3e9df13beb25113 (diff) | |
download | cpython-7d37b86ad48368cf93440ca220b758696730d0e5.zip cpython-7d37b86ad48368cf93440ca220b758696730d0e5.tar.gz cpython-7d37b86ad48368cf93440ca220b758696730d0e5.tar.bz2 |
bpo-35114: Make ssl.RAND_status() return a bool (GH-20063)
Diffstat (limited to 'Modules/clinic')
-rw-r--r-- | Modules/clinic/_ssl.c.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/clinic/_ssl.c.h b/Modules/clinic/_ssl.c.h index 45c3095..c209c63 100644 --- a/Modules/clinic/_ssl.c.h +++ b/Modules/clinic/_ssl.c.h @@ -1088,7 +1088,7 @@ PyDoc_STRVAR(_ssl_RAND_status__doc__, "RAND_status($module, /)\n" "--\n" "\n" -"Returns 1 if the OpenSSL PRNG has been seeded with enough data and 0 if not.\n" +"Returns True if the OpenSSL PRNG has been seeded with enough data and False if not.\n" "\n" "It is necessary to seed the PRNG with RAND_add() on some platforms before\n" "using the ssl() function."); @@ -1324,4 +1324,4 @@ exit: #ifndef _SSL_ENUM_CRLS_METHODDEF #define _SSL_ENUM_CRLS_METHODDEF #endif /* !defined(_SSL_ENUM_CRLS_METHODDEF) */ -/*[clinic end generated code: output=83e68c77bd96789a input=a9049054013a1b77]*/ +/*[clinic end generated code: output=8736d838c9059151 input=a9049054013a1b77]*/ |