]> 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 edb2fd9dba02aec76e1c8143643ae5f15921fc53..f913ae17eb8888b0e9d8816161e4d0a62bdcc8f8 100644 (file)
--- 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.
 
index fdb323425d45cb0677b26c49e92d734eda164fa0..98e8975cc8f4ffc6323ee8af11e7a6a040340ef1 100644 (file)
@@ -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