]> granicus.if.org Git - python/commitdiff
Issue 18768: Correct doc string of RAND_edg(). Patch by Vajrasky Kok.
authorChristian Heimes <christian@cheimes.de>
Sat, 17 Aug 2013 15:25:18 +0000 (17:25 +0200)
committerChristian Heimes <christian@cheimes.de>
Sat, 17 Aug 2013 15:25:18 +0000 (17:25 +0200)
Misc/NEWS
Modules/_ssl.c

index daa7e1fe7eaf225c88256bcb9af949d95f5f8fee..7947fc3a0c371bb22d18dc7d937f87b7dc0fd38b 100644 (file)
--- 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.
 
index 10fb4029e3b459e1a51c8ebe7fe528c1b8463105..55c31555521071ccb152db96699b045d184701ac 100644 (file)
@@ -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