summaryrefslogtreecommitdiffstats
path: root/Modules/_multiprocessing/pipe_connection.c
diff options
context:
space:
mode:
authorBrett Cannon <bcannon@gmail.com>2010-05-05 20:15:14 (GMT)
committerBrett Cannon <bcannon@gmail.com>2010-05-05 20:15:14 (GMT)
commit7a4cd7e1e2cff1d3a3ef079e47f0b0f833dae1de (patch)
tree0002fe72ec09b96d9e4aed7311ba678c7d9e8fd5 /Modules/_multiprocessing/pipe_connection.c
parenta1b562943b7c14fe85252f40a1a24b7ef1ea9491 (diff)
downloadcpython-7a4cd7e1e2cff1d3a3ef079e47f0b0f833dae1de.zip
cpython-7a4cd7e1e2cff1d3a3ef079e47f0b0f833dae1de.tar.gz
cpython-7a4cd7e1e2cff1d3a3ef079e47f0b0f833dae1de.tar.bz2
Remove extraneous whitespace.
Diffstat (limited to 'Modules/_multiprocessing/pipe_connection.c')
-rw-r--r--Modules/_multiprocessing/pipe_connection.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/_multiprocessing/pipe_connection.c b/Modules/_multiprocessing/pipe_connection.c
index 66947c8..980f760 100644
--- a/Modules/_multiprocessing/pipe_connection.c
+++ b/Modules/_multiprocessing/pipe_connection.c
@@ -39,7 +39,7 @@ conn_send_string(ConnectionObject *conn, char *string, size_t length)
*/
static Py_ssize_t
-conn_recv_string(ConnectionObject *conn, char *buffer,
+conn_recv_string(ConnectionObject *conn, char *buffer,
size_t buflength, char **newbuffer, size_t maxlength)
{
DWORD left, length, full_length, err;
@@ -130,7 +130,7 @@ conn_poll(ConnectionObject *conn, double timeout, PyThreadState *_save)
Sleep(delay);
/* check for signals */
- Py_BLOCK_THREADS
+ Py_BLOCK_THREADS
res = PyErr_CheckSignals();
Py_UNBLOCK_THREADS