Update of /cvsroot/jython/jython/org/python/core
In directory usw-pr-cvs1:/tmp/cvs-serv30406
Modified Files:
PyFile.java
Log Message:
Fix for "[ #490962 ] Typo in PyFile.java".
Index: PyFile.java
===================================================================
RCS file: /cvsroot/jython/jython/org/python/core/PyFile.java,v
retrieving revision 2.23
retrieving revision 2.24
diff -C2 -d -r2.23 -r2.24
*** PyFile.java 2001/11/28 19:19:54 2.23
--- PyFile.java 2001/12/10 20:40:48 2.24
***************
*** 55,59 ****
}
public void truncate(long position) throws java.io.IOException {
! throw new java.io.IOException("file doens't support truncate");
}
--- 55,59 ----
}
public void truncate(long position) throws java.io.IOException {
! throw new java.io.IOException("file doesn't support truncate");
}
|