Commit 0ef97534 authored by Guido van Rossum's avatar Guido van Rossum

(Hopefully) fix SF bug #472675: CVS socketmodule now doesn't compile

This appears to be a case of a missing \n\ in a multiline string
literal.
parent c087cb02
...@@ -2817,7 +2817,7 @@ PySSL_RAND_egd(PyObject *self, PyObject *arg) ...@@ -2817,7 +2817,7 @@ PySSL_RAND_egd(PyObject *self, PyObject *arg)
} }
static char PySSL_RAND_egd_doc[] = static char PySSL_RAND_egd_doc[] =
"RAND_egd(path) -> bytes "RAND_egd(path) -> bytes\n\
\n\ \n\
Queries the entropy gather daemon (EGD) on socket path. Returns number\n\ Queries the entropy gather daemon (EGD) on socket path. Returns number\n\
of bytes read. Raises socket.sslerror if connection to EGD fails or\n\ of bytes read. Raises socket.sslerror if connection to EGD fails or\n\
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment