From: <pj...@us...> - 2009-01-12 01:59:10
|
Revision: 5923 http://jython.svn.sourceforge.net/jython/?rev=5923&view=rev Author: pjenvey Date: 2009-01-12 01:31:59 +0000 (Mon, 12 Jan 2009) Log Message: ----------- bump copyright year Modified Paths: -------------- trunk/jython/LICENSE.txt trunk/jython/src/org/python/core/PySystemState.java Modified: trunk/jython/LICENSE.txt =================================================================== --- trunk/jython/LICENSE.txt 2009-01-12 01:21:45 UTC (rev 5922) +++ trunk/jython/LICENSE.txt 2009-01-12 01:31:59 UTC (rev 5923) @@ -53,7 +53,7 @@ Jython 2.0, 2.1 License ================================ -Copyright (c) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 Jython Developers +Copyright (c) 2000-2009 Jython Developers. All rights reserved. Redistribution and use in source and binary forms, with or without Modified: trunk/jython/src/org/python/core/PySystemState.java =================================================================== --- trunk/jython/src/org/python/core/PySystemState.java 2009-01-12 01:21:45 UTC (rev 5922) +++ trunk/jython/src/org/python/core/PySystemState.java 2009-01-12 01:31:59 UTC (rev 5923) @@ -55,14 +55,14 @@ */ public static final PyObject copyright = Py.newString( - "Copyright (c) 2000-2008, Jython Developers\n" + + "Copyright (c) 2000-2009 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) 2000 The Apache Software Foundation.\n" + + "All rights reserved.\n\n" + "Copyright (c) 1995-2000 Corporation for National Research "+ "Initiatives.\n" + @@ -70,7 +70,7 @@ "Copyright (c) 1991-1995 Stichting Mathematisch Centrum, " + "Amsterdam.\n" + - "All Rights Reserved.\n\n"); + "All Rights Reserved."); private static Map<String,String> builtinNames; public static PyTuple builtin_module_names = null; @@ -1103,4 +1103,4 @@ builtins = PySystemState.getDefaultBuiltins(); warnoptions = PySystemState.warnoptions; } -} \ No newline at end of file +} This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |