mirror of https://github.com/python/cpython
Make test_tmpfile() pass. (And hence test_os.py as a whole passes.)
tmpfile() now is a binary file.
This commit is contained in:
parent
88e860c005
commit
ff0ffb3e4a
|
@ -61,10 +61,10 @@ class TemporaryFileTests(unittest.TestCase):
|
||||||
return
|
return
|
||||||
fp = os.tmpfile()
|
fp = os.tmpfile()
|
||||||
fp.write("foobar")
|
fp.write("foobar")
|
||||||
fp.seek(0,0)
|
fp.seek(0)
|
||||||
s = fp.read()
|
s = fp.read()
|
||||||
fp.close()
|
fp.close()
|
||||||
self.assert_(s == "foobar")
|
self.assertEquals(s, b"foobar")
|
||||||
|
|
||||||
def test_tmpnam(self):
|
def test_tmpnam(self):
|
||||||
import sys
|
import sys
|
||||||
|
|
Loading…
Reference in New Issue