示例#1
0
 final void file_seek(long pos, int how) {
   if (closed) err_closed();
   try {
     file.seek(pos, how);
   } catch (IOException e) {
     throw Py.IOError(e);
   }
 }
示例#2
0
 public void seek(long pos, int how) throws IOException {
   file.seek(pos, how);
 }