コード例 #1
0
 final void file_truncate() {
   try {
     file.truncate(file.tell());
   } catch (IOException e) {
     throw Py.IOError(e);
   }
 }
コード例 #2
0
 final long file_tell() {
   if (closed) err_closed();
   try {
     return file.tell();
   } catch (IOException e) {
     throw Py.IOError(e);
   }
 }
コード例 #3
0
 public long tell() throws IOException {
   return file.tell();
 }