diff options
author | Guido van Rossum <guido@python.org> | 1995-03-06 10:30:39 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-03-06 10:30:39 (GMT) |
commit | 124107b2a4e140247d5e742220ce62748f914689 (patch) | |
tree | 03d421c15dbc082975d9a4a854f9201944585abc /Mac/Unsupported | |
parent | 5510dc23f98191e830e7d6fdcf3f42004acf455b (diff) | |
download | cpython-124107b2a4e140247d5e742220ce62748f914689.zip cpython-124107b2a4e140247d5e742220ce62748f914689.tar.gz cpython-124107b2a4e140247d5e742220ce62748f914689.tar.bz2 |
reverse sense of PyMac_Idle test
Diffstat (limited to 'Mac/Unsupported')
-rw-r--r-- | Mac/Unsupported/mactcp/mactcpmodule.c | 2 |
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; } |