Message470

Author mvanier
Recipients
Date 2001-11-15.07:09:13
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
This simple script generates an infinite series of
warnings:

# Start of script.
from pawt import swing
import java

class SwingApplication:
    def __init__(self):
        frame = swing.JFrame("SwingApplication");
        frame.pack();
        frame.setVisible(1);


app = SwingApplication()
# End of script.

Here are the warnings:

Nov 14, 2001 11:07:43 PM
java.util.prefs.FileSystemPreferences
checkLockFile0ErrorCode
WARNING: Could not lock User prefs. Unix error code 37.
Nov 14, 2001 11:07:43 PM
java.util.prefs.FileSystemPreferences syncWorld
WARNING: Couldn't flush user prefs:
java.util.prefs.BackingStoreException: Couldn't get
file lock.
Nov 14, 2001 11:07:45 PM
java.util.prefs.FileSystemPreferences
checkLockFile0ErrorCode
WARNING: Could not lock System prefs.Unix error code
37.
Nov 14, 2001 11:07:45 PM
java.util.prefs.FileSystemPreferences syncWorld
WARNING: Couldn't flush system prefs:
java.util.prefs.BackingStoreException: Couldn't get
file lock.

over and over. I just downloaded and installed the
latest version of jython running on top of the Java 2
SDK beta 1.4 on Red Hat Linux 6.1.  I also got these
warnings during installation.

Thanks,

Mike


History
Date User Action Args
2008-02-20 17:16:56adminlinkissue481990 messages
2008-02-20 17:16:56admincreate