From b4ec842f39e0b514d410ab94a622e14e23287d4c Mon Sep 17 00:00:00 2001 From: Christian Heimes Date: Sat, 17 Aug 2013 17:25:18 +0200 Subject: [PATCH] Issue 18768: Correct doc string of RAND_edg(). Patch by Vajrasky Kok. --- Misc/NEWS | 2 ++ Modules/_ssl.c | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Misc/NEWS b/Misc/NEWS index daa7e1fe7eaf..7947fc3a0c37 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -29,6 +29,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 10fb4029e3b4..55c315555210 100644 --- a/Modules/_ssl.c +++ b/Modules/_ssl.c @@ -1619,7 +1619,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 -- 2.47.3