From: Guido van Rossum Date: Mon, 6 Mar 1995 10:30:39 +0000 (+0000) Subject: reverse sense of PyMac_Idle test X-Git-Tag: v1.2b4~110 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=124107b2a4e140247d5e742220ce62748f914689;p=thirdparty%2FPython%2Fcpython.git reverse sense of PyMac_Idle test --- diff --git a/Mac/Unsupported/mactcp/mactcpmodule.c b/Mac/Unsupported/mactcp/mactcpmodule.c index 81c1f0f0b711..e7dc31753c0a 100644 --- a/Mac/Unsupported/mactcp/mactcpmodule.c +++ b/Mac/Unsupported/mactcp/mactcpmodule.c @@ -358,7 +358,7 @@ tcps_wait(self, args) if (!newgetargs(args, "")) return NULL; while ( self->async_busy ) { - if ( !PyMac_Idle() ) { + if ( PyMac_Idle() ) { INCREF(None); return None; }