From: Christian Heimes Date: Sat, 17 Aug 2013 15:25:18 +0000 (+0200) Subject: Issue 18768: Correct doc string of RAND_edg(). Patch by Vajrasky Kok. X-Git-Tag: v3.4.0a2~194^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3c2593b2bb12bccd80577d7bb99e7bc1e261277b;p=thirdparty%2FPython%2Fcpython.git Issue 18768: Correct doc string of RAND_edg(). Patch by Vajrasky Kok. --- diff --git a/Misc/NEWS b/Misc/NEWS index edb2fd9dba02..f913ae17eb88 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -66,6 +66,8 @@ Core and Builtins Library ------- +- Issue 18768: Correct doc string of RAND_edg(). Patch by Vajrasky Kok. + - Issue #18178: Fix ctypes on BSD. dlmalloc.c was compiled twice which broke malloc weak symbols. diff --git a/Modules/_ssl.c b/Modules/_ssl.c index fdb323425d45..98e8975cc8f4 100644 --- a/Modules/_ssl.c +++ b/Modules/_ssl.c @@ -2576,7 +2576,7 @@ PyDoc_STRVAR(PySSL_RAND_egd_doc, \n\ Queries the entropy gather daemon (EGD) on the socket named by 'path'.\n\ Returns number of bytes read. Raises SSLError if connection to EGD\n\ -fails or if it does provide enough data to seed PRNG."); +fails or if it does not provide enough data to seed PRNG."); #endif