diff options
author | Tim Peters <tim.peters@gmail.com> | 2005-12-25 23:18:31 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2005-12-25 23:18:31 (GMT) |
commit | 536cf99536bce562cfcb44a856fac1c84b9de4c3 (patch) | |
tree | 80cf0f425cfc703b228aad716ed66cd4a5080c03 /Lib/test/test_quopri.py | |
parent | 83a8c393b06d24b3c6b252b7614c34110c369c43 (diff) | |
download | cpython-536cf99536bce562cfcb44a856fac1c84b9de4c3.zip cpython-536cf99536bce562cfcb44a856fac1c84b9de4c3.tar.gz cpython-536cf99536bce562cfcb44a856fac1c84b9de4c3.tar.bz2 |
Whitespace normalization.
Diffstat (limited to 'Lib/test/test_quopri.py')
-rw-r--r-- | Lib/test/test_quopri.py | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/Lib/test/test_quopri.py b/Lib/test/test_quopri.py index 50098cb..ed66dfc 100644 --- a/Lib/test/test_quopri.py +++ b/Lib/test/test_quopri.py @@ -175,18 +175,18 @@ zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz''') self.assert_(quopri.decodestring(e, header=True) == p) def test_scriptencode(self): - (p, e) = self.STRINGS[-1] - (cin, cout) = os.popen2("%s -mquopri" % sys.executable) - cin.write(p) - cin.close() - self.assert_(cout.read() == e) + (p, e) = self.STRINGS[-1] + (cin, cout) = os.popen2("%s -mquopri" % sys.executable) + cin.write(p) + cin.close() + self.assert_(cout.read() == e) def test_scriptdecode(self): - (p, e) = self.STRINGS[-1] - (cin, cout) = os.popen2("%s -mquopri -d" % sys.executable) - cin.write(e) - cin.close() - self.assert_(cout.read() == p) + (p, e) = self.STRINGS[-1] + (cin, cout) = os.popen2("%s -mquopri -d" % sys.executable) + cin.write(e) + cin.close() + self.assert_(cout.read() == p) def test_main(): test_support.run_unittest(QuopriTestCase) |