summaryrefslogtreecommitdiffstats
path: root/Modules/_io/textio.c
diff options
context:
space:
mode:
authorAmaury Forgeot d'Arc <amauryfa@gmail.com>2009-08-29 23:00:38 (GMT)
committerAmaury Forgeot d'Arc <amauryfa@gmail.com>2009-08-29 23:00:38 (GMT)
commitccd686a47336bfbd70614824465f5793fd69a685 (patch)
treeefd8f8fca388d16df20743952792abb384339e32 /Modules/_io/textio.c
parent8d9a6eb5310f486a594704db370ab53088fa4520 (diff)
downloadcpython-ccd686a47336bfbd70614824465f5793fd69a685.zip
cpython-ccd686a47336bfbd70614824465f5793fd69a685.tar.gz
cpython-ccd686a47336bfbd70614824465f5793fd69a685.tar.bz2
Merged revisions 74581 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r74581 | amaury.forgeotdarc | 2009-08-29 20:14:40 +0200 (sam., 29 août 2009) | 3 lines #6750: TextIOWrapped could duplicate output when several threads write to it. this affect text files opened with io.open(), and the print() function of py3k ........
Diffstat (limited to 'Modules/_io/textio.c')
-rw-r--r--Modules/_io/textio.c13
1 files changed, 9 insertions, 4 deletions
diff --git a/Modules/_io/textio.c b/Modules/_io/textio.c
index 0f5a73d..b91852e 100644
--- a/Modules/_io/textio.c
+++ b/Modules/_io/textio.c
@@ -1213,11 +1213,18 @@ findchar(const Py_UNICODE *s, Py_ssize_t size, Py_UNICODE ch)
static int
_textiowrapper_writeflush(textio *self)
{
- PyObject *b, *ret;
+ PyObject *pending, *b, *ret;
if (self->pending_bytes == NULL)
return 0;
- b = _PyBytes_Join(_PyIO_empty_bytes, self->pending_bytes);
+
+ pending = self->pending_bytes;
+ Py_INCREF(pending);
+ self->pending_bytes_count = 0;
+ Py_CLEAR(self->pending_bytes);
+
+ b = _PyBytes_Join(_PyIO_empty_bytes, pending);
+ Py_DECREF(pending);
if (b == NULL)
return -1;
ret = PyObject_CallMethodObjArgs(self->buffer,
@@ -1226,8 +1233,6 @@ _textiowrapper_writeflush(textio *self)
if (ret == NULL)
return -1;
Py_DECREF(ret);
- Py_CLEAR(self->pending_bytes);
- self->pending_bytes_count = 0;
return 0;
}