diff options
author | Christian Heimes <christian@cheimes.de> | 2013-08-17 17:25:18 +0200 |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2013-08-17 17:25:18 +0200 |
commit | 3c2593b2bb12bccd80577d7bb99e7bc1e261277b (patch) | |
tree | 81cb959e51f088dd81838aa916eb4beae7a413a7 /Modules/_ssl.c | |
parent | 474afdda6035049f83bf082850e150bf7a04cb1d (diff) | |
download | cpython-git-3c2593b2bb12bccd80577d7bb99e7bc1e261277b.tar.gz |
Issue 18768: Correct doc string of RAND_edg(). Patch by Vajrasky Kok.
Diffstat (limited to 'Modules/_ssl.c')
-rw-r--r-- | Modules/_ssl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_ssl.c b/Modules/_ssl.c index fdb323425d..98e8975cc8 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 |