summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2013-08-17 15:25:18 (GMT)
committerChristian Heimes <christian@cheimes.de>2013-08-17 15:25:18 (GMT)
commit3c2593b2bb12bccd80577d7bb99e7bc1e261277b (patch)
tree81cb959e51f088dd81838aa916eb4beae7a413a7
parent474afdda6035049f83bf082850e150bf7a04cb1d (diff)
downloadcpython-3c2593b2bb12bccd80577d7bb99e7bc1e261277b.zip
cpython-3c2593b2bb12bccd80577d7bb99e7bc1e261277b.tar.gz
cpython-3c2593b2bb12bccd80577d7bb99e7bc1e261277b.tar.bz2
Issue 18768: Correct doc string of RAND_edg(). Patch by Vajrasky Kok.
-rw-r--r--Misc/NEWS2
-rw-r--r--Modules/_ssl.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index edb2fd9..f913ae1 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 fdb3234..98e8975 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