summaryrefslogtreecommitdiff
path: root/Lib/test/test_popen2.py
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2007-04-25 06:30:05 +0000
committerNeal Norwitz <nnorwitz@gmail.com>2007-04-25 06:30:05 +0000
commit0d4c06e06e5ee1f3bb1fa8068114bd700d74864a (patch)
tree021c8e11696fc29a41ddd9e853af42e6008a58f6 /Lib/test/test_popen2.py
parente47c508850392422ebbf15c86e7411b46addfcd0 (diff)
downloadcpython-git-0d4c06e06e5ee1f3bb1fa8068114bd700d74864a.tar.gz
Whitespace normalization. Ugh, we really need to do this more often.
You might want to review this change as it's my first time. Be gentle. :-)
Diffstat (limited to 'Lib/test/test_popen2.py')
-rw-r--r--Lib/test/test_popen2.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/test/test_popen2.py b/Lib/test/test_popen2.py
index 1eb06b4695..31f22d6adf 100644
--- a/Lib/test/test_popen2.py
+++ b/Lib/test/test_popen2.py
@@ -45,7 +45,7 @@ class Popen2Test(unittest.TestCase):
inst.wait()
popen2._cleanup()
self.assertFalse(popen2._active, "_active not empty")
- reap_children()
+ reap_children()
def validate_output(self, teststr, expected_out, r, w, e=None):
w.write(teststr)
@@ -57,7 +57,7 @@ class Popen2Test(unittest.TestCase):
if e is not None:
got = e.read()
self.assertFalse(got, "unexpected %r on stderr" % got)
-
+
def test_popen2(self):
r, w = popen2.popen2(self.cmd)
self.validate_output(self.teststr, self.expected, r, w)
@@ -84,7 +84,7 @@ class Popen2Test(unittest.TestCase):
w, r, e = os.popen3(self.cmd)
self.validate_output(self.teststr, self.expected, r, w, e)
-
+
def test_main():
run_unittest(Popen2Test)