summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1995-03-06 10:30:39 (GMT)
committerGuido van Rossum <guido@python.org>1995-03-06 10:30:39 (GMT)
commit124107b2a4e140247d5e742220ce62748f914689 (patch)
tree03d421c15dbc082975d9a4a854f9201944585abc
parent5510dc23f98191e830e7d6fdcf3f42004acf455b (diff)
downloadcpython-124107b2a4e140247d5e742220ce62748f914689.zip
cpython-124107b2a4e140247d5e742220ce62748f914689.tar.gz
cpython-124107b2a4e140247d5e742220ce62748f914689.tar.bz2
reverse sense of PyMac_Idle test
-rw-r--r--Mac/Unsupported/mactcp/mactcpmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Mac/Unsupported/mactcp/mactcpmodule.c b/Mac/Unsupported/mactcp/mactcpmodule.c
index 81c1f0f..e7dc317 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;
}