1. 21 Aug, 2004 1 commit
    • Tim Peters's avatar
      Patch 1012740: cStringIO's truncate doesn't · 037b3ee4
      Tim Peters authored
      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.
      037b3ee4
  2. 20 Aug, 2004 13 commits
  3. 19 Aug, 2004 15 commits
  4. 18 Aug, 2004 11 commits