mirror of https://github.com/python/cpython.git
Issue 18768: Correct doc string of RAND_edg(). Patch by Vajrasky Kok.
This commit is contained in:
commit
f920a1c1f1
|
@ -28,6 +28,8 @@ Core and Builtins
|
||||||
Library
|
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
|
- Issue #18178: Fix ctypes on BSD. dlmalloc.c was compiled twice which broke
|
||||||
malloc weak symbols.
|
malloc weak symbols.
|
||||||
|
|
||||||
|
|
|
@ -2934,7 +2934,7 @@ PyDoc_STRVAR(PySSL_RAND_egd_doc,
|
||||||
\n\
|
\n\
|
||||||
Queries the entropy gather daemon (EGD) on the socket named by 'path'.\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\
|
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
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue