Don't specify an encoding, let open figure out an

appropriate one.
This commit is contained in:
Walter Dörwald 2007-05-24 18:05:27 +00:00
parent 292aa0d806
commit 6c037ba7dc
1 changed files with 2 additions and 2 deletions

View File

@ -53,10 +53,10 @@ class CommonTest(seq_tests.CommonTest):
d.append(d)
d.append(400)
try:
fo = open(test_support.TESTFN, "w", encoding="ascii")
fo = open(test_support.TESTFN, "w")
fo.write(str(d))
fo.close()
fo = open(test_support.TESTFN, "r", encoding="ascii")
fo = open(test_support.TESTFN, "r")
self.assertEqual(fo.read(), repr(d))
finally:
fo.close()