diff options
author | Anthony Baxter <anthonybaxter@gmail.com> | 2006-03-20 07:10:01 (GMT) |
---|---|---|
committer | Anthony Baxter <anthonybaxter@gmail.com> | 2006-03-20 07:10:01 (GMT) |
commit | 46fa48ab04b68e34884264db5be1082747da379a (patch) | |
tree | 894db3889849e7bfb77aed9c102c33195e853171 /Lib/test/test_wait3.py | |
parent | d5a375496ed4be5ba2059b0b8342ec5bf38d04a6 (diff) | |
download | cpython-46fa48ab04b68e34884264db5be1082747da379a.zip cpython-46fa48ab04b68e34884264db5be1082747da379a.tar.gz cpython-46fa48ab04b68e34884264db5be1082747da379a.tar.bz2 |
whitespace n11n
Diffstat (limited to 'Lib/test/test_wait3.py')
-rw-r--r-- | Lib/test/test_wait3.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/test/test_wait3.py b/Lib/test/test_wait3.py index a1cbd7b..f6a41a6 100644 --- a/Lib/test/test_wait3.py +++ b/Lib/test/test_wait3.py @@ -18,9 +18,9 @@ except AttributeError: class Wait3Test(ForkWait): def wait_impl(self, cpid): while 1: - spid, status, rusage = os.wait3(0) - if spid == cpid: - break + spid, status, rusage = os.wait3(0) + if spid == cpid: + break self.assertEqual(spid, cpid) self.assertEqual(status, 0, "cause = %d, exit = %d" % (status&0xff, status>>8)) self.assertTrue(rusage) |