Commit 5424df2f authored by Guido van Rossum's avatar Guido van Rossum

Patch suggested Paul Colomiets fixes test_threaded_import.py.

parent fc9ba931
......@@ -197,8 +197,8 @@ def _get_default_tempdir():
filename = _os.path.join(dir, name)
try:
fd = _os.open(filename, flags, 0o600)
fp = _io.open(fd, 'w')
fp.write('blat')
fp = _io.open(fd, 'wb')
fp.write(b'blat')
fp.close()
_os.unlink(filename)
del fp, fd
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment