diff --git a/JyNI-Demo/src/JyNIDemo.py b/JyNI-Demo/src/JyNIDemo.py index acb27c4..8643a55 100644 --- a/JyNI-Demo/src/JyNIDemo.py +++ b/JyNI-Demo/src/JyNIDemo.py @@ -33,9 +33,9 @@ # With these lines this demo becomes a program that neither Jython without JyNI, # nor ordinary CPython could run. -print "To prove that Jython is running, we make a java call:" -from java.lang import System -print "System.currentTimeMillis: "+str(System.currentTimeMillis()) +#print "To prove that Jython is running, we make a java call:" +#from java.lang import System +#print "System.currentTimeMillis: "+str(System.currentTimeMillis()) print "" @@ -90,5 +90,9 @@ print fruit print "" -print "============in JyNI-case expect native output after these lines==================" -print "==(it is a JNI issue that native output is displayed after java output is done)==" \ No newline at end of file +print "==================================================" +print "On some consoles, Java displays native output from" +print "JNI extensions after the last non-native output." +print "This usually also affects JyNI output. So expect" +print "native output after these lines on such consoles." +print "=================================================="