[Python-checkins] cpython (merge 3.3 -> default): Issue 18768: Correct doc string of RAND_edg(). Patch by Vajrasky Kok.

christian.heimes python-checkins at python.org
Sat Aug 17 17:26:18 CEST 2013


http://hg.python.org/cpython/rev/5c091acc799f
changeset:   85237:5c091acc799f
parent:      85234:fe444f324756
parent:      85236:ae91252943bf
user:        Christian Heimes <christian at cheimes.de>
date:        Sat Aug 17 17:25:27 2013 +0200
summary:
  Issue 18768: Correct doc string of RAND_edg(). Patch by Vajrasky Kok.

files:
  Misc/NEWS      |  2 ++
  Modules/_ssl.c |  2 +-
  2 files changed, 3 insertions(+), 1 deletions(-)


diff --git a/Misc/NEWS b/Misc/NEWS
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -28,6 +28,8 @@
 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
--- a/Modules/_ssl.c
+++ b/Modules/_ssl.c
@@ -2934,7 +2934,7 @@
 \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
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list