Skip to content

Commit cfaf187

Browse files
author
jesse.noller
committed
issue 5002: fix windows warning that I intro'ed with r68768
git-svn-id: http://svn.python.org/projects/python/trunk@68787 6015fed2-1504-0410-9fe1-9d1591cc4771
1 parent d2e6c35 commit cfaf187

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

Modules/_multiprocessing/pipe_connection.c

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,10 +83,8 @@ conn_recv_string(ConnectionObject *conn, char *buffer,
8383
* Check whether any data is available for reading
8484
*/
8585

86-
#define conn_poll(conn, timeout) conn_poll_save(conn, timeout, _save)
87-
8886
static int
89-
conn_poll_save(ConnectionObject *conn, double timeout, PyThreadState *_save)
87+
conn_poll(ConnectionObject *conn, double timeout, PyThreadState *_save)
9088
{
9189
DWORD bytes, deadline, delay;
9290
int difference, res;

0 commit comments

Comments
 (0)