[Python-checkins] r68788 - in python/branches/py3k: Modules/_multiprocessing/pipe_connection.c

jesse.noller python-checkins at python.org
Tue Jan 20 01:23:01 CET 2009


Author: jesse.noller
Date: Tue Jan 20 01:23:01 2009
New Revision: 68788

Log:
merge r68787 to py3k

Modified:
   python/branches/py3k/   (props changed)
   python/branches/py3k/Modules/_multiprocessing/pipe_connection.c

Modified: python/branches/py3k/Modules/_multiprocessing/pipe_connection.c
==============================================================================
--- python/branches/py3k/Modules/_multiprocessing/pipe_connection.c	(original)
+++ python/branches/py3k/Modules/_multiprocessing/pipe_connection.c	Tue Jan 20 01:23:01 2009
@@ -83,10 +83,8 @@
  * Check whether any data is available for reading
  */
 
-#define conn_poll(conn, timeout) conn_poll_save(conn, timeout, _save)
-
 static int
-conn_poll_save(ConnectionObject *conn, double timeout, PyThreadState *_save)
+conn_poll(ConnectionObject *conn, double timeout, PyThreadState *_save)
 {
 	DWORD bytes, deadline, delay;
 	int difference, res;


More information about the Python-checkins mailing list