Issue490962

classification
Title: Typo in PyFile.java
Type: Severity: normal
Components: Core Versions:
Milestone:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: bckfnn Nosy List: bab, bckfnn
Priority: normal Keywords:

Created on 2001-12-09.23:41:50 by bab, last changed 2001-12-10.20:41:22 by bckfnn.

Messages
msg515 (view) Author: Ben Burton (bab) Date: 2001-12-09.23:41:50
Hi.  There's a simple typo in
org/python/core/PyFile.java.  A patch is
given below.

Thanks - Ben.

--- jython-2.1-beta1.orig/org/python/core/PyFile.java
+++ jython-2.1-beta1/org/python/core/PyFile.java
@@ -54,7 +54,7 @@
         public void close() throws java.io.IOException {
         }
         public void truncate(long position) throws java.io.IOException {
-            throw new java.io.IOException("file doens't support truncate");
+            throw new java.io.IOException("file doesn't support truncate");
         }

         public Object __tojava__(Class cls) throws IOException {

msg516 (view) Author: Finn Bock (bckfnn) Date: 2001-12-10.20:41:22
Logged In: YES 
user_id=4201

Fixed in PyFile.java: 2.24;
History
Date User Action Args
2001-12-09 23:41:50babcreate