summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2002-06-10 19:23:22 (GMT)
committerGuido van Rossum <guido@python.org>2002-06-10 19:23:22 (GMT)
commitdb9198a8b59377e9407811e571be8baca74d2475 (patch)
treee35c4b0e6f32ebdfcc805b4559bc25e0ae782986 /Modules
parent7f147a772df2f03784d35ac7ef675cf2f2fd485d (diff)
downloadcpython-db9198a8b59377e9407811e571be8baca74d2475.zip
cpython-db9198a8b59377e9407811e571be8baca74d2475.tar.gz
cpython-db9198a8b59377e9407811e571be8baca74d2475.tar.bz2
SF bug 563750 (Alex Martelli): posix_tmpfile():
The file returned by tmpfile() has mode w+b, so use that in the call to PyFile_FromFile(). Bugfix candidate.
Diffstat (limited to 'Modules')
-rw-r--r--Modules/posixmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c
index 9d7c3c2..95f4613 100644
--- a/Modules/posixmodule.c
+++ b/Modules/posixmodule.c
@@ -5194,7 +5194,7 @@ posix_tmpfile(PyObject *self, PyObject *args)
fp = tmpfile();
if (fp == NULL)
return posix_error();
- return PyFile_FromFile(fp, "<tmpfile>", "w+", fclose);
+ return PyFile_FromFile(fp, "<tmpfile>", "w+b", fclose);
}
#endif