diff options
author | Guido van Rossum <guido@python.org> | 2001-10-19 12:40:40 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2001-10-19 12:40:40 (GMT) |
commit | cad8fa15010b22b2802d2bbbddd2ba2fc7b06f57 (patch) | |
tree | 4eb532c5fd1ea43eff216c2e7d18f885c986833c /Modules | |
parent | b5507ecd3cfce17bab26311298f527572611af0b (diff) | |
download | cpython-cad8fa15010b22b2802d2bbbddd2ba2fc7b06f57.zip cpython-cad8fa15010b22b2802d2bbbddd2ba2fc7b06f57.tar.gz cpython-cad8fa15010b22b2802d2bbbddd2ba2fc7b06f57.tar.bz2 |
(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.
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/socketmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c index 8c8ebb7..e9ad333 100644 --- a/Modules/socketmodule.c +++ b/Modules/socketmodule.c @@ -2817,7 +2817,7 @@ PySSL_RAND_egd(PyObject *self, PyObject *arg) } static char PySSL_RAND_egd_doc[] = -"RAND_egd(path) -> bytes +"RAND_egd(path) -> bytes\n\ \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\ |