From: Finn B. <bc...@us...> - 2000-12-06 21:01:02
|
Update of /cvsroot/jython/jython/org/python/util In directory slayer.i.sourceforge.net:/tmp/cvs-serv1709 Modified Files: InteractiveConsole.java Log Message: getDefaultBanner(): Removed copyright message from default banner. The copyright message is instead written by org.python.util.jython. Index: InteractiveConsole.java =================================================================== RCS file: /cvsroot/jython/jython/org/python/util/InteractiveConsole.java,v retrieving revision 2.6 retrieving revision 2.7 diff -C2 -r2.6 -r2.7 *** InteractiveConsole.java 2000/09/29 17:31:46 2.6 --- InteractiveConsole.java 2000/12/06 21:00:51 2.7 *************** *** 37,42 **** return "Jython " + PySystemState.version + " on " + PySystemState.platform + " (JIT: " + ! ((compiler == null) ? "null" : compiler) + ")" + ! "\n" + PySystemState.copyright; } --- 37,41 ---- return "Jython " + PySystemState.version + " on " + PySystemState.platform + " (JIT: " + ! ((compiler == null) ? "null" : compiler) + ")"; } |