Update of /cvsroot/jython/jython/org/python/core
In directory slayer.i.sourceforge.net:/tmp/cvs-serv1543
Modified Files:
PySystemState.java
Log Message:
copyright: Added the list of real copyright holders instead of the message
'Type "copyright" ...'
Index: PySystemState.java
===================================================================
RCS file: /cvsroot/jython/jython/org/python/core/PySystemState.java,v
retrieving revision 2.34
retrieving revision 2.35
diff -C2 -r2.34 -r2.35
*** PySystemState.java 2000/11/29 19:04:24 2.34
--- PySystemState.java 2000/12/06 20:58:56 2.35
***************
*** 21,25 ****
// TBD: should we use \u00a9 Unicode c-inside-circle?
public static String copyright =
! "Type \"copyright\", \"credits\" or \"license\" for more information.";
/**
--- 21,38 ----
// TBD: should we use \u00a9 Unicode c-inside-circle?
public static String copyright =
! "Copyright (c) 2000, Jython Developers\n" +
! "All rights reserved.\n\n" +
!
! "Copyright (c) 2000 BeOpen.com.\n" +
! "All Rights Reserved.\n\n"+
!
! "Copyright (c) 2000 The Apache Software Foundation. All rights\n" +
! "reserved.\n\n" +
!
! "Copyright (c) 1995-2000 Corporation for National Research Initiatives.\n" +
! "All Rights Reserved.\n\n" +
!
! "Copyright (c) 1991-1995 Stichting Mathematisch Centrum, Amsterdam.\n" +
! "All Rights Reserved.\n\n";
/**
|