Lines Matching defs:truncate
392 def truncate(self, pos=None):
398 self._unsupported("truncate")
453 If False, seek(), tell() and truncate() will raise OSError.
482 If False, write() and truncate() will raise OSError.
821 def truncate(self, pos=None):
833 # XXX directly to truncate?
834 return self.raw.truncate(pos)
1012 def truncate(self, pos=None):
1014 raise ValueError("truncate on closed file")
1025 raise ValueError("negative truncate position %r" % (pos,))
1290 def truncate(self, pos=None):
1295 return self.raw.truncate(pos)
1454 def truncate(self, pos=None):
1458 return BufferedWriter.truncate(self, pos)
1749 def truncate(self, size=None):
1856 def truncate(self, pos=None):
1858 self._unsupported("truncate")
2437 def truncate(self, pos=None):
2441 return self.buffer.truncate(pos)