]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
reverse sense of PyMac_Idle test
authorGuido van Rossum <guido@python.org>
Mon, 6 Mar 1995 10:30:39 +0000 (10:30 +0000)
committerGuido van Rossum <guido@python.org>
Mon, 6 Mar 1995 10:30:39 +0000 (10:30 +0000)
Mac/Unsupported/mactcp/mactcpmodule.c

index 81c1f0f0b71119b4731e7963e7a204074aaca8a8..e7dc31753c0ab3a92445bfd206edef3d434b1117 100644 (file)
@@ -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;
                }