mirror of
https://github.com/python/cpython.git
synced 2025-11-03 03:22:27 +00:00
Patch 1012740: cStringIO's truncate doesn't
truncate() left the stream position unchanged, which meant the
"truncated" data didn't go away:
>>> io.write('abc')
>>> io.truncate(0)
>>> io.write('xyz')
>>> io.getvalue()
'abcxyz'
Patch by Dima Dorfman.
This commit is contained in:
parent
7109b287cf
commit
037b3ee44e
3 changed files with 9 additions and 2 deletions
|
|
@ -289,6 +289,7 @@ IO_truncate(IOobject *self, PyObject *args) {
|
|||
if (pos < 0) pos = self->pos;
|
||||
|
||||
if (self->string_size > pos) self->string_size = pos;
|
||||
self->pos = self->string_size;
|
||||
|
||||
Py_INCREF(Py_None);
|
||||
return Py_None;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue