From python-dev@python.org Sat Jul 1 00:04:20 2000 From: python-dev@python.org (Guido van Rossum) Date: Fri, 30 Jun 2000 16:04:20 -0700 Subject: [Python-checkins] CVS: python/dist/src/Modules signalmodule.c,2.40,2.41 Message-ID: <200006302304.QAA04637@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Modules In directory slayer.i.sourceforge.net:/tmp/cvs-serv4629 Modified Files: signalmodule.c Log Message: Fix another error on AIX by using a proper cast. Index: signalmodule.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/signalmodule.c,v retrieving revision 2.40 retrieving revision 2.41 diff -C2 -r2.40 -r2.41 *** signalmodule.c 2000/06/28 22:26:21 2.40 --- signalmodule.c 2000/06/30 23:04:18 2.41 *************** *** 357,365 **** d = PyModule_GetDict(m); ! x = DefaultHandler = PyLong_FromVoidPtr(SIG_DFL); if (!x || PyDict_SetItemString(d, "SIG_DFL", x) < 0) goto finally; ! x = IgnoreHandler = PyLong_FromVoidPtr(SIG_IGN); if (!x || PyDict_SetItemString(d, "SIG_IGN", x) < 0) goto finally; --- 357,365 ---- d = PyModule_GetDict(m); ! x = DefaultHandler = PyLong_FromVoidPtr((void *)SIG_DFL); if (!x || PyDict_SetItemString(d, "SIG_DFL", x) < 0) goto finally; ! x = IgnoreHandler = PyLong_FromVoidPtr((void *)SIG_IGN); if (!x || PyDict_SetItemString(d, "SIG_IGN", x) < 0) goto finally; From python-dev@python.org Sat Jul 1 00:22:37 2000 From: python-dev@python.org (Fred L. Drake) Date: Fri, 30 Jun 2000 16:22:37 -0700 Subject: [Python-checkins] CVS: python/dist/src/Lib/test test_pty.py,NONE,1.1 Message-ID: <200006302322.QAA05862@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Lib/test In directory slayer.i.sourceforge.net:/tmp/cvs-serv5851/test Added Files: test_pty.py Log Message: Thomas Wouters : Test case for the pty module. --- NEW FILE --- import pty, os, sys, string from test_support import verbose, TestFailed TEST_STRING_1 = "I wish to buy a fish license." TEST_STRING_2 = "For my pet fish, Eric." TEST_STRING_3 = "And now for something completely different..." TEST_STRING_4 = "but you pronounce it throatwobbler mangrove." if verbose: def debug(msg): print msg else: def debug(msg): pass # Marginal testing of pty suite. Cannot do extensive 'do or fail' testing # because pty code is not too portable. try: debug("Calling master_open()") master_fd, slave_name = pty.master_open() debug("Got master_fd '%d', slave_name '%s'"%(master_fd, slave_name)) debug("Calling slave_open(%s)"%`slave_name`) slave_fd = pty.slave_open(slave_name) debug("Got slave_fd '%d'"%slave_fd) except OSError: # " An optional feature could not be imported " ... ? raise ImportError, "Pseudo-terminals (seemingly) not functional." ## # Please uncomment these if os.isatty() is added. ## if not os.isatty(master_fd): ## raise TestFailed, "master_fd is not a tty" ## if not os.isatty(slave_fd): ## raise TestFailed, "slave_fd is not a tty" debug("Writing to slave_fd") os.write(slave_fd, TEST_STRING_1) # should check return value print os.read(master_fd, 1024) os.write(slave_fd, TEST_STRING_2[:5]) os.write(slave_fd, TEST_STRING_2[5:]) print os.read(master_fd, 1024) os.close(slave_fd) os.close(master_fd) # basic pty passed. debug("calling pty.fork()") pid, master_fd = pty.fork() if pid == pty.CHILD: ## # Please uncomment these when os.isatty() is added. ## if not os.isatty(1): ## debug("Child's fd 1 is not a tty?!") ## os._exit(3) try: debug("In child, calling os.setsid()") os.setsid() except OSError: # Good, we already were session leader debug("OSError was raised.") pass except AttributeError: # Have pty, but not setsid() ? debug("AttributeError was raised.") pass except: # We don't want this error to propagate, escape the call to # os._exit(), and cause very peculiar behaviour in the calling # regrtest.py ! debug("Some other error was raised.") os._exit(1) else: debug("os.setsid() succeeded! (bad!)") os._exit(2) os._exit(4) else: debug("Waiting for child (%d) to finish."%pid) (pid, status) = os.waitpid(pid, 0) debug("Child (%d) exited with status %d."%(pid, status)) if status / 256 == 1: raise TestFailed, "Child raised an unexpected exception in os.setsid()" elif status / 256 == 2: raise TestFailed, "pty.fork() failed to make child a session leader." elif status / 256 == 3: raise TestFailed, "Child spawned by pty.fork() did not have a tty as stdout" elif status / 256 <> 4: raise TestFailed, "pty.fork() failed for unknown reasons:" print os.read(master_fd, 65536) os.close(master_fd) # pty.fork() passed. From python-dev@python.org Sat Jul 1 00:22:37 2000 From: python-dev@python.org (Fred L. Drake) Date: Fri, 30 Jun 2000 16:22:37 -0700 Subject: [Python-checkins] CVS: python/dist/src/Lib/test/output test_pty,NONE,1.1 Message-ID: <200006302322.QAA05865@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Lib/test/output In directory slayer.i.sourceforge.net:/tmp/cvs-serv5851/test/output Added Files: test_pty Log Message: Thomas Wouters : Test case for the pty module. --- NEW FILE --- test_pty I wish to buy a fish license. For my pet fish, Eric. From python-dev@python.org Sat Jul 1 00:50:42 2000 From: python-dev@python.org (Guido van Rossum) Date: Fri, 30 Jun 2000 16:50:42 -0700 Subject: [Python-checkins] CVS: python/dist/src/PC/os2vacpp config.c,1.3,1.4 getpathp.c,1.5,1.6 Message-ID: <200006302350.QAA07555@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/PC/os2vacpp In directory slayer.i.sourceforge.net:/tmp/cvs-serv7452/PC/os2vacpp Modified Files: config.c getpathp.c Log Message: Change copyright notice. Index: config.c =================================================================== RCS file: /cvsroot/python/python/dist/src/PC/os2vacpp/config.c,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** config.c 1998/09/28 22:02:36 1.3 --- config.c 2000/06/30 23:50:39 1.4 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: getpathp.c =================================================================== RCS file: /cvsroot/python/python/dist/src/PC/os2vacpp/getpathp.c,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** getpathp.c 2000/05/26 21:49:07 1.5 --- getpathp.c 2000/06/30 23:50:39 1.6 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ From python-dev@python.org Sat Jul 1 00:50:42 2000 From: python-dev@python.org (Guido van Rossum) Date: Fri, 30 Jun 2000 16:50:42 -0700 Subject: [Python-checkins] CVS: python/dist/src/PC config.c,1.23,1.24 getpathp.c,1.15,1.16 Message-ID: <200006302350.QAA07553@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/PC In directory slayer.i.sourceforge.net:/tmp/cvs-serv7452/PC Modified Files: config.c getpathp.c Log Message: Change copyright notice. Index: config.c =================================================================== RCS file: /cvsroot/python/python/dist/src/PC/config.c,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -r1.23 -r1.24 *** config.c 2000/06/30 05:02:53 1.23 --- config.c 2000/06/30 23:50:39 1.24 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: getpathp.c =================================================================== RCS file: /cvsroot/python/python/dist/src/PC/getpathp.c,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -r1.15 -r1.16 *** getpathp.c 2000/06/28 22:20:06 1.15 --- getpathp.c 2000/06/30 23:50:39 1.16 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ From python-dev@python.org Sat Jul 1 00:50:42 2000 From: python-dev@python.org (Guido van Rossum) Date: Fri, 30 Jun 2000 16:50:42 -0700 Subject: [Python-checkins] CVS: python/dist/src/Tools/modulator/Templates copyright,1.2,1.3 Message-ID: <200006302350.QAA07593@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Tools/modulator/Templates In directory slayer.i.sourceforge.net:/tmp/cvs-serv7452/Tools/modulator/Templates Modified Files: copyright Log Message: Change copyright notice. Index: copyright =================================================================== RCS file: /cvsroot/python/python/dist/src/Tools/modulator/Templates/copyright,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** copyright 1996/10/25 14:44:06 1.2 --- copyright 2000/06/30 23:50:40 1.3 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ From python-dev@python.org Sat Jul 1 00:50:42 2000 From: python-dev@python.org (Guido van Rossum) Date: Fri, 30 Jun 2000 16:50:42 -0700 Subject: [Python-checkins] CVS: python/dist/src/Tools/scripts fixnotice.py,1.2,1.3 Message-ID: <200006302350.QAA07605@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Tools/scripts In directory slayer.i.sourceforge.net:/tmp/cvs-serv7452/Tools/scripts Modified Files: fixnotice.py Log Message: Change copyright notice. Index: fixnotice.py =================================================================== RCS file: /cvsroot/python/python/dist/src/Tools/scripts/fixnotice.py,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** fixnotice.py 1998/03/24 05:30:22 1.2 --- fixnotice.py 2000/06/30 23:50:40 1.3 *************** *** 20,45 **** NEW_NOTICE = """ ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. """ --- 20,30 ---- NEW_NOTICE = """ ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. """ From python-dev@python.org Sat Jul 1 00:50:43 2000 From: python-dev@python.org (Guido van Rossum) Date: Fri, 30 Jun 2000 16:50:43 -0700 Subject: [Python-checkins] CVS: python/dist/src/Objects abstract.c,2.35,2.36 bufferobject.c,2.8,2.9 classobject.c,2.94,2.95 cobject.c,2.8,2.9 complexobject.c,2.25,2.26 dictobject.c,2.55,2.56 fileobject.c,2.75,2.76 floatobject.c,2.59,2.60 frameobject.c,2.39,2.40 funcobject.c,2.25,2.26 intobject.c,2.43,2.44 listobject.c,2.76,2.77 longobject.c,1.58,1.59 methodobject.c,2.29,2.30 moduleobject.c,2.25,2.26 object.c,2.76,2.77 rangeobject.c,2.13,2.14 stringobject.c,2.70,2.71 tupleobject.c,2.39,2.40 typeobject.c,2.12,2.13 xxobject.c,2.15,2.16 Message-ID: <200006302350.QAA07642@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Objects In directory slayer.i.sourceforge.net:/tmp/cvs-serv7452/Objects Modified Files: abstract.c bufferobject.c classobject.c cobject.c complexobject.c dictobject.c fileobject.c floatobject.c frameobject.c funcobject.c intobject.c listobject.c longobject.c methodobject.c moduleobject.c object.c rangeobject.c stringobject.c tupleobject.c typeobject.c xxobject.c Log Message: Change copyright notice. Index: abstract.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Objects/abstract.c,v retrieving revision 2.35 retrieving revision 2.36 diff -C2 -r2.35 -r2.36 *** abstract.c 2000/06/18 18:43:14 2.35 --- abstract.c 2000/06/30 23:50:39 2.36 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: bufferobject.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Objects/bufferobject.c,v retrieving revision 2.8 retrieving revision 2.9 diff -C2 -r2.8 -r2.9 *** bufferobject.c 2000/06/30 15:01:00 2.8 --- bufferobject.c 2000/06/30 23:50:39 2.9 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: classobject.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Objects/classobject.c,v retrieving revision 2.94 retrieving revision 2.95 diff -C2 -r2.94 -r2.95 *** classobject.c 2000/06/30 15:01:00 2.94 --- classobject.c 2000/06/30 23:50:39 2.95 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: cobject.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Objects/cobject.c,v retrieving revision 2.8 retrieving revision 2.9 diff -C2 -r2.8 -r2.9 *** cobject.c 2000/05/03 23:44:34 2.8 --- cobject.c 2000/06/30 23:50:39 2.9 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: complexobject.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Objects/complexobject.c,v retrieving revision 2.25 retrieving revision 2.26 diff -C2 -r2.25 -r2.26 *** complexobject.c 2000/06/29 19:17:04 2.25 --- complexobject.c 2000/06/30 23:50:39 2.26 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: dictobject.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Objects/dictobject.c,v retrieving revision 2.55 retrieving revision 2.56 diff -C2 -r2.55 -r2.56 *** dictobject.c 2000/06/30 05:02:53 2.55 --- dictobject.c 2000/06/30 23:50:39 2.56 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: fileobject.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Objects/fileobject.c,v retrieving revision 2.75 retrieving revision 2.76 diff -C2 -r2.75 -r2.76 *** fileobject.c 2000/06/30 15:01:00 2.75 --- fileobject.c 2000/06/30 23:50:39 2.76 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: floatobject.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Objects/floatobject.c,v retrieving revision 2.59 retrieving revision 2.60 diff -C2 -r2.59 -r2.60 *** floatobject.c 2000/06/30 15:01:00 2.59 --- floatobject.c 2000/06/30 23:50:39 2.60 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: frameobject.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Objects/frameobject.c,v retrieving revision 2.39 retrieving revision 2.40 diff -C2 -r2.39 -r2.40 *** frameobject.c 2000/05/03 23:44:34 2.39 --- frameobject.c 2000/06/30 23:50:39 2.40 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: funcobject.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Objects/funcobject.c,v retrieving revision 2.25 retrieving revision 2.26 diff -C2 -r2.25 -r2.26 *** funcobject.c 2000/06/30 15:01:00 2.25 --- funcobject.c 2000/06/30 23:50:39 2.26 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: intobject.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Objects/intobject.c,v retrieving revision 2.43 retrieving revision 2.44 diff -C2 -r2.43 -r2.44 *** intobject.c 2000/06/30 15:01:00 2.43 --- intobject.c 2000/06/30 23:50:39 2.44 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: listobject.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Objects/listobject.c,v retrieving revision 2.76 retrieving revision 2.77 diff -C2 -r2.76 -r2.77 *** listobject.c 2000/06/30 05:02:53 2.76 --- listobject.c 2000/06/30 23:50:39 2.77 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: longobject.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Objects/longobject.c,v retrieving revision 1.58 retrieving revision 1.59 diff -C2 -r1.58 -r1.59 *** longobject.c 2000/06/01 18:37:36 1.58 --- longobject.c 2000/06/30 23:50:39 1.59 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: methodobject.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Objects/methodobject.c,v retrieving revision 2.29 retrieving revision 2.30 diff -C2 -r2.29 -r2.30 *** methodobject.c 2000/06/30 22:46:04 2.29 --- methodobject.c 2000/06/30 23:50:39 2.30 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: moduleobject.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Objects/moduleobject.c,v retrieving revision 2.25 retrieving revision 2.26 diff -C2 -r2.25 -r2.26 *** moduleobject.c 2000/05/03 23:44:35 2.25 --- moduleobject.c 2000/06/30 23:50:39 2.26 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: object.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Objects/object.c,v retrieving revision 2.76 retrieving revision 2.77 diff -C2 -r2.76 -r2.77 *** object.c 2000/06/30 15:01:00 2.76 --- object.c 2000/06/30 23:50:39 2.77 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: rangeobject.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Objects/rangeobject.c,v retrieving revision 2.13 retrieving revision 2.14 diff -C2 -r2.13 -r2.14 *** rangeobject.c 2000/06/15 14:50:20 2.13 --- rangeobject.c 2000/06/30 23:50:39 2.14 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: stringobject.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Objects/stringobject.c,v retrieving revision 2.70 retrieving revision 2.71 diff -C2 -r2.70 -r2.71 *** stringobject.c 2000/06/30 10:29:17 2.70 --- stringobject.c 2000/06/30 23:50:39 2.71 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: tupleobject.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Objects/tupleobject.c,v retrieving revision 2.39 retrieving revision 2.40 diff -C2 -r2.39 -r2.40 *** tupleobject.c 2000/06/30 05:02:53 2.39 --- tupleobject.c 2000/06/30 23:50:39 2.40 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: typeobject.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Objects/typeobject.c,v retrieving revision 2.12 retrieving revision 2.13 diff -C2 -r2.12 -r2.13 *** typeobject.c 1997/06/02 14:43:07 2.12 --- typeobject.c 2000/06/30 23:50:39 2.13 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: xxobject.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Objects/xxobject.c,v retrieving revision 2.15 retrieving revision 2.16 diff -C2 -r2.15 -r2.16 *** xxobject.c 2000/05/03 23:44:36 2.15 --- xxobject.c 2000/06/30 23:50:39 2.16 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ From python-dev@python.org Sat Jul 1 00:50:43 2000 From: python-dev@python.org (Guido van Rossum) Date: Fri, 30 Jun 2000 16:50:43 -0700 Subject: [Python-checkins] CVS: python/dist/src/Parser acceler.c,2.12,2.13 assert.h,2.7,2.8 bitset.c,2.7,2.8 firstsets.c,2.7,2.8 grammar.c,2.13,2.14 grammar1.c,2.8,2.9 intrcheck.c,2.30,2.31 listnode.c,2.9,2.10 metagrammar.c,2.7,2.8 myreadline.c,2.18,2.19 node.c,2.8,2.9 parser.c,2.11,2.12 parser.h,2.9,2.10 parsetok.c,2.18,2.19 pgen.c,2.12,2.13 pgen.h,2.9,2.10 pgenmain.c,2.17,2.18 printgrammar.c,2.8,2.9 tokenizer.c,2.42,2.43 tokenizer.h,2.12,2.13 Message-ID: <200006302350.QAA07637@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Parser In directory slayer.i.sourceforge.net:/tmp/cvs-serv7452/Parser Modified Files: acceler.c assert.h bitset.c firstsets.c grammar.c grammar1.c intrcheck.c listnode.c metagrammar.c myreadline.c node.c parser.c parser.h parsetok.c pgen.c pgen.h pgenmain.c printgrammar.c tokenizer.c tokenizer.h Log Message: Change copyright notice. Index: acceler.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Parser/acceler.c,v retrieving revision 2.12 retrieving revision 2.13 diff -C2 -r2.12 -r2.13 *** acceler.c 1997/08/02 03:02:25 2.12 --- acceler.c 2000/06/30 23:50:39 2.13 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: assert.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Parser/assert.h,v retrieving revision 2.7 retrieving revision 2.8 diff -C2 -r2.7 -r2.8 *** assert.h 1996/10/25 14:37:45 2.7 --- assert.h 2000/06/30 23:50:39 2.8 *************** *** 11,36 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 11,21 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: bitset.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Parser/bitset.c,v retrieving revision 2.7 retrieving revision 2.8 diff -C2 -r2.7 -r2.8 *** bitset.c 1997/04/29 21:02:21 2.7 --- bitset.c 2000/06/30 23:50:39 2.8 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: firstsets.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Parser/firstsets.c,v retrieving revision 2.7 retrieving revision 2.8 diff -C2 -r2.7 -r2.8 *** firstsets.c 1997/04/29 21:02:24 2.7 --- firstsets.c 2000/06/30 23:50:39 2.8 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: grammar.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Parser/grammar.c,v retrieving revision 2.13 retrieving revision 2.14 diff -C2 -r2.13 -r2.14 *** grammar.c 1998/04/10 22:09:36 2.13 --- grammar.c 2000/06/30 23:50:39 2.14 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: grammar1.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Parser/grammar1.c,v retrieving revision 2.8 retrieving revision 2.9 diff -C2 -r2.8 -r2.9 *** grammar1.c 1997/04/29 21:02:31 2.8 --- grammar1.c 2000/06/30 23:50:39 2.9 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: intrcheck.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Parser/intrcheck.c,v retrieving revision 2.30 retrieving revision 2.31 diff -C2 -r2.30 -r2.31 *** intrcheck.c 1998/12/04 18:50:20 2.30 --- intrcheck.c 2000/06/30 23:50:39 2.31 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: listnode.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Parser/listnode.c,v retrieving revision 2.9 retrieving revision 2.10 diff -C2 -r2.9 -r2.10 *** listnode.c 1997/04/29 21:02:37 2.9 --- listnode.c 2000/06/30 23:50:39 2.10 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: metagrammar.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Parser/metagrammar.c,v retrieving revision 2.7 retrieving revision 2.8 diff -C2 -r2.7 -r2.8 *** metagrammar.c 1997/04/29 21:02:40 2.7 --- metagrammar.c 2000/06/30 23:50:39 2.8 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: myreadline.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Parser/myreadline.c,v retrieving revision 2.18 retrieving revision 2.19 diff -C2 -r2.18 -r2.19 *** myreadline.c 2000/06/28 22:00:02 2.18 --- myreadline.c 2000/06/30 23:50:39 2.19 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: node.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Parser/node.c,v retrieving revision 2.8 retrieving revision 2.9 diff -C2 -r2.8 -r2.9 *** node.c 2000/06/20 19:10:44 2.8 --- node.c 2000/06/30 23:50:39 2.9 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: parser.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Parser/parser.c,v retrieving revision 2.11 retrieving revision 2.12 diff -C2 -r2.11 -r2.12 *** parser.c 2000/06/20 19:10:44 2.11 --- parser.c 2000/06/30 23:50:39 2.12 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: parser.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Parser/parser.h,v retrieving revision 2.9 retrieving revision 2.10 diff -C2 -r2.9 -r2.10 *** parser.h 1997/04/29 21:02:47 2.9 --- parser.h 2000/06/30 23:50:39 2.10 *************** *** 11,36 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 11,21 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: parsetok.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Parser/parsetok.c,v retrieving revision 2.18 retrieving revision 2.19 diff -C2 -r2.18 -r2.19 *** parsetok.c 2000/06/28 22:00:02 2.18 --- parsetok.c 2000/06/30 23:50:39 2.19 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: pgen.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Parser/pgen.c,v retrieving revision 2.12 retrieving revision 2.13 diff -C2 -r2.12 -r2.13 *** pgen.c 1998/04/10 22:09:39 2.12 --- pgen.c 2000/06/30 23:50:39 2.13 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: pgen.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Parser/pgen.h,v retrieving revision 2.9 retrieving revision 2.10 diff -C2 -r2.9 -r2.10 *** pgen.h 1997/04/29 21:02:56 2.9 --- pgen.h 2000/06/30 23:50:39 2.10 *************** *** 11,36 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 11,21 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: pgenmain.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Parser/pgenmain.c,v retrieving revision 2.17 retrieving revision 2.18 diff -C2 -r2.17 -r2.18 *** pgenmain.c 2000/06/28 22:00:02 2.17 --- pgenmain.c 2000/06/30 23:50:39 2.18 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: printgrammar.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Parser/printgrammar.c,v retrieving revision 2.8 retrieving revision 2.9 diff -C2 -r2.8 -r2.9 *** printgrammar.c 1997/05/07 23:50:06 2.8 --- printgrammar.c 2000/06/30 23:50:39 2.9 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: tokenizer.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Parser/tokenizer.c,v retrieving revision 2.42 retrieving revision 2.43 diff -C2 -r2.42 -r2.43 *** tokenizer.c 2000/06/28 22:00:02 2.42 --- tokenizer.c 2000/06/30 23:50:39 2.43 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: tokenizer.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Parser/tokenizer.h,v retrieving revision 2.12 retrieving revision 2.13 diff -C2 -r2.12 -r2.13 *** tokenizer.h 1998/04/09 21:38:06 2.12 --- tokenizer.h 2000/06/30 23:50:39 2.13 *************** *** 11,36 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 11,21 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ From python-dev@python.org Sat Jul 1 00:50:44 2000 From: python-dev@python.org (Guido van Rossum) Date: Fri, 30 Jun 2000 16:50:44 -0700 Subject: [Python-checkins] CVS: python/dist/src/Modules _tkinter.c,1.102,1.103 almodule.c,1.24,1.25 arraymodule.c,2.42,2.43 audioop.c,1.36,1.37 binascii.c,2.19,2.20 bsddbmodule.c,1.19,1.20 cdmodule.c,1.19,1.20 cgensupport.c,2.11,2.12 cgensupport.h,2.11,2.12 clmodule.c,2.20,2.21 config.c.in,1.67,1.68 cstubs,2.18,2.19 dbmmodule.c,2.17,2.18 dlmodule.c,2.7,2.8 errnomodule.c,2.9,2.10 fcntlmodule.c,2.19,2.20 flmodule.c,1.37,1.38 fmmodule.c,1.11,1.12 gdbmmodule.c,2.22,2.23 getpath.c,1.23,1.24 glmodule.c,2.3,2.4 grpmodule.c,2.9,2.10 imageop.c,2.20,2.21 imgfile.c,1.22,1.23 main.c,1.38,1.39 mathmodule.c,2.45,2.46 md5module.c,2.15,2.16 mpzmodule.c,2.25,2.26 newmodule.c,2.21,2.22 parsermodule.c,2.39,2.40 pcremodule.c,2.19,2.20 posixmodule.c,2.139,2.140 pwdmodule.c,1.17,1.18 pyexpat.c,2.5,2.6 regexmodule.c,1.34,1.35 resource.c,2.10,2.11 selectmodule.c,2.33,2.34 sgimodule.c,1.11,1.12 shamodule.c,2.5,2.6 signalmodule.c,2.41,2.42 socketmodule.c,1.109,1.110 stropmodule.c,2.63,2.64 structmodule.c,2.31,2.32 sun! audiodev.c,1.17,1.18 svmodule.c,2.11,2.12 threadmodule.c,2.31,2.32 timemodule.c,2.86,2.87 xxmodule.c,2.16,2.17 yuv.h,2.5,2.6 yuvconvert.c,2.4,2.5 Message-ID: <200006302350.QAA07688@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Modules In directory slayer.i.sourceforge.net:/tmp/cvs-serv7452/Modules Modified Files: _tkinter.c almodule.c arraymodule.c audioop.c binascii.c bsddbmodule.c cdmodule.c cgensupport.c cgensupport.h clmodule.c config.c.in cstubs dbmmodule.c dlmodule.c errnomodule.c fcntlmodule.c flmodule.c fmmodule.c gdbmmodule.c getpath.c glmodule.c grpmodule.c imageop.c imgfile.c main.c mathmodule.c md5module.c mpzmodule.c newmodule.c parsermodule.c pcremodule.c posixmodule.c pwdmodule.c pyexpat.c regexmodule.c resource.c selectmodule.c sgimodule.c shamodule.c signalmodule.c socketmodule.c stropmodule.c structmodule.c sunaudiodev.c svmodule.c threadmodule.c timemodule.c xxmodule.c yuv.h yuvconvert.c Log Message: Change copyright notice. Index: _tkinter.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/_tkinter.c,v retrieving revision 1.102 retrieving revision 1.103 diff -C2 -r1.102 -r1.103 *** _tkinter.c 2000/06/30 15:00:59 1.102 --- _tkinter.c 2000/06/30 23:50:38 1.103 *************** *** 6,31 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 6,16 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: almodule.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/almodule.c,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -r1.24 -r1.25 *** almodule.c 2000/05/03 23:44:31 1.24 --- almodule.c 2000/06/30 23:50:38 1.25 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: arraymodule.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/arraymodule.c,v retrieving revision 2.42 retrieving revision 2.43 diff -C2 -r2.42 -r2.43 *** arraymodule.c 2000/06/28 21:27:21 2.42 --- arraymodule.c 2000/06/30 23:50:38 2.43 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: audioop.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/audioop.c,v retrieving revision 1.36 retrieving revision 1.37 diff -C2 -r1.36 -r1.37 *** audioop.c 2000/05/02 21:18:13 1.36 --- audioop.c 2000/06/30 23:50:38 1.37 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: binascii.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/binascii.c,v retrieving revision 2.19 retrieving revision 2.20 diff -C2 -r2.19 -r2.20 *** binascii.c 2000/02/29 13:59:22 2.19 --- binascii.c 2000/06/30 23:50:38 2.20 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: bsddbmodule.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/bsddbmodule.c,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -r1.19 -r1.20 *** bsddbmodule.c 2000/06/30 04:17:11 1.19 --- bsddbmodule.c 2000/06/30 23:50:38 1.20 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: cdmodule.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/cdmodule.c,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -r1.19 -r1.20 *** cdmodule.c 2000/05/03 23:44:31 1.19 --- cdmodule.c 2000/06/30 23:50:38 1.20 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: cgensupport.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/cgensupport.c,v retrieving revision 2.11 retrieving revision 2.12 diff -C2 -r2.11 -r2.12 *** cgensupport.c 1997/04/29 15:43:55 2.11 --- cgensupport.c 2000/06/30 23:50:38 2.12 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: cgensupport.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/cgensupport.h,v retrieving revision 2.11 retrieving revision 2.12 diff -C2 -r2.11 -r2.12 *** cgensupport.h 1997/04/29 15:35:28 2.11 --- cgensupport.h 2000/06/30 23:50:38 2.12 *************** *** 11,36 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 11,21 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: clmodule.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/clmodule.c,v retrieving revision 2.20 retrieving revision 2.21 diff -C2 -r2.20 -r2.21 *** clmodule.c 2000/05/03 23:44:31 2.20 --- clmodule.c 2000/06/30 23:50:38 2.21 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: config.c.in =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/config.c.in,v retrieving revision 1.67 retrieving revision 1.68 diff -C2 -r1.67 -r1.68 *** config.c.in 1997/04/29 20:31:59 1.67 --- config.c.in 2000/06/30 23:50:38 1.68 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: cstubs =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/cstubs,v retrieving revision 2.18 retrieving revision 2.19 diff -C2 -r2.18 -r2.19 *** cstubs 1998/04/28 16:09:16 2.18 --- cstubs 2000/06/30 23:50:38 2.19 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: dbmmodule.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/dbmmodule.c,v retrieving revision 2.17 retrieving revision 2.18 diff -C2 -r2.17 -r2.18 *** dbmmodule.c 2000/05/03 23:44:32 2.17 --- dbmmodule.c 2000/06/30 23:50:38 2.18 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: dlmodule.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/dlmodule.c,v retrieving revision 2.7 retrieving revision 2.8 diff -C2 -r2.7 -r2.8 *** dlmodule.c 2000/05/03 23:44:32 2.7 --- dlmodule.c 2000/06/30 23:50:38 2.8 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: errnomodule.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/errnomodule.c,v retrieving revision 2.9 retrieving revision 2.10 diff -C2 -r2.9 -r2.10 *** errnomodule.c 1999/01/27 18:04:05 2.9 --- errnomodule.c 2000/06/30 23:50:38 2.10 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: fcntlmodule.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/fcntlmodule.c,v retrieving revision 2.19 retrieving revision 2.20 diff -C2 -r2.19 -r2.20 *** fcntlmodule.c 2000/02/29 13:59:23 2.19 --- fcntlmodule.c 2000/06/30 23:50:38 2.20 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: flmodule.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/flmodule.c,v retrieving revision 1.37 retrieving revision 1.38 diff -C2 -r1.37 -r1.38 *** flmodule.c 2000/06/30 15:00:59 1.37 --- flmodule.c 2000/06/30 23:50:38 1.38 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: fmmodule.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/fmmodule.c,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -r1.11 -r1.12 *** fmmodule.c 2000/05/03 23:44:32 1.11 --- fmmodule.c 2000/06/30 23:50:38 1.12 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: gdbmmodule.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/gdbmmodule.c,v retrieving revision 2.22 retrieving revision 2.23 diff -C2 -r2.22 -r2.23 *** gdbmmodule.c 2000/05/03 23:44:32 2.22 --- gdbmmodule.c 2000/06/30 23:50:38 2.23 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: getpath.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/getpath.c,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -r1.23 -r1.24 *** getpath.c 2000/06/28 21:29:03 1.23 --- getpath.c 2000/06/30 23:50:38 1.24 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: glmodule.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/glmodule.c,v retrieving revision 2.3 retrieving revision 2.4 diff -C2 -r2.3 -r2.4 *** glmodule.c 1998/10/21 16:10:40 2.3 --- glmodule.c 2000/06/30 23:50:38 2.4 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: grpmodule.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/grpmodule.c,v retrieving revision 2.9 retrieving revision 2.10 diff -C2 -r2.9 -r2.10 *** grpmodule.c 1998/12/04 18:49:50 2.9 --- grpmodule.c 2000/06/30 23:50:38 2.10 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: imageop.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/imageop.c,v retrieving revision 2.20 retrieving revision 2.21 diff -C2 -r2.20 -r2.21 *** imageop.c 1998/12/04 18:49:50 2.20 --- imageop.c 2000/06/30 23:50:38 2.21 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: imgfile.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/imgfile.c,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -r1.22 -r1.23 *** imgfile.c 1997/10/01 04:26:35 1.22 --- imgfile.c 2000/06/30 23:50:38 1.23 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: main.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/main.c,v retrieving revision 1.38 retrieving revision 1.39 diff -C2 -r1.38 -r1.39 *** main.c 2000/05/02 19:20:26 1.38 --- main.c 2000/06/30 23:50:38 1.39 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: mathmodule.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/mathmodule.c,v retrieving revision 2.45 retrieving revision 2.46 diff -C2 -r2.45 -r2.46 *** mathmodule.c 2000/05/11 18:40:42 2.45 --- mathmodule.c 2000/06/30 23:50:38 2.46 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: md5module.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/md5module.c,v retrieving revision 2.15 retrieving revision 2.16 diff -C2 -r2.15 -r2.16 *** md5module.c 2000/05/03 23:44:32 2.15 --- md5module.c 2000/06/30 23:50:38 2.16 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: mpzmodule.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/mpzmodule.c,v retrieving revision 2.25 retrieving revision 2.26 diff -C2 -r2.25 -r2.26 *** mpzmodule.c 2000/06/30 15:00:59 2.25 --- mpzmodule.c 2000/06/30 23:50:38 2.26 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: newmodule.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/newmodule.c,v retrieving revision 2.21 retrieving revision 2.22 diff -C2 -r2.21 -r2.22 *** newmodule.c 2000/06/30 05:02:53 2.21 --- newmodule.c 2000/06/30 23:50:38 2.22 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: parsermodule.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/parsermodule.c,v retrieving revision 2.39 retrieving revision 2.40 diff -C2 -r2.39 -r2.40 *** parsermodule.c 2000/05/03 23:44:32 2.39 --- parsermodule.c 2000/06/30 23:50:38 2.40 *************** *** 82,107 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 82,92 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: pcremodule.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/pcremodule.c,v retrieving revision 2.19 retrieving revision 2.20 diff -C2 -r2.19 -r2.20 *** pcremodule.c 2000/05/03 23:44:32 2.19 --- pcremodule.c 2000/06/30 23:50:38 2.20 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: posixmodule.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/posixmodule.c,v retrieving revision 2.139 retrieving revision 2.140 diff -C2 -r2.139 -r2.140 *** posixmodule.c 2000/06/30 22:45:12 2.139 --- posixmodule.c 2000/06/30 23:50:38 2.140 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: pwdmodule.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/pwdmodule.c,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -r1.17 -r1.18 *** pwdmodule.c 1998/12/04 18:50:00 1.17 --- pwdmodule.c 2000/06/30 23:50:38 1.18 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: pyexpat.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/pyexpat.c,v retrieving revision 2.5 retrieving revision 2.6 diff -C2 -r2.5 -r2.6 *** pyexpat.c 2000/06/27 00:33:30 2.5 --- pyexpat.c 2000/06/30 23:50:38 2.6 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: regexmodule.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/regexmodule.c,v retrieving revision 1.34 retrieving revision 1.35 diff -C2 -r1.34 -r1.35 *** regexmodule.c 2000/05/03 23:44:33 1.34 --- regexmodule.c 2000/06/30 23:50:38 1.35 *************** *** 10,35 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 10,20 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: resource.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/resource.c,v retrieving revision 2.10 retrieving revision 2.11 diff -C2 -r2.10 -r2.11 *** resource.c 2000/02/29 13:59:23 2.10 --- resource.c 2000/06/30 23:50:38 2.11 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: selectmodule.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/selectmodule.c,v retrieving revision 2.33 retrieving revision 2.34 diff -C2 -r2.33 -r2.34 *** selectmodule.c 2000/06/28 21:18:13 2.33 --- selectmodule.c 2000/06/30 23:50:38 2.34 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: sgimodule.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/sgimodule.c,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -r1.11 -r1.12 *** sgimodule.c 1996/12/10 00:32:31 1.11 --- sgimodule.c 2000/06/30 23:50:38 1.12 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: shamodule.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/shamodule.c,v retrieving revision 2.5 retrieving revision 2.6 diff -C2 -r2.5 -r2.6 *** shamodule.c 2000/05/03 23:44:33 2.5 --- shamodule.c 2000/06/30 23:50:38 2.6 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: signalmodule.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/signalmodule.c,v retrieving revision 2.41 retrieving revision 2.42 diff -C2 -r2.41 -r2.42 *** signalmodule.c 2000/06/30 23:04:18 2.41 --- signalmodule.c 2000/06/30 23:50:38 2.42 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: socketmodule.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/socketmodule.c,v retrieving revision 1.109 retrieving revision 1.110 diff -C2 -r1.109 -r1.110 *** socketmodule.c 2000/06/30 02:46:07 1.109 --- socketmodule.c 2000/06/30 23:50:38 1.110 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: stropmodule.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/stropmodule.c,v retrieving revision 2.63 retrieving revision 2.64 diff -C2 -r2.63 -r2.64 *** stropmodule.c 2000/05/03 23:44:33 2.63 --- stropmodule.c 2000/06/30 23:50:38 2.64 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: structmodule.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/structmodule.c,v retrieving revision 2.31 retrieving revision 2.32 diff -C2 -r2.31 -r2.32 *** structmodule.c 2000/06/01 02:02:46 2.31 --- structmodule.c 2000/06/30 23:50:38 2.32 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: sunaudiodev.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/sunaudiodev.c,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -r1.17 -r1.18 *** sunaudiodev.c 2000/05/03 23:44:33 1.17 --- sunaudiodev.c 2000/06/30 23:50:39 1.18 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: svmodule.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/svmodule.c,v retrieving revision 2.11 retrieving revision 2.12 diff -C2 -r2.11 -r2.12 *** svmodule.c 2000/05/03 23:44:33 2.11 --- svmodule.c 2000/06/30 23:50:39 2.12 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: threadmodule.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/threadmodule.c,v retrieving revision 2.31 retrieving revision 2.32 diff -C2 -r2.31 -r2.32 *** threadmodule.c 2000/05/03 23:44:33 2.31 --- threadmodule.c 2000/06/30 23:50:39 2.32 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: timemodule.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/timemodule.c,v retrieving revision 2.86 retrieving revision 2.87 diff -C2 -r2.86 -r2.87 *** timemodule.c 2000/06/29 21:31:02 2.86 --- timemodule.c 2000/06/30 23:50:39 2.87 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: xxmodule.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/xxmodule.c,v retrieving revision 2.16 retrieving revision 2.17 diff -C2 -r2.16 -r2.17 *** xxmodule.c 2000/05/03 23:44:33 2.16 --- xxmodule.c 2000/06/30 23:50:39 2.17 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: yuv.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/yuv.h,v retrieving revision 2.5 retrieving revision 2.6 diff -C2 -r2.5 -r2.6 *** yuv.h 1996/10/25 14:41:05 2.5 --- yuv.h 2000/06/30 23:50:39 2.6 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: yuvconvert.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/yuvconvert.c,v retrieving revision 2.4 retrieving revision 2.5 diff -C2 -r2.4 -r2.5 *** yuvconvert.c 1996/10/25 14:41:08 2.4 --- yuvconvert.c 2000/06/30 23:50:39 2.5 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ From python-dev@python.org Sat Jul 1 00:50:45 2000 From: python-dev@python.org (Guido van Rossum) Date: Fri, 30 Jun 2000 16:50:45 -0700 Subject: [Python-checkins] CVS: python/dist/src/Python atof.c,2.3,2.4 bltinmodule.c,2.163,2.164 ceval.c,2.180,2.181 compile.c,2.110,2.111 dynload_aix.c,2.3,2.4 dynload_beos.c,2.2,2.3 dynload_dl.c,2.2,2.3 dynload_hpux.c,2.2,2.3 dynload_mac.c,2.4,2.5 dynload_next.c,2.3,2.4 dynload_os2.c,2.2,2.3 dynload_shlib.c,2.2,2.3 dynload_stub.c,2.1,2.2 dynload_win.c,2.3,2.4 errors.c,2.45,2.46 fmod.c,2.9,2.10 frozen.c,1.6,1.7 frozenmain.c,2.20,2.21 getargs.c,2.34,2.35 getcompiler.c,1.5,1.6 getcopyright.c,1.6,1.7 getcwd.c,1.10,1.11 getmtime.c,2.10,2.11 getplatform.c,1.4,1.5 getversion.c,1.10,1.11 import.c,2.136,2.137 importdl.c,2.64,2.65 importdl.h,2.12,2.13 marshal.c,1.49,1.50 memmove.c,2.4,2.5 modsupport.c,2.43,2.44 mystrtoul.c,2.17,2.18 pystate.c,2.9,2.10 pythonrun.c,2.98,2.99 sigcheck.c,2.4,2.5 strerror.c,2.6,2.7 structmember.c,2.14,2.15 sysmodule.c,2.66,2.67 thread.c,2.29,2.30 thread_beos.h,2.3,2.4 thread_cthread.h,2.9,2.10 thread_foobar.h,2.7,2.8 thread_lwp.h,2.8,2.9 thread_nt.h,2.12,2.13 thread_os2.h,! 2.6,2.7 thread_pth.h,2.2,2.3 thread_pthread.h,2.25,2.26 thread_sgi.h,2.10,2.11 thread_solaris.h,2.11,2.12 thread_wince.h,2.2,2.3 traceback.c,2.28,2.29 Message-ID: <200006302350.QAA07714@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Python In directory slayer.i.sourceforge.net:/tmp/cvs-serv7452/Python Modified Files: atof.c bltinmodule.c ceval.c compile.c dynload_aix.c dynload_beos.c dynload_dl.c dynload_hpux.c dynload_mac.c dynload_next.c dynload_os2.c dynload_shlib.c dynload_stub.c dynload_win.c errors.c fmod.c frozen.c frozenmain.c getargs.c getcompiler.c getcopyright.c getcwd.c getmtime.c getplatform.c getversion.c import.c importdl.c importdl.h marshal.c memmove.c modsupport.c mystrtoul.c pystate.c pythonrun.c sigcheck.c strerror.c structmember.c sysmodule.c thread.c thread_beos.h thread_cthread.h thread_foobar.h thread_lwp.h thread_nt.h thread_os2.h thread_pth.h thread_pthread.h thread_sgi.h thread_solaris.h thread_wince.h traceback.c Log Message: Change copyright notice. Index: atof.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/atof.c,v retrieving revision 2.3 retrieving revision 2.4 diff -C2 -r2.3 -r2.4 *** atof.c 1996/10/25 14:42:36 2.3 --- atof.c 2000/06/30 23:50:39 2.4 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: bltinmodule.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/bltinmodule.c,v retrieving revision 2.163 retrieving revision 2.164 diff -C2 -r2.163 -r2.164 *** bltinmodule.c 2000/06/28 21:12:25 2.163 --- bltinmodule.c 2000/06/30 23:50:39 2.164 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: ceval.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/ceval.c,v retrieving revision 2.180 retrieving revision 2.181 diff -C2 -r2.180 -r2.181 *** ceval.c 2000/06/28 22:07:35 2.180 --- ceval.c 2000/06/30 23:50:39 2.181 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: compile.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/compile.c,v retrieving revision 2.110 retrieving revision 2.111 diff -C2 -r2.110 -r2.111 *** compile.c 2000/06/30 16:20:13 2.110 --- compile.c 2000/06/30 23:50:39 2.111 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: dynload_aix.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/dynload_aix.c,v retrieving revision 2.3 retrieving revision 2.4 diff -C2 -r2.3 -r2.4 *** dynload_aix.c 1999/12/22 14:09:35 2.3 --- dynload_aix.c 2000/06/30 23:50:39 2.4 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: dynload_beos.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/dynload_beos.c,v retrieving revision 2.2 retrieving revision 2.3 diff -C2 -r2.2 -r2.3 *** dynload_beos.c 1999/12/22 14:09:35 2.2 --- dynload_beos.c 2000/06/30 23:50:39 2.3 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: dynload_dl.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/dynload_dl.c,v retrieving revision 2.2 retrieving revision 2.3 diff -C2 -r2.2 -r2.3 *** dynload_dl.c 1999/12/22 14:09:35 2.2 --- dynload_dl.c 2000/06/30 23:50:39 2.3 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: dynload_hpux.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/dynload_hpux.c,v retrieving revision 2.2 retrieving revision 2.3 diff -C2 -r2.2 -r2.3 *** dynload_hpux.c 1999/12/22 14:09:35 2.2 --- dynload_hpux.c 2000/06/30 23:50:39 2.3 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: dynload_mac.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/dynload_mac.c,v retrieving revision 2.4 retrieving revision 2.5 diff -C2 -r2.4 -r2.5 *** dynload_mac.c 2000/04/24 15:08:01 2.4 --- dynload_mac.c 2000/06/30 23:50:39 2.5 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: dynload_next.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/dynload_next.c,v retrieving revision 2.3 retrieving revision 2.4 diff -C2 -r2.3 -r2.4 *** dynload_next.c 2000/04/10 12:45:10 2.3 --- dynload_next.c 2000/06/30 23:50:39 2.4 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: dynload_os2.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/dynload_os2.c,v retrieving revision 2.2 retrieving revision 2.3 diff -C2 -r2.2 -r2.3 *** dynload_os2.c 1999/12/22 14:09:35 2.2 --- dynload_os2.c 2000/06/30 23:50:39 2.3 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: dynload_shlib.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/dynload_shlib.c,v retrieving revision 2.2 retrieving revision 2.3 diff -C2 -r2.2 -r2.3 *** dynload_shlib.c 1999/12/22 14:09:35 2.2 --- dynload_shlib.c 2000/06/30 23:50:39 2.3 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: dynload_stub.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/dynload_stub.c,v retrieving revision 2.1 retrieving revision 2.2 diff -C2 -r2.1 -r2.2 *** dynload_stub.c 1999/12/20 21:18:49 2.1 --- dynload_stub.c 2000/06/30 23:50:39 2.2 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: dynload_win.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/dynload_win.c,v retrieving revision 2.3 retrieving revision 2.4 diff -C2 -r2.3 -r2.4 *** dynload_win.c 2000/06/28 22:07:35 2.3 --- dynload_win.c 2000/06/30 23:50:39 2.4 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: errors.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/errors.c,v retrieving revision 2.45 retrieving revision 2.46 diff -C2 -r2.45 -r2.46 *** errors.c 2000/05/02 19:27:51 2.45 --- errors.c 2000/06/30 23:50:39 2.46 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: fmod.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/fmod.c,v retrieving revision 2.9 retrieving revision 2.10 diff -C2 -r2.9 -r2.10 *** fmod.c 1996/10/25 14:43:04 2.9 --- fmod.c 2000/06/30 23:50:39 2.10 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: frozen.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/frozen.c,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** frozen.c 1998/04/03 21:10:36 1.6 --- frozen.c 2000/06/30 23:50:39 1.7 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: frozenmain.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/frozenmain.c,v retrieving revision 2.20 retrieving revision 2.21 diff -C2 -r2.20 -r2.21 *** frozenmain.c 1999/01/02 21:42:48 2.20 --- frozenmain.c 2000/06/30 23:50:39 2.21 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: getargs.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/getargs.c,v retrieving revision 2.34 retrieving revision 2.35 diff -C2 -r2.34 -r2.35 *** getargs.c 2000/06/28 23:53:56 2.34 --- getargs.c 2000/06/30 23:50:39 2.35 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: getcompiler.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/getcompiler.c,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** getcompiler.c 1997/07/19 19:48:41 1.5 --- getcompiler.c 2000/06/30 23:50:40 1.6 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: getcopyright.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/getcopyright.c,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** getcopyright.c 2000/05/10 20:06:00 1.6 --- getcopyright.c 2000/06/30 23:50:40 1.7 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: getcwd.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/getcwd.c,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -r1.10 -r1.11 *** getcwd.c 2000/06/28 22:07:35 1.10 --- getcwd.c 2000/06/30 23:50:40 1.11 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: getmtime.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/getmtime.c,v retrieving revision 2.10 retrieving revision 2.11 diff -C2 -r2.10 -r2.11 *** getmtime.c 2000/06/30 16:18:57 2.10 --- getmtime.c 2000/06/30 23:50:40 2.11 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: getplatform.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/getplatform.c,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** getplatform.c 1997/07/19 19:48:05 1.4 --- getplatform.c 2000/06/30 23:50:40 1.5 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: getversion.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/getversion.c,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -r1.10 -r1.11 *** getversion.c 1999/04/22 12:03:40 1.10 --- getversion.c 2000/06/30 23:50:40 1.11 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: import.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/import.c,v retrieving revision 2.136 retrieving revision 2.137 diff -C2 -r2.136 -r2.137 *** import.c 2000/06/30 16:18:57 2.136 --- import.c 2000/06/30 23:50:40 2.137 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: importdl.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/importdl.c,v retrieving revision 2.64 retrieving revision 2.65 diff -C2 -r2.64 -r2.65 *** importdl.c 1999/12/22 14:09:35 2.64 --- importdl.c 2000/06/30 23:50:40 2.65 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: importdl.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/importdl.h,v retrieving revision 2.12 retrieving revision 2.13 diff -C2 -r2.12 -r2.13 *** importdl.h 1999/12/20 22:55:03 2.12 --- importdl.h 2000/06/30 23:50:40 2.13 *************** *** 12,37 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 12,22 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: marshal.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/marshal.c,v retrieving revision 1.49 retrieving revision 1.50 diff -C2 -r1.49 -r1.50 *** marshal.c 2000/06/28 23:24:19 1.49 --- marshal.c 2000/06/30 23:50:40 1.50 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: memmove.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/memmove.c,v retrieving revision 2.4 retrieving revision 2.5 diff -C2 -r2.4 -r2.5 *** memmove.c 1996/10/25 14:43:30 2.4 --- memmove.c 2000/06/30 23:50:40 2.5 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: modsupport.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/modsupport.c,v retrieving revision 2.43 retrieving revision 2.44 diff -C2 -r2.43 -r2.44 *** modsupport.c 2000/06/28 22:07:35 2.43 --- modsupport.c 2000/06/30 23:50:40 2.44 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: mystrtoul.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/mystrtoul.c,v retrieving revision 2.17 retrieving revision 2.18 diff -C2 -r2.17 -r2.18 *** mystrtoul.c 1999/04/07 16:07:21 2.17 --- mystrtoul.c 2000/06/30 23:50:40 2.18 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: pystate.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/pystate.c,v retrieving revision 2.9 retrieving revision 2.10 diff -C2 -r2.9 -r2.10 *** pystate.c 1999/06/18 14:22:24 2.9 --- pystate.c 2000/06/30 23:50:40 2.10 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: pythonrun.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/pythonrun.c,v retrieving revision 2.98 retrieving revision 2.99 diff -C2 -r2.98 -r2.99 *** pythonrun.c 2000/06/20 19:10:44 2.98 --- pythonrun.c 2000/06/30 23:50:40 2.99 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: sigcheck.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/sigcheck.c,v retrieving revision 2.4 retrieving revision 2.5 diff -C2 -r2.4 -r2.5 *** sigcheck.c 1997/04/29 20:08:14 2.4 --- sigcheck.c 2000/06/30 23:50:40 2.5 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: strerror.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/strerror.c,v retrieving revision 2.6 retrieving revision 2.7 diff -C2 -r2.6 -r2.7 *** strerror.c 1996/10/25 14:43:41 2.6 --- strerror.c 2000/06/30 23:50:40 2.7 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: structmember.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/structmember.c,v retrieving revision 2.14 retrieving revision 2.15 diff -C2 -r2.14 -r2.15 *** structmember.c 1998/05/20 22:25:32 2.14 --- structmember.c 2000/06/30 23:50:40 2.15 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: sysmodule.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/sysmodule.c,v retrieving revision 2.66 retrieving revision 2.67 diff -C2 -r2.66 -r2.67 *** sysmodule.c 2000/06/28 22:07:35 2.66 --- sysmodule.c 2000/06/30 23:50:40 2.67 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: thread.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/thread.c,v retrieving revision 2.29 retrieving revision 2.30 diff -C2 -r2.29 -r2.30 *** thread.c 2000/05/08 13:36:49 2.29 --- thread.c 2000/06/30 23:50:40 2.30 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: thread_beos.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/thread_beos.h,v retrieving revision 2.3 retrieving revision 2.4 diff -C2 -r2.3 -r2.4 *** thread_beos.h 2000/06/30 15:01:00 2.3 --- thread_beos.h 2000/06/30 23:50:40 2.4 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. BeOS thread support by Chris Herborth (chrish@qnx.com) --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. BeOS thread support by Chris Herborth (chrish@qnx.com) Index: thread_cthread.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/thread_cthread.h,v retrieving revision 2.9 retrieving revision 2.10 diff -C2 -r2.9 -r2.10 *** thread_cthread.h 2000/06/30 15:01:00 2.9 --- thread_cthread.h 2000/06/30 23:50:40 2.10 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: thread_foobar.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/thread_foobar.h,v retrieving revision 2.7 retrieving revision 2.8 diff -C2 -r2.7 -r2.8 *** thread_foobar.h 2000/06/30 15:01:00 2.7 --- thread_foobar.h 2000/06/30 23:50:40 2.8 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: thread_lwp.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/thread_lwp.h,v retrieving revision 2.8 retrieving revision 2.9 diff -C2 -r2.8 -r2.9 *** thread_lwp.h 2000/06/30 15:01:00 2.8 --- thread_lwp.h 2000/06/30 23:50:40 2.9 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: thread_nt.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/thread_nt.h,v retrieving revision 2.12 retrieving revision 2.13 diff -C2 -r2.12 -r2.13 *** thread_nt.h 2000/06/30 15:01:00 2.12 --- thread_nt.h 2000/06/30 23:50:40 2.13 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: thread_os2.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/thread_os2.h,v retrieving revision 2.6 retrieving revision 2.7 diff -C2 -r2.6 -r2.7 *** thread_os2.h 2000/06/30 15:01:00 2.6 --- thread_os2.h 2000/06/30 23:50:40 2.7 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: thread_pth.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/thread_pth.h,v retrieving revision 2.2 retrieving revision 2.3 diff -C2 -r2.2 -r2.3 *** thread_pth.h 2000/06/30 15:01:00 2.2 --- thread_pth.h 2000/06/30 23:50:40 2.3 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: thread_pthread.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/thread_pthread.h,v retrieving revision 2.25 retrieving revision 2.26 diff -C2 -r2.25 -r2.26 *** thread_pthread.h 2000/06/30 15:01:00 2.25 --- thread_pthread.h 2000/06/30 23:50:40 2.26 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: thread_sgi.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/thread_sgi.h,v retrieving revision 2.10 retrieving revision 2.11 diff -C2 -r2.10 -r2.11 *** thread_sgi.h 2000/06/30 15:01:00 2.10 --- thread_sgi.h 2000/06/30 23:50:40 2.11 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: thread_solaris.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/thread_solaris.h,v retrieving revision 2.11 retrieving revision 2.12 diff -C2 -r2.11 -r2.12 *** thread_solaris.h 2000/06/30 15:01:00 2.11 --- thread_solaris.h 2000/06/30 23:50:40 2.12 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: thread_wince.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/thread_wince.h,v retrieving revision 2.2 retrieving revision 2.3 diff -C2 -r2.2 -r2.3 *** thread_wince.h 2000/06/30 15:01:00 2.2 --- thread_wince.h 2000/06/30 23:50:40 2.3 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: traceback.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/traceback.c,v retrieving revision 2.28 retrieving revision 2.29 diff -C2 -r2.28 -r2.29 *** traceback.c 2000/06/28 22:07:35 2.28 --- traceback.c 2000/06/30 23:50:40 2.29 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ From python-dev@python.org Sat Jul 1 00:51:10 2000 From: python-dev@python.org (Guido van Rossum) Date: Fri, 30 Jun 2000 16:51:10 -0700 Subject: [Python-checkins] CVS: python/dist/src/Doc README,1.38,1.39 Message-ID: <200006302351.QAA07745@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Doc In directory slayer.i.sourceforge.net:/tmp/cvs-serv7452/Doc Modified Files: README Log Message: Change copyright notice. Index: README =================================================================== RCS file: /cvsroot/python/python/dist/src/Doc/README,v retrieving revision 1.38 retrieving revision 1.39 diff -C2 -r1.38 -r1.39 *** README 2000/04/28 16:53:35 1.38 --- README 2000/06/30 23:50:37 1.39 *************** *** 199,223 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ---------------------------------------------------------------------- --- 199,208 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ---------------------------------------------------------------------- From python-dev@python.org Sat Jul 1 00:51:10 2000 From: python-dev@python.org (Guido van Rossum) Date: Fri, 30 Jun 2000 16:51:10 -0700 Subject: [Python-checkins] CVS: python/dist/src/Misc python.man,1.13,1.14 Message-ID: <200006302351.QAA07751@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Misc In directory slayer.i.sourceforge.net:/tmp/cvs-serv7452/Misc Modified Files: python.man Log Message: Change copyright notice. Index: python.man =================================================================== RCS file: /cvsroot/python/python/dist/src/Misc/python.man,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -r1.13 -r1.14 *** python.man 1999/08/20 13:30:49 1.13 --- python.man 2000/06/30 23:50:38 1.14 *************** *** 291,314 **** All Rights Reserved .PP ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. --- 291,299 ---- All Rights Reserved .PP ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. From python-dev@python.org Sat Jul 1 00:51:12 2000 From: python-dev@python.org (Guido van Rossum) Date: Fri, 30 Jun 2000 16:51:12 -0700 Subject: [Python-checkins] CVS: python/dist/src/Include Python.h,2.17,2.18 abstract.h,2.18,2.19 bitset.h,2.9,2.10 bufferobject.h,2.2,2.3 ceval.h,2.31,2.32 classobject.h,2.28,2.29 cobject.h,2.5,2.6 compile.h,2.19,2.20 dictobject.h,2.16,2.17 errcode.h,2.9,2.10 eval.h,2.10,2.11 fileobject.h,2.17,2.18 floatobject.h,2.13,2.14 frameobject.h,2.24,2.25 funcobject.h,2.16,2.17 grammar.h,2.10,2.11 import.h,2.22,2.23 intobject.h,2.17,2.18 intrcheck.h,2.5,2.6 listobject.h,2.17,2.18 longintrepr.h,2.5,2.6 longobject.h,2.13,2.14 marshal.h,2.6,2.7 metagrammar.h,2.7,2.8 methodobject.h,2.16,2.17 modsupport.h,2.28,2.29 moduleobject.h,2.13,2.14 mymalloc.h,2.19,2.20 myproto.h,2.6,2.7 myselect.h,2.10,2.11 mytime.h,2.4,2.5 node.h,2.13,2.14 object.h,2.57,2.58 objimpl.h,2.17,2.18 opcode.h,2.23,2.24 osdefs.h,2.10,2.11 parsetok.h,2.10,2.11 patchlevel.h,2.36,2.37 pgenheaders.h,2.18,2.19 pydebug.h,2.11,2.12 pyerrors.h,2.35,2.36 pystate.h,2.9,2.10 pythonrun.h,2.28,2.29 pythread.h,2.13,2.14 rangeobject.h,2.11,2.12 stringobj! ect.h,2.17,2.18 structmember.h,2.12,2.13 sysmodule.h,2.17,2.18 token.h,2.12,2.13 traceback.h,2.14,2.15 tupleobject.h,2.20,2.21 Message-ID: <200006302351.QAA07801@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Include In directory slayer.i.sourceforge.net:/tmp/cvs-serv7452/Include Modified Files: Python.h abstract.h bitset.h bufferobject.h ceval.h classobject.h cobject.h compile.h dictobject.h errcode.h eval.h fileobject.h floatobject.h frameobject.h funcobject.h grammar.h import.h intobject.h intrcheck.h listobject.h longintrepr.h longobject.h marshal.h metagrammar.h methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h myselect.h mytime.h node.h object.h objimpl.h opcode.h osdefs.h parsetok.h patchlevel.h pgenheaders.h pydebug.h pyerrors.h pystate.h pythonrun.h pythread.h rangeobject.h stringobject.h structmember.h sysmodule.h token.h traceback.h tupleobject.h Log Message: Change copyright notice. Index: Python.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/Python.h,v retrieving revision 2.17 retrieving revision 2.18 diff -C2 -r2.17 -r2.18 *** Python.h 2000/05/28 20:29:48 2.17 --- Python.h 2000/06/30 23:50:38 2.18 *************** *** 9,34 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 9,19 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: abstract.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/abstract.h,v retrieving revision 2.18 retrieving revision 2.19 diff -C2 -r2.18 -r2.19 *** abstract.h 2000/06/18 18:43:13 2.18 --- abstract.h 2000/06/30 23:50:38 2.19 *************** *** 11,36 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 11,21 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: bitset.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/bitset.h,v retrieving revision 2.9 retrieving revision 2.10 diff -C2 -r2.9 -r2.10 *** bitset.h 1996/10/25 14:37:47 2.9 --- bitset.h 2000/06/30 23:50:38 2.10 *************** *** 11,36 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 11,21 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: bufferobject.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/bufferobject.h,v retrieving revision 2.2 retrieving revision 2.3 diff -C2 -r2.2 -r2.3 *** bufferobject.h 1998/12/04 18:47:51 2.2 --- bufferobject.h 2000/06/30 23:50:38 2.3 *************** *** 11,36 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 11,21 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: ceval.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/ceval.h,v retrieving revision 2.31 retrieving revision 2.32 diff -C2 -r2.31 -r2.32 *** ceval.h 2000/05/08 14:04:54 2.31 --- ceval.h 2000/06/30 23:50:38 2.32 *************** *** 11,36 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 11,21 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: classobject.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/classobject.h,v retrieving revision 2.28 retrieving revision 2.29 diff -C2 -r2.28 -r2.29 *** classobject.h 1998/12/04 18:47:53 2.28 --- classobject.h 2000/06/30 23:50:38 2.29 *************** *** 11,36 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 11,21 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: cobject.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/cobject.h,v retrieving revision 2.5 retrieving revision 2.6 diff -C2 -r2.5 -r2.6 *** cobject.h 1998/12/04 18:47:54 2.5 --- cobject.h 2000/06/30 23:50:38 2.6 *************** *** 11,36 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 11,21 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: compile.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/compile.h,v retrieving revision 2.19 retrieving revision 2.20 diff -C2 -r2.19 -r2.20 *** compile.h 1998/12/04 18:47:55 2.19 --- compile.h 2000/06/30 23:50:38 2.20 *************** *** 11,36 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 11,21 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: dictobject.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/dictobject.h,v retrieving revision 2.16 retrieving revision 2.17 diff -C2 -r2.16 -r2.17 *** dictobject.h 2000/03/30 22:27:28 2.16 --- dictobject.h 2000/06/30 23:50:38 2.17 *************** *** 11,36 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 11,21 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: errcode.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/errcode.h,v retrieving revision 2.9 retrieving revision 2.10 diff -C2 -r2.9 -r2.10 *** errcode.h 2000/06/20 19:10:44 2.9 --- errcode.h 2000/06/30 23:50:38 2.10 *************** *** 11,36 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 11,21 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: eval.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/eval.h,v retrieving revision 2.10 retrieving revision 2.11 diff -C2 -r2.10 -r2.11 *** eval.h 1998/12/04 18:47:58 2.10 --- eval.h 2000/06/30 23:50:38 2.11 *************** *** 11,36 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 11,21 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: fileobject.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/fileobject.h,v retrieving revision 2.17 retrieving revision 2.18 diff -C2 -r2.17 -r2.18 *** fileobject.h 1998/12/04 18:47:59 2.17 --- fileobject.h 2000/06/30 23:50:38 2.18 *************** *** 11,36 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 11,21 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: floatobject.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/floatobject.h,v retrieving revision 2.13 retrieving revision 2.14 diff -C2 -r2.13 -r2.14 *** floatobject.h 1999/10/12 19:54:34 2.13 --- floatobject.h 2000/06/30 23:50:38 2.14 *************** *** 11,36 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 11,21 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: frameobject.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/frameobject.h,v retrieving revision 2.24 retrieving revision 2.25 diff -C2 -r2.24 -r2.25 *** frameobject.h 1998/12/04 18:48:01 2.24 --- frameobject.h 2000/06/30 23:50:38 2.25 *************** *** 11,36 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 11,21 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: funcobject.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/funcobject.h,v retrieving revision 2.16 retrieving revision 2.17 diff -C2 -r2.16 -r2.17 *** funcobject.h 1998/12/04 18:48:02 2.16 --- funcobject.h 2000/06/30 23:50:38 2.17 *************** *** 11,36 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 11,21 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: grammar.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/grammar.h,v retrieving revision 2.10 retrieving revision 2.11 diff -C2 -r2.10 -r2.11 *** grammar.h 1997/08/12 14:57:08 2.10 --- grammar.h 2000/06/30 23:50:38 2.11 *************** *** 11,36 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 11,21 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: import.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/import.h,v retrieving revision 2.22 retrieving revision 2.23 diff -C2 -r2.22 -r2.23 *** import.h 1999/01/04 16:39:38 2.22 --- import.h 2000/06/30 23:50:38 2.23 *************** *** 11,36 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 11,21 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: intobject.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/intobject.h,v retrieving revision 2.17 retrieving revision 2.18 diff -C2 -r2.17 -r2.18 *** intobject.h 2000/04/05 20:11:08 2.17 --- intobject.h 2000/06/30 23:50:38 2.18 *************** *** 11,36 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 11,21 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: intrcheck.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/intrcheck.h,v retrieving revision 2.5 retrieving revision 2.6 diff -C2 -r2.5 -r2.6 *** intrcheck.h 1998/12/04 18:48:04 2.5 --- intrcheck.h 2000/06/30 23:50:38 2.6 *************** *** 11,36 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 11,21 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: listobject.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/listobject.h,v retrieving revision 2.17 retrieving revision 2.18 diff -C2 -r2.17 -r2.18 *** listobject.h 2000/03/01 15:06:53 2.17 --- listobject.h 2000/06/30 23:50:38 2.18 *************** *** 11,36 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 11,21 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: longintrepr.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/longintrepr.h,v retrieving revision 2.5 retrieving revision 2.6 diff -C2 -r2.5 -r2.6 *** longintrepr.h 1998/12/04 18:48:06 2.5 --- longintrepr.h 2000/06/30 23:50:38 2.6 *************** *** 11,36 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 11,21 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: longobject.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/longobject.h,v retrieving revision 2.13 retrieving revision 2.14 diff -C2 -r2.13 -r2.14 *** longobject.h 2000/04/05 20:11:08 2.13 --- longobject.h 2000/06/30 23:50:38 2.14 *************** *** 11,36 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 11,21 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: marshal.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/marshal.h,v retrieving revision 2.6 retrieving revision 2.7 diff -C2 -r2.6 -r2.7 *** marshal.h 1998/12/04 18:48:07 2.6 --- marshal.h 2000/06/30 23:50:38 2.7 *************** *** 11,36 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 11,21 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: metagrammar.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/metagrammar.h,v retrieving revision 2.7 retrieving revision 2.8 diff -C2 -r2.7 -r2.8 *** metagrammar.h 1996/10/25 14:38:29 2.7 --- metagrammar.h 2000/06/30 23:50:38 2.8 *************** *** 11,36 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 11,21 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: methodobject.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/methodobject.h,v retrieving revision 2.16 retrieving revision 2.17 diff -C2 -r2.16 -r2.17 *** methodobject.h 1998/12/04 18:48:08 2.16 --- methodobject.h 2000/06/30 23:50:38 2.17 *************** *** 11,36 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 11,21 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: modsupport.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/modsupport.h,v retrieving revision 2.28 retrieving revision 2.29 diff -C2 -r2.28 -r2.29 *** modsupport.h 2000/03/29 01:46:45 2.28 --- modsupport.h 2000/06/30 23:50:38 2.29 *************** *** 11,36 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 11,21 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: moduleobject.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/moduleobject.h,v retrieving revision 2.13 retrieving revision 2.14 diff -C2 -r2.13 -r2.14 *** moduleobject.h 1999/02/15 14:43:11 2.13 --- moduleobject.h 2000/06/30 23:50:38 2.14 *************** *** 11,36 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 11,21 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: mymalloc.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/mymalloc.h,v retrieving revision 2.19 retrieving revision 2.20 diff -C2 -r2.19 -r2.20 *** mymalloc.h 2000/05/05 15:36:09 2.19 --- mymalloc.h 2000/06/30 23:50:38 2.20 *************** *** 7,32 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 7,17 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: myproto.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/myproto.h,v retrieving revision 2.6 retrieving revision 2.7 diff -C2 -r2.6 -r2.7 *** myproto.h 1997/05/07 23:50:40 2.6 --- myproto.h 2000/06/30 23:50:38 2.7 *************** *** 11,36 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 11,21 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: myselect.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/myselect.h,v retrieving revision 2.10 retrieving revision 2.11 diff -C2 -r2.10 -r2.11 *** myselect.h 2000/04/24 15:12:54 2.10 --- myselect.h 2000/06/30 23:50:38 2.11 *************** *** 11,36 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 11,21 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: mytime.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/mytime.h,v retrieving revision 2.4 retrieving revision 2.5 diff -C2 -r2.4 -r2.5 *** mytime.h 1996/10/25 14:38:42 2.4 --- mytime.h 2000/06/30 23:50:38 2.5 *************** *** 11,36 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 11,21 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: node.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/node.h,v retrieving revision 2.13 retrieving revision 2.14 diff -C2 -r2.13 -r2.14 *** node.h 2000/06/20 19:10:44 2.13 --- node.h 2000/06/30 23:50:38 2.14 *************** *** 11,36 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 11,21 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: object.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/object.h,v retrieving revision 2.57 retrieving revision 2.58 diff -C2 -r2.57 -r2.58 *** object.h 2000/06/29 19:17:04 2.57 --- object.h 2000/06/30 23:50:38 2.58 *************** *** 11,36 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 11,21 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: objimpl.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/objimpl.h,v retrieving revision 2.17 retrieving revision 2.18 diff -C2 -r2.17 -r2.18 *** objimpl.h 2000/06/30 05:02:52 2.17 --- objimpl.h 2000/06/30 23:50:38 2.18 *************** *** 11,36 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 11,21 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: opcode.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/opcode.h,v retrieving revision 2.23 retrieving revision 2.24 diff -C2 -r2.23 -r2.24 *** opcode.h 2000/03/29 00:10:03 2.23 --- opcode.h 2000/06/30 23:50:38 2.24 *************** *** 11,36 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 11,21 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: osdefs.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/osdefs.h,v retrieving revision 2.10 retrieving revision 2.11 diff -C2 -r2.10 -r2.11 *** osdefs.h 1997/12/05 21:39:25 2.10 --- osdefs.h 2000/06/30 23:50:38 2.11 *************** *** 11,36 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 11,21 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: parsetok.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/parsetok.h,v retrieving revision 2.10 retrieving revision 2.11 diff -C2 -r2.10 -r2.11 *** parsetok.h 1998/12/04 18:48:14 2.10 --- parsetok.h 2000/06/30 23:50:38 2.11 *************** *** 11,36 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 11,21 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: patchlevel.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/patchlevel.h,v retrieving revision 2.36 retrieving revision 2.37 diff -C2 -r2.36 -r2.37 *** patchlevel.h 2000/06/29 22:29:24 2.36 --- patchlevel.h 2000/06/30 23:50:38 2.37 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: pgenheaders.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/pgenheaders.h,v retrieving revision 2.18 retrieving revision 2.19 diff -C2 -r2.18 -r2.19 *** pgenheaders.h 2000/06/28 20:55:34 2.18 --- pgenheaders.h 2000/06/30 23:50:38 2.19 *************** *** 11,36 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 11,21 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: pydebug.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/pydebug.h,v retrieving revision 2.11 retrieving revision 2.12 diff -C2 -r2.11 -r2.12 *** pydebug.h 2000/05/01 17:51:41 2.11 --- pydebug.h 2000/06/30 23:50:38 2.12 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: pyerrors.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/pyerrors.h,v retrieving revision 2.35 retrieving revision 2.36 diff -C2 -r2.35 -r2.36 *** pyerrors.h 2000/03/10 22:33:32 2.35 --- pyerrors.h 2000/06/30 23:50:38 2.36 *************** *** 11,36 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 11,21 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: pystate.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/pystate.h,v retrieving revision 2.9 retrieving revision 2.10 diff -C2 -r2.9 -r2.10 *** pystate.h 1998/12/21 20:21:19 2.9 --- pystate.h 2000/06/30 23:50:38 2.10 *************** *** 11,36 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 11,21 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: pythonrun.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/pythonrun.h,v retrieving revision 2.28 retrieving revision 2.29 diff -C2 -r2.28 -r2.29 *** pythonrun.h 2000/06/26 14:37:53 2.28 --- pythonrun.h 2000/06/30 23:50:38 2.29 *************** *** 11,36 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 11,21 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: pythread.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/pythread.h,v retrieving revision 2.13 retrieving revision 2.14 diff -C2 -r2.13 -r2.14 *** pythread.h 1999/03/24 19:02:09 2.13 --- pythread.h 2000/06/30 23:50:38 2.14 *************** *** 8,33 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 8,18 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: rangeobject.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/rangeobject.h,v retrieving revision 2.11 retrieving revision 2.12 diff -C2 -r2.11 -r2.12 *** rangeobject.h 1998/12/04 18:48:19 2.11 --- rangeobject.h 2000/06/30 23:50:38 2.12 *************** *** 5,30 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 5,15 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: stringobject.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/stringobject.h,v retrieving revision 2.17 retrieving revision 2.18 diff -C2 -r2.17 -r2.18 *** stringobject.h 1998/12/04 18:48:21 2.17 --- stringobject.h 2000/06/30 23:50:38 2.18 *************** *** 11,36 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 11,21 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: structmember.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/structmember.h,v retrieving revision 2.12 retrieving revision 2.13 diff -C2 -r2.12 -r2.13 *** structmember.h 1998/12/04 18:48:22 2.12 --- structmember.h 2000/06/30 23:50:38 2.13 *************** *** 11,36 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 11,21 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: sysmodule.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/sysmodule.h,v retrieving revision 2.17 retrieving revision 2.18 diff -C2 -r2.17 -r2.18 *** sysmodule.h 1998/12/04 18:48:22 2.17 --- sysmodule.h 2000/06/30 23:50:38 2.18 *************** *** 11,36 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 11,21 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: token.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/token.h,v retrieving revision 2.12 retrieving revision 2.13 diff -C2 -r2.12 -r2.13 *** token.h 1998/12/04 18:48:23 2.12 --- token.h 2000/06/30 23:50:38 2.13 *************** *** 11,36 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 11,21 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: traceback.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/traceback.h,v retrieving revision 2.14 retrieving revision 2.15 diff -C2 -r2.14 -r2.15 *** traceback.h 1998/12/04 18:48:24 2.14 --- traceback.h 2000/06/30 23:50:38 2.15 *************** *** 11,36 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 11,21 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ Index: tupleobject.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/tupleobject.h,v retrieving revision 2.20 retrieving revision 2.21 diff -C2 -r2.20 -r2.21 *** tupleobject.h 2000/03/01 15:06:53 2.20 --- tupleobject.h 2000/06/30 23:50:38 2.21 *************** *** 11,36 **** All Rights Reserved ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address ftp://ftp.python.org. ! ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ --- 11,21 ---- All Rights Reserved ! Copyright (c) 2000, BeOpen.com. ! Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! All rights reserved. ! See the file "Misc/COPYRIGHT" for information on usage and ! redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ******************************************************************/ From python-dev@python.org Sat Jul 1 00:58:08 2000 From: python-dev@python.org (Guido van Rossum) Date: Fri, 30 Jun 2000 16:58:08 -0700 Subject: [Python-checkins] CVS: python/dist/src/PC/os2vacpp config.c,1.4,1.5 getpathp.c,1.6,1.7 Message-ID: <200006302358.QAA08427@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/PC/os2vacpp In directory slayer.i.sourceforge.net:/tmp/cvs-serv8335/PC/os2vacpp Modified Files: config.c getpathp.c Log Message: Change copyright notice - 2nd try. Index: config.c =================================================================== RCS file: /cvsroot/python/python/dist/src/PC/os2vacpp/config.c,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** config.c 2000/06/30 23:50:39 1.4 --- config.c 2000/06/30 23:58:05 1.5 *************** *** 1,8 **** /* -*- C -*- *********************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: getpathp.c =================================================================== RCS file: /cvsroot/python/python/dist/src/PC/os2vacpp/getpathp.c,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** getpathp.c 2000/06/30 23:50:39 1.6 --- getpathp.c 2000/06/30 23:58:05 1.7 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- From python-dev@python.org Sat Jul 1 00:58:08 2000 From: python-dev@python.org (Guido van Rossum) Date: Fri, 30 Jun 2000 16:58:08 -0700 Subject: [Python-checkins] CVS: python/dist/src/PC config.c,1.24,1.25 getpathp.c,1.16,1.17 Message-ID: <200006302358.QAA08421@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/PC In directory slayer.i.sourceforge.net:/tmp/cvs-serv8335/PC Modified Files: config.c getpathp.c Log Message: Change copyright notice - 2nd try. Index: config.c =================================================================== RCS file: /cvsroot/python/python/dist/src/PC/config.c,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -r1.24 -r1.25 *** config.c 2000/06/30 23:50:39 1.24 --- config.c 2000/06/30 23:58:05 1.25 *************** *** 1,8 **** /* -*- C -*- *********************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: getpathp.c =================================================================== RCS file: /cvsroot/python/python/dist/src/PC/getpathp.c,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -r1.16 -r1.17 *** getpathp.c 2000/06/30 23:50:39 1.16 --- getpathp.c 2000/06/30 23:58:05 1.17 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- From python-dev@python.org Sat Jul 1 00:58:08 2000 From: python-dev@python.org (Guido van Rossum) Date: Fri, 30 Jun 2000 16:58:08 -0700 Subject: [Python-checkins] CVS: python/dist/src/Tools/modulator/Templates copyright,1.3,1.4 Message-ID: <200006302358.QAA08447@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Tools/modulator/Templates In directory slayer.i.sourceforge.net:/tmp/cvs-serv8335/Tools/modulator/Templates Modified Files: copyright Log Message: Change copyright notice - 2nd try. Index: copyright =================================================================== RCS file: /cvsroot/python/python/dist/src/Tools/modulator/Templates/copyright,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** copyright 2000/06/30 23:50:40 1.3 --- copyright 2000/06/30 23:58:06 1.4 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,15 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,9 ---- From python-dev@python.org Sat Jul 1 00:58:10 2000 From: python-dev@python.org (Guido van Rossum) Date: Fri, 30 Jun 2000 16:58:10 -0700 Subject: [Python-checkins] CVS: python/dist/src/Objects abstract.c,2.36,2.37 bufferobject.c,2.9,2.10 classobject.c,2.95,2.96 cobject.c,2.9,2.10 complexobject.c,2.26,2.27 dictobject.c,2.56,2.57 fileobject.c,2.76,2.77 floatobject.c,2.60,2.61 frameobject.c,2.40,2.41 funcobject.c,2.26,2.27 intobject.c,2.44,2.45 listobject.c,2.77,2.78 longobject.c,1.59,1.60 methodobject.c,2.30,2.31 moduleobject.c,2.26,2.27 object.c,2.77,2.78 rangeobject.c,2.14,2.15 stringobject.c,2.71,2.72 tupleobject.c,2.40,2.41 typeobject.c,2.13,2.14 xxobject.c,2.16,2.17 Message-ID: <200006302358.QAA08531@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Objects In directory slayer.i.sourceforge.net:/tmp/cvs-serv8335/Objects Modified Files: abstract.c bufferobject.c classobject.c cobject.c complexobject.c dictobject.c fileobject.c floatobject.c frameobject.c funcobject.c intobject.c listobject.c longobject.c methodobject.c moduleobject.c object.c rangeobject.c stringobject.c tupleobject.c typeobject.c xxobject.c Log Message: Change copyright notice - 2nd try. Index: abstract.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Objects/abstract.c,v retrieving revision 2.36 retrieving revision 2.37 diff -C2 -r2.36 -r2.37 *** abstract.c 2000/06/30 23:50:39 2.36 --- abstract.c 2000/06/30 23:58:05 2.37 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: bufferobject.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Objects/bufferobject.c,v retrieving revision 2.9 retrieving revision 2.10 diff -C2 -r2.9 -r2.10 *** bufferobject.c 2000/06/30 23:50:39 2.9 --- bufferobject.c 2000/06/30 23:58:05 2.10 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: classobject.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Objects/classobject.c,v retrieving revision 2.95 retrieving revision 2.96 diff -C2 -r2.95 -r2.96 *** classobject.c 2000/06/30 23:50:39 2.95 --- classobject.c 2000/06/30 23:58:05 2.96 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: cobject.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Objects/cobject.c,v retrieving revision 2.9 retrieving revision 2.10 diff -C2 -r2.9 -r2.10 *** cobject.c 2000/06/30 23:50:39 2.9 --- cobject.c 2000/06/30 23:58:05 2.10 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: complexobject.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Objects/complexobject.c,v retrieving revision 2.26 retrieving revision 2.27 diff -C2 -r2.26 -r2.27 *** complexobject.c 2000/06/30 23:50:39 2.26 --- complexobject.c 2000/06/30 23:58:05 2.27 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: dictobject.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Objects/dictobject.c,v retrieving revision 2.56 retrieving revision 2.57 diff -C2 -r2.56 -r2.57 *** dictobject.c 2000/06/30 23:50:39 2.56 --- dictobject.c 2000/06/30 23:58:05 2.57 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: fileobject.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Objects/fileobject.c,v retrieving revision 2.76 retrieving revision 2.77 diff -C2 -r2.76 -r2.77 *** fileobject.c 2000/06/30 23:50:39 2.76 --- fileobject.c 2000/06/30 23:58:05 2.77 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: floatobject.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Objects/floatobject.c,v retrieving revision 2.60 retrieving revision 2.61 diff -C2 -r2.60 -r2.61 *** floatobject.c 2000/06/30 23:50:39 2.60 --- floatobject.c 2000/06/30 23:58:05 2.61 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: frameobject.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Objects/frameobject.c,v retrieving revision 2.40 retrieving revision 2.41 diff -C2 -r2.40 -r2.41 *** frameobject.c 2000/06/30 23:50:39 2.40 --- frameobject.c 2000/06/30 23:58:05 2.41 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: funcobject.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Objects/funcobject.c,v retrieving revision 2.26 retrieving revision 2.27 diff -C2 -r2.26 -r2.27 *** funcobject.c 2000/06/30 23:50:39 2.26 --- funcobject.c 2000/06/30 23:58:05 2.27 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: intobject.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Objects/intobject.c,v retrieving revision 2.44 retrieving revision 2.45 diff -C2 -r2.44 -r2.45 *** intobject.c 2000/06/30 23:50:39 2.44 --- intobject.c 2000/06/30 23:58:05 2.45 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: listobject.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Objects/listobject.c,v retrieving revision 2.77 retrieving revision 2.78 diff -C2 -r2.77 -r2.78 *** listobject.c 2000/06/30 23:50:39 2.77 --- listobject.c 2000/06/30 23:58:05 2.78 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: longobject.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Objects/longobject.c,v retrieving revision 1.59 retrieving revision 1.60 diff -C2 -r1.59 -r1.60 *** longobject.c 2000/06/30 23:50:39 1.59 --- longobject.c 2000/06/30 23:58:05 1.60 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: methodobject.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Objects/methodobject.c,v retrieving revision 2.30 retrieving revision 2.31 diff -C2 -r2.30 -r2.31 *** methodobject.c 2000/06/30 23:50:39 2.30 --- methodobject.c 2000/06/30 23:58:05 2.31 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: moduleobject.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Objects/moduleobject.c,v retrieving revision 2.26 retrieving revision 2.27 diff -C2 -r2.26 -r2.27 *** moduleobject.c 2000/06/30 23:50:39 2.26 --- moduleobject.c 2000/06/30 23:58:05 2.27 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: object.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Objects/object.c,v retrieving revision 2.77 retrieving revision 2.78 diff -C2 -r2.77 -r2.78 *** object.c 2000/06/30 23:50:39 2.77 --- object.c 2000/06/30 23:58:05 2.78 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: rangeobject.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Objects/rangeobject.c,v retrieving revision 2.14 retrieving revision 2.15 diff -C2 -r2.14 -r2.15 *** rangeobject.c 2000/06/30 23:50:39 2.14 --- rangeobject.c 2000/06/30 23:58:05 2.15 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: stringobject.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Objects/stringobject.c,v retrieving revision 2.71 retrieving revision 2.72 diff -C2 -r2.71 -r2.72 *** stringobject.c 2000/06/30 23:50:39 2.71 --- stringobject.c 2000/06/30 23:58:05 2.72 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: tupleobject.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Objects/tupleobject.c,v retrieving revision 2.40 retrieving revision 2.41 diff -C2 -r2.40 -r2.41 *** tupleobject.c 2000/06/30 23:50:39 2.40 --- tupleobject.c 2000/06/30 23:58:05 2.41 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: typeobject.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Objects/typeobject.c,v retrieving revision 2.13 retrieving revision 2.14 diff -C2 -r2.13 -r2.14 *** typeobject.c 2000/06/30 23:50:39 2.13 --- typeobject.c 2000/06/30 23:58:05 2.14 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: xxobject.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Objects/xxobject.c,v retrieving revision 2.16 retrieving revision 2.17 diff -C2 -r2.16 -r2.17 *** xxobject.c 2000/06/30 23:50:39 2.16 --- xxobject.c 2000/06/30 23:58:05 2.17 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- From python-dev@python.org Sat Jul 1 00:58:10 2000 From: python-dev@python.org (Guido van Rossum) Date: Fri, 30 Jun 2000 16:58:10 -0700 Subject: [Python-checkins] CVS: python/dist/src/Parser acceler.c,2.13,2.14 assert.h,2.8,2.9 bitset.c,2.8,2.9 firstsets.c,2.8,2.9 grammar.c,2.14,2.15 grammar1.c,2.9,2.10 intrcheck.c,2.31,2.32 listnode.c,2.10,2.11 metagrammar.c,2.8,2.9 myreadline.c,2.19,2.20 node.c,2.9,2.10 parser.c,2.12,2.13 parser.h,2.10,2.11 parsetok.c,2.19,2.20 pgen.c,2.13,2.14 pgen.h,2.10,2.11 pgenmain.c,2.18,2.19 printgrammar.c,2.9,2.10 tokenizer.c,2.43,2.44 tokenizer.h,2.13,2.14 Message-ID: <200006302358.QAA08532@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Parser In directory slayer.i.sourceforge.net:/tmp/cvs-serv8335/Parser Modified Files: acceler.c assert.h bitset.c firstsets.c grammar.c grammar1.c intrcheck.c listnode.c metagrammar.c myreadline.c node.c parser.c parser.h parsetok.c pgen.c pgen.h pgenmain.c printgrammar.c tokenizer.c tokenizer.h Log Message: Change copyright notice - 2nd try. Index: acceler.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Parser/acceler.c,v retrieving revision 2.13 retrieving revision 2.14 diff -C2 -r2.13 -r2.14 *** acceler.c 2000/06/30 23:50:39 2.13 --- acceler.c 2000/06/30 23:58:05 2.14 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: assert.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Parser/assert.h,v retrieving revision 2.8 retrieving revision 2.9 diff -C2 -r2.8 -r2.9 *** assert.h 2000/06/30 23:50:39 2.8 --- assert.h 2000/06/30 23:58:05 2.9 *************** *** 6,14 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 6,9 ---- *************** *** 18,22 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 13,16 ---- Index: bitset.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Parser/bitset.c,v retrieving revision 2.8 retrieving revision 2.9 diff -C2 -r2.8 -r2.9 *** bitset.c 2000/06/30 23:50:39 2.8 --- bitset.c 2000/06/30 23:58:05 2.9 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: firstsets.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Parser/firstsets.c,v retrieving revision 2.8 retrieving revision 2.9 diff -C2 -r2.8 -r2.9 *** firstsets.c 2000/06/30 23:50:39 2.8 --- firstsets.c 2000/06/30 23:58:05 2.9 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: grammar.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Parser/grammar.c,v retrieving revision 2.14 retrieving revision 2.15 diff -C2 -r2.14 -r2.15 *** grammar.c 2000/06/30 23:50:39 2.14 --- grammar.c 2000/06/30 23:58:05 2.15 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: grammar1.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Parser/grammar1.c,v retrieving revision 2.9 retrieving revision 2.10 diff -C2 -r2.9 -r2.10 *** grammar1.c 2000/06/30 23:50:39 2.9 --- grammar1.c 2000/06/30 23:58:05 2.10 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: intrcheck.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Parser/intrcheck.c,v retrieving revision 2.31 retrieving revision 2.32 diff -C2 -r2.31 -r2.32 *** intrcheck.c 2000/06/30 23:50:39 2.31 --- intrcheck.c 2000/06/30 23:58:05 2.32 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: listnode.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Parser/listnode.c,v retrieving revision 2.10 retrieving revision 2.11 diff -C2 -r2.10 -r2.11 *** listnode.c 2000/06/30 23:50:39 2.10 --- listnode.c 2000/06/30 23:58:05 2.11 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: metagrammar.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Parser/metagrammar.c,v retrieving revision 2.8 retrieving revision 2.9 diff -C2 -r2.8 -r2.9 *** metagrammar.c 2000/06/30 23:50:39 2.8 --- metagrammar.c 2000/06/30 23:58:05 2.9 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: myreadline.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Parser/myreadline.c,v retrieving revision 2.19 retrieving revision 2.20 diff -C2 -r2.19 -r2.20 *** myreadline.c 2000/06/30 23:50:39 2.19 --- myreadline.c 2000/06/30 23:58:05 2.20 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: node.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Parser/node.c,v retrieving revision 2.9 retrieving revision 2.10 diff -C2 -r2.9 -r2.10 *** node.c 2000/06/30 23:50:39 2.9 --- node.c 2000/06/30 23:58:05 2.10 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: parser.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Parser/parser.c,v retrieving revision 2.12 retrieving revision 2.13 diff -C2 -r2.12 -r2.13 *** parser.c 2000/06/30 23:50:39 2.12 --- parser.c 2000/06/30 23:58:05 2.13 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: parser.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Parser/parser.h,v retrieving revision 2.10 retrieving revision 2.11 diff -C2 -r2.10 -r2.11 *** parser.h 2000/06/30 23:50:39 2.10 --- parser.h 2000/06/30 23:58:05 2.11 *************** *** 6,14 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 6,9 ---- *************** *** 18,22 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 13,16 ---- Index: parsetok.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Parser/parsetok.c,v retrieving revision 2.19 retrieving revision 2.20 diff -C2 -r2.19 -r2.20 *** parsetok.c 2000/06/30 23:50:39 2.19 --- parsetok.c 2000/06/30 23:58:05 2.20 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: pgen.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Parser/pgen.c,v retrieving revision 2.13 retrieving revision 2.14 diff -C2 -r2.13 -r2.14 *** pgen.c 2000/06/30 23:50:39 2.13 --- pgen.c 2000/06/30 23:58:05 2.14 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: pgen.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Parser/pgen.h,v retrieving revision 2.10 retrieving revision 2.11 diff -C2 -r2.10 -r2.11 *** pgen.h 2000/06/30 23:50:39 2.10 --- pgen.h 2000/06/30 23:58:05 2.11 *************** *** 6,14 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 6,9 ---- *************** *** 18,22 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 13,16 ---- Index: pgenmain.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Parser/pgenmain.c,v retrieving revision 2.18 retrieving revision 2.19 diff -C2 -r2.18 -r2.19 *** pgenmain.c 2000/06/30 23:50:39 2.18 --- pgenmain.c 2000/06/30 23:58:05 2.19 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: printgrammar.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Parser/printgrammar.c,v retrieving revision 2.9 retrieving revision 2.10 diff -C2 -r2.9 -r2.10 *** printgrammar.c 2000/06/30 23:50:39 2.9 --- printgrammar.c 2000/06/30 23:58:05 2.10 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: tokenizer.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Parser/tokenizer.c,v retrieving revision 2.43 retrieving revision 2.44 diff -C2 -r2.43 -r2.44 *** tokenizer.c 2000/06/30 23:50:39 2.43 --- tokenizer.c 2000/06/30 23:58:05 2.44 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: tokenizer.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Parser/tokenizer.h,v retrieving revision 2.13 retrieving revision 2.14 diff -C2 -r2.13 -r2.14 *** tokenizer.h 2000/06/30 23:50:39 2.13 --- tokenizer.h 2000/06/30 23:58:05 2.14 *************** *** 6,14 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 6,9 ---- *************** *** 18,22 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 13,16 ---- From python-dev@python.org Sat Jul 1 00:58:10 2000 From: python-dev@python.org (Guido van Rossum) Date: Fri, 30 Jun 2000 16:58:10 -0700 Subject: [Python-checkins] CVS: python/dist/src/Include Python.h,2.18,2.19 abstract.h,2.19,2.20 bitset.h,2.10,2.11 bufferobject.h,2.3,2.4 ceval.h,2.32,2.33 classobject.h,2.29,2.30 cobject.h,2.6,2.7 compile.h,2.20,2.21 dictobject.h,2.17,2.18 errcode.h,2.10,2.11 eval.h,2.11,2.12 fileobject.h,2.18,2.19 floatobject.h,2.14,2.15 frameobject.h,2.25,2.26 funcobject.h,2.17,2.18 grammar.h,2.11,2.12 import.h,2.23,2.24 intobject.h,2.18,2.19 intrcheck.h,2.6,2.7 listobject.h,2.18,2.19 longintrepr.h,2.6,2.7 longobject.h,2.14,2.15 marshal.h,2.7,2.8 metagrammar.h,2.8,2.9 methodobject.h,2.17,2.18 modsupport.h,2.29,2.30 moduleobject.h,2.14,2.15 mymalloc.h,2.20,2.21 myproto.h,2.7,2.8 myselect.h,2.11,2.12 mytime.h,2.5,2.6 node.h,2.14,2.15 object.h,2.58,2.59 objimpl.h,2.18,2.19 opcode.h,2.24,2.25 osdefs.h,2.11,2.12 parsetok.h,2.11,2.12 patchlevel.h,2.37,2.38 pgenheaders.h,2.19,2.20 pydebug.h,2.12,2.13 pyerrors.h,2.36,2.37 pystate.h,2.10,2.11 pythonrun.h,2.29,2.30 pythread.h,2.14,2.15 rangeobject.h,2.12,2.13 string! object.h,2.18,2.19 structmember.h,2.13,2.14 sysmodule.h,2.18,2.19 token.h,2.13,2.14 traceback.h,2.15,2.16 tupleobject.h,2.21,2.22 Message-ID: <200006302358.QAA08569@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Include In directory slayer.i.sourceforge.net:/tmp/cvs-serv8335/Include Modified Files: Python.h abstract.h bitset.h bufferobject.h ceval.h classobject.h cobject.h compile.h dictobject.h errcode.h eval.h fileobject.h floatobject.h frameobject.h funcobject.h grammar.h import.h intobject.h intrcheck.h listobject.h longintrepr.h longobject.h marshal.h metagrammar.h methodobject.h modsupport.h moduleobject.h mymalloc.h myproto.h myselect.h mytime.h node.h object.h objimpl.h opcode.h osdefs.h parsetok.h patchlevel.h pgenheaders.h pydebug.h pyerrors.h pystate.h pythonrun.h pythread.h rangeobject.h stringobject.h structmember.h sysmodule.h token.h traceback.h tupleobject.h Log Message: Change copyright notice - 2nd try. Index: Python.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/Python.h,v retrieving revision 2.18 retrieving revision 2.19 diff -C2 -r2.18 -r2.19 *** Python.h 2000/06/30 23:50:38 2.18 --- Python.h 2000/06/30 23:58:04 2.19 *************** *** 4,12 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 4,7 ---- *************** *** 16,20 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 11,14 ---- Index: abstract.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/abstract.h,v retrieving revision 2.19 retrieving revision 2.20 diff -C2 -r2.19 -r2.20 *** abstract.h 2000/06/30 23:50:38 2.19 --- abstract.h 2000/06/30 23:58:04 2.20 *************** *** 6,14 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 6,9 ---- *************** *** 18,22 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 13,16 ---- Index: bitset.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/bitset.h,v retrieving revision 2.10 retrieving revision 2.11 diff -C2 -r2.10 -r2.11 *** bitset.h 2000/06/30 23:50:38 2.10 --- bitset.h 2000/06/30 23:58:04 2.11 *************** *** 6,14 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 6,9 ---- *************** *** 18,22 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 13,16 ---- Index: bufferobject.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/bufferobject.h,v retrieving revision 2.3 retrieving revision 2.4 diff -C2 -r2.3 -r2.4 *** bufferobject.h 2000/06/30 23:50:38 2.3 --- bufferobject.h 2000/06/30 23:58:04 2.4 *************** *** 6,14 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 6,9 ---- *************** *** 18,22 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 13,16 ---- Index: ceval.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/ceval.h,v retrieving revision 2.32 retrieving revision 2.33 diff -C2 -r2.32 -r2.33 *** ceval.h 2000/06/30 23:50:38 2.32 --- ceval.h 2000/06/30 23:58:04 2.33 *************** *** 6,14 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 6,9 ---- *************** *** 18,22 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 13,16 ---- Index: classobject.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/classobject.h,v retrieving revision 2.29 retrieving revision 2.30 diff -C2 -r2.29 -r2.30 *** classobject.h 2000/06/30 23:50:38 2.29 --- classobject.h 2000/06/30 23:58:04 2.30 *************** *** 6,14 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 6,9 ---- *************** *** 18,22 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 13,16 ---- Index: cobject.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/cobject.h,v retrieving revision 2.6 retrieving revision 2.7 diff -C2 -r2.6 -r2.7 *** cobject.h 2000/06/30 23:50:38 2.6 --- cobject.h 2000/06/30 23:58:04 2.7 *************** *** 6,14 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 6,9 ---- *************** *** 18,22 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 13,16 ---- Index: compile.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/compile.h,v retrieving revision 2.20 retrieving revision 2.21 diff -C2 -r2.20 -r2.21 *** compile.h 2000/06/30 23:50:38 2.20 --- compile.h 2000/06/30 23:58:04 2.21 *************** *** 6,14 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 6,9 ---- *************** *** 18,22 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 13,16 ---- Index: dictobject.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/dictobject.h,v retrieving revision 2.17 retrieving revision 2.18 diff -C2 -r2.17 -r2.18 *** dictobject.h 2000/06/30 23:50:38 2.17 --- dictobject.h 2000/06/30 23:58:04 2.18 *************** *** 6,14 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 6,9 ---- *************** *** 18,22 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 13,16 ---- Index: errcode.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/errcode.h,v retrieving revision 2.10 retrieving revision 2.11 diff -C2 -r2.10 -r2.11 *** errcode.h 2000/06/30 23:50:38 2.10 --- errcode.h 2000/06/30 23:58:04 2.11 *************** *** 6,14 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 6,9 ---- *************** *** 18,22 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 13,16 ---- Index: eval.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/eval.h,v retrieving revision 2.11 retrieving revision 2.12 diff -C2 -r2.11 -r2.12 *** eval.h 2000/06/30 23:50:38 2.11 --- eval.h 2000/06/30 23:58:04 2.12 *************** *** 6,14 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 6,9 ---- *************** *** 18,22 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 13,16 ---- Index: fileobject.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/fileobject.h,v retrieving revision 2.18 retrieving revision 2.19 diff -C2 -r2.18 -r2.19 *** fileobject.h 2000/06/30 23:50:38 2.18 --- fileobject.h 2000/06/30 23:58:04 2.19 *************** *** 6,14 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 6,9 ---- *************** *** 18,22 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 13,16 ---- Index: floatobject.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/floatobject.h,v retrieving revision 2.14 retrieving revision 2.15 diff -C2 -r2.14 -r2.15 *** floatobject.h 2000/06/30 23:50:38 2.14 --- floatobject.h 2000/06/30 23:58:04 2.15 *************** *** 6,14 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 6,9 ---- *************** *** 18,22 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 13,16 ---- Index: frameobject.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/frameobject.h,v retrieving revision 2.25 retrieving revision 2.26 diff -C2 -r2.25 -r2.26 *** frameobject.h 2000/06/30 23:50:38 2.25 --- frameobject.h 2000/06/30 23:58:04 2.26 *************** *** 6,14 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 6,9 ---- *************** *** 18,22 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 13,16 ---- Index: funcobject.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/funcobject.h,v retrieving revision 2.17 retrieving revision 2.18 diff -C2 -r2.17 -r2.18 *** funcobject.h 2000/06/30 23:50:38 2.17 --- funcobject.h 2000/06/30 23:58:04 2.18 *************** *** 6,14 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 6,9 ---- *************** *** 18,22 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 13,16 ---- Index: grammar.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/grammar.h,v retrieving revision 2.11 retrieving revision 2.12 diff -C2 -r2.11 -r2.12 *** grammar.h 2000/06/30 23:50:38 2.11 --- grammar.h 2000/06/30 23:58:04 2.12 *************** *** 6,14 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 6,9 ---- *************** *** 18,22 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 13,16 ---- Index: import.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/import.h,v retrieving revision 2.23 retrieving revision 2.24 diff -C2 -r2.23 -r2.24 *** import.h 2000/06/30 23:50:38 2.23 --- import.h 2000/06/30 23:58:04 2.24 *************** *** 6,14 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 6,9 ---- *************** *** 18,22 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 13,16 ---- Index: intobject.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/intobject.h,v retrieving revision 2.18 retrieving revision 2.19 diff -C2 -r2.18 -r2.19 *** intobject.h 2000/06/30 23:50:38 2.18 --- intobject.h 2000/06/30 23:58:04 2.19 *************** *** 6,14 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 6,9 ---- *************** *** 18,22 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 13,16 ---- Index: intrcheck.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/intrcheck.h,v retrieving revision 2.6 retrieving revision 2.7 diff -C2 -r2.6 -r2.7 *** intrcheck.h 2000/06/30 23:50:38 2.6 --- intrcheck.h 2000/06/30 23:58:04 2.7 *************** *** 6,14 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 6,9 ---- *************** *** 18,22 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 13,16 ---- Index: listobject.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/listobject.h,v retrieving revision 2.18 retrieving revision 2.19 diff -C2 -r2.18 -r2.19 *** listobject.h 2000/06/30 23:50:38 2.18 --- listobject.h 2000/06/30 23:58:04 2.19 *************** *** 6,14 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 6,9 ---- *************** *** 18,22 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 13,16 ---- Index: longintrepr.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/longintrepr.h,v retrieving revision 2.6 retrieving revision 2.7 diff -C2 -r2.6 -r2.7 *** longintrepr.h 2000/06/30 23:50:38 2.6 --- longintrepr.h 2000/06/30 23:58:04 2.7 *************** *** 6,14 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 6,9 ---- *************** *** 18,22 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 13,16 ---- Index: longobject.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/longobject.h,v retrieving revision 2.14 retrieving revision 2.15 diff -C2 -r2.14 -r2.15 *** longobject.h 2000/06/30 23:50:38 2.14 --- longobject.h 2000/06/30 23:58:04 2.15 *************** *** 6,14 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 6,9 ---- *************** *** 18,22 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 13,16 ---- Index: marshal.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/marshal.h,v retrieving revision 2.7 retrieving revision 2.8 diff -C2 -r2.7 -r2.8 *** marshal.h 2000/06/30 23:50:38 2.7 --- marshal.h 2000/06/30 23:58:04 2.8 *************** *** 6,14 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 6,9 ---- *************** *** 18,22 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 13,16 ---- Index: metagrammar.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/metagrammar.h,v retrieving revision 2.8 retrieving revision 2.9 diff -C2 -r2.8 -r2.9 *** metagrammar.h 2000/06/30 23:50:38 2.8 --- metagrammar.h 2000/06/30 23:58:04 2.9 *************** *** 6,14 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 6,9 ---- *************** *** 18,22 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 13,16 ---- Index: methodobject.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/methodobject.h,v retrieving revision 2.17 retrieving revision 2.18 diff -C2 -r2.17 -r2.18 *** methodobject.h 2000/06/30 23:50:38 2.17 --- methodobject.h 2000/06/30 23:58:04 2.18 *************** *** 6,14 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 6,9 ---- *************** *** 18,22 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 13,16 ---- Index: modsupport.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/modsupport.h,v retrieving revision 2.29 retrieving revision 2.30 diff -C2 -r2.29 -r2.30 *** modsupport.h 2000/06/30 23:50:38 2.29 --- modsupport.h 2000/06/30 23:58:04 2.30 *************** *** 6,14 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 6,9 ---- *************** *** 18,22 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 13,16 ---- Index: moduleobject.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/moduleobject.h,v retrieving revision 2.14 retrieving revision 2.15 diff -C2 -r2.14 -r2.15 *** moduleobject.h 2000/06/30 23:50:38 2.14 --- moduleobject.h 2000/06/30 23:58:04 2.15 *************** *** 6,14 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 6,9 ---- *************** *** 18,22 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 13,16 ---- Index: mymalloc.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/mymalloc.h,v retrieving revision 2.20 retrieving revision 2.21 diff -C2 -r2.20 -r2.21 *** mymalloc.h 2000/06/30 23:50:38 2.20 --- mymalloc.h 2000/06/30 23:58:04 2.21 *************** *** 2,10 **** #define Py_MYMALLOC_H /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 2,5 ---- *************** *** 14,18 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 9,12 ---- Index: myproto.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/myproto.h,v retrieving revision 2.7 retrieving revision 2.8 diff -C2 -r2.7 -r2.8 *** myproto.h 2000/06/30 23:50:38 2.7 --- myproto.h 2000/06/30 23:58:04 2.8 *************** *** 6,14 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 6,9 ---- *************** *** 18,22 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 13,16 ---- Index: myselect.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/myselect.h,v retrieving revision 2.11 retrieving revision 2.12 diff -C2 -r2.11 -r2.12 *** myselect.h 2000/06/30 23:50:38 2.11 --- myselect.h 2000/06/30 23:58:04 2.12 *************** *** 6,14 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 6,9 ---- *************** *** 18,22 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 13,16 ---- Index: mytime.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/mytime.h,v retrieving revision 2.5 retrieving revision 2.6 diff -C2 -r2.5 -r2.6 *** mytime.h 2000/06/30 23:50:38 2.5 --- mytime.h 2000/06/30 23:58:04 2.6 *************** *** 6,14 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 6,9 ---- *************** *** 18,22 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 13,16 ---- Index: node.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/node.h,v retrieving revision 2.14 retrieving revision 2.15 diff -C2 -r2.14 -r2.15 *** node.h 2000/06/30 23:50:38 2.14 --- node.h 2000/06/30 23:58:04 2.15 *************** *** 6,14 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 6,9 ---- *************** *** 18,22 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 13,16 ---- Index: object.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/object.h,v retrieving revision 2.58 retrieving revision 2.59 diff -C2 -r2.58 -r2.59 *** object.h 2000/06/30 23:50:38 2.58 --- object.h 2000/06/30 23:58:04 2.59 *************** *** 6,14 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 6,9 ---- *************** *** 18,22 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 13,16 ---- Index: objimpl.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/objimpl.h,v retrieving revision 2.18 retrieving revision 2.19 diff -C2 -r2.18 -r2.19 *** objimpl.h 2000/06/30 23:50:38 2.18 --- objimpl.h 2000/06/30 23:58:04 2.19 *************** *** 6,14 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 6,9 ---- *************** *** 18,22 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 13,16 ---- Index: opcode.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/opcode.h,v retrieving revision 2.24 retrieving revision 2.25 diff -C2 -r2.24 -r2.25 *** opcode.h 2000/06/30 23:50:38 2.24 --- opcode.h 2000/06/30 23:58:04 2.25 *************** *** 6,14 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 6,9 ---- *************** *** 18,22 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 13,16 ---- Index: osdefs.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/osdefs.h,v retrieving revision 2.11 retrieving revision 2.12 diff -C2 -r2.11 -r2.12 *** osdefs.h 2000/06/30 23:50:38 2.11 --- osdefs.h 2000/06/30 23:58:04 2.12 *************** *** 6,14 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 6,9 ---- *************** *** 18,22 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 13,16 ---- Index: parsetok.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/parsetok.h,v retrieving revision 2.11 retrieving revision 2.12 diff -C2 -r2.11 -r2.12 *** parsetok.h 2000/06/30 23:50:38 2.11 --- parsetok.h 2000/06/30 23:58:04 2.12 *************** *** 6,14 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 6,9 ---- *************** *** 18,22 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 13,16 ---- Index: patchlevel.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/patchlevel.h,v retrieving revision 2.37 retrieving revision 2.38 diff -C2 -r2.37 -r2.38 *** patchlevel.h 2000/06/30 23:50:38 2.37 --- patchlevel.h 2000/06/30 23:58:04 2.38 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: pgenheaders.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/pgenheaders.h,v retrieving revision 2.19 retrieving revision 2.20 diff -C2 -r2.19 -r2.20 *** pgenheaders.h 2000/06/30 23:50:38 2.19 --- pgenheaders.h 2000/06/30 23:58:04 2.20 *************** *** 6,14 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 6,9 ---- *************** *** 18,22 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 13,16 ---- Index: pydebug.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/pydebug.h,v retrieving revision 2.12 retrieving revision 2.13 diff -C2 -r2.12 -r2.13 *** pydebug.h 2000/06/30 23:50:38 2.12 --- pydebug.h 2000/06/30 23:58:04 2.13 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: pyerrors.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/pyerrors.h,v retrieving revision 2.36 retrieving revision 2.37 diff -C2 -r2.36 -r2.37 *** pyerrors.h 2000/06/30 23:50:38 2.36 --- pyerrors.h 2000/06/30 23:58:04 2.37 *************** *** 6,14 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 6,9 ---- *************** *** 18,22 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 13,16 ---- Index: pystate.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/pystate.h,v retrieving revision 2.10 retrieving revision 2.11 diff -C2 -r2.10 -r2.11 *** pystate.h 2000/06/30 23:50:38 2.10 --- pystate.h 2000/06/30 23:58:04 2.11 *************** *** 6,14 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 6,9 ---- *************** *** 18,22 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 13,16 ---- Index: pythonrun.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/pythonrun.h,v retrieving revision 2.29 retrieving revision 2.30 diff -C2 -r2.29 -r2.30 *** pythonrun.h 2000/06/30 23:50:38 2.29 --- pythonrun.h 2000/06/30 23:58:04 2.30 *************** *** 6,14 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 6,9 ---- *************** *** 18,22 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 13,16 ---- Index: pythread.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/pythread.h,v retrieving revision 2.14 retrieving revision 2.15 diff -C2 -r2.14 -r2.15 *** pythread.h 2000/06/30 23:50:38 2.14 --- pythread.h 2000/06/30 23:58:04 2.15 *************** *** 3,11 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 3,6 ---- *************** *** 15,19 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 10,13 ---- Index: rangeobject.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/rangeobject.h,v retrieving revision 2.12 retrieving revision 2.13 diff -C2 -r2.12 -r2.13 *** rangeobject.h 2000/06/30 23:50:38 2.12 --- rangeobject.h 2000/06/30 23:58:04 2.13 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: stringobject.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/stringobject.h,v retrieving revision 2.18 retrieving revision 2.19 diff -C2 -r2.18 -r2.19 *** stringobject.h 2000/06/30 23:50:38 2.18 --- stringobject.h 2000/06/30 23:58:04 2.19 *************** *** 6,14 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 6,9 ---- *************** *** 18,22 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 13,16 ---- Index: structmember.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/structmember.h,v retrieving revision 2.13 retrieving revision 2.14 diff -C2 -r2.13 -r2.14 *** structmember.h 2000/06/30 23:50:38 2.13 --- structmember.h 2000/06/30 23:58:04 2.14 *************** *** 6,14 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 6,9 ---- *************** *** 18,22 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 13,16 ---- Index: sysmodule.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/sysmodule.h,v retrieving revision 2.18 retrieving revision 2.19 diff -C2 -r2.18 -r2.19 *** sysmodule.h 2000/06/30 23:50:38 2.18 --- sysmodule.h 2000/06/30 23:58:04 2.19 *************** *** 6,14 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 6,9 ---- *************** *** 18,22 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 13,16 ---- Index: token.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/token.h,v retrieving revision 2.13 retrieving revision 2.14 diff -C2 -r2.13 -r2.14 *** token.h 2000/06/30 23:50:38 2.13 --- token.h 2000/06/30 23:58:04 2.14 *************** *** 6,14 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 6,9 ---- *************** *** 18,22 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 13,16 ---- Index: traceback.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/traceback.h,v retrieving revision 2.15 retrieving revision 2.16 diff -C2 -r2.15 -r2.16 *** traceback.h 2000/06/30 23:50:38 2.15 --- traceback.h 2000/06/30 23:58:04 2.16 *************** *** 6,14 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 6,9 ---- *************** *** 18,22 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 13,16 ---- Index: tupleobject.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/tupleobject.h,v retrieving revision 2.21 retrieving revision 2.22 diff -C2 -r2.21 -r2.22 *** tupleobject.h 2000/06/30 23:50:38 2.21 --- tupleobject.h 2000/06/30 23:58:04 2.22 *************** *** 6,14 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 6,9 ---- *************** *** 18,22 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 13,16 ---- From python-dev@python.org Sat Jul 1 00:58:11 2000 From: python-dev@python.org (Guido van Rossum) Date: Fri, 30 Jun 2000 16:58:11 -0700 Subject: [Python-checkins] CVS: python/dist/src/Python atof.c,2.4,2.5 bltinmodule.c,2.164,2.165 ceval.c,2.181,2.182 compile.c,2.111,2.112 dynload_aix.c,2.4,2.5 dynload_beos.c,2.3,2.4 dynload_dl.c,2.3,2.4 dynload_hpux.c,2.3,2.4 dynload_mac.c,2.5,2.6 dynload_next.c,2.4,2.5 dynload_os2.c,2.3,2.4 dynload_shlib.c,2.3,2.4 dynload_stub.c,2.2,2.3 dynload_win.c,2.4,2.5 errors.c,2.46,2.47 fmod.c,2.10,2.11 frozen.c,1.7,1.8 frozenmain.c,2.21,2.22 getargs.c,2.35,2.36 getcompiler.c,1.6,1.7 getcwd.c,1.11,1.12 getmtime.c,2.11,2.12 getplatform.c,1.5,1.6 getversion.c,1.11,1.12 import.c,2.137,2.138 importdl.c,2.65,2.66 importdl.h,2.13,2.14 marshal.c,1.50,1.51 memmove.c,2.5,2.6 modsupport.c,2.44,2.45 mystrtoul.c,2.18,2.19 pystate.c,2.10,2.11 pythonrun.c,2.99,2.100 sigcheck.c,2.5,2.6 strerror.c,2.7,2.8 structmember.c,2.15,2.16 sysmodule.c,2.67,2.68 thread.c,2.30,2.31 thread_beos.h,2.4,2.5 thread_cthread.h,2.10,2.11 thread_foobar.h,2.8,2.9 thread_lwp.h,2.9,2.10 thread_nt.h,2.13,2.14 thread_pth.h,2.3,2.4 thread_pth! read.h,2.26,2.27 thread_sgi.h,2.11,2.12 thread_solaris.h,2.12,2.13 thread_wince.h,2.3,2.4 traceback.c,2.29,2.30 Message-ID: <200006302358.QAA08603@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Python In directory slayer.i.sourceforge.net:/tmp/cvs-serv8335/Python Modified Files: atof.c bltinmodule.c ceval.c compile.c dynload_aix.c dynload_beos.c dynload_dl.c dynload_hpux.c dynload_mac.c dynload_next.c dynload_os2.c dynload_shlib.c dynload_stub.c dynload_win.c errors.c fmod.c frozen.c frozenmain.c getargs.c getcompiler.c getcwd.c getmtime.c getplatform.c getversion.c import.c importdl.c importdl.h marshal.c memmove.c modsupport.c mystrtoul.c pystate.c pythonrun.c sigcheck.c strerror.c structmember.c sysmodule.c thread.c thread_beos.h thread_cthread.h thread_foobar.h thread_lwp.h thread_nt.h thread_pth.h thread_pthread.h thread_sgi.h thread_solaris.h thread_wince.h traceback.c Log Message: Change copyright notice - 2nd try. Index: atof.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/atof.c,v retrieving revision 2.4 retrieving revision 2.5 diff -C2 -r2.4 -r2.5 *** atof.c 2000/06/30 23:50:39 2.4 --- atof.c 2000/06/30 23:58:05 2.5 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: bltinmodule.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/bltinmodule.c,v retrieving revision 2.164 retrieving revision 2.165 diff -C2 -r2.164 -r2.165 *** bltinmodule.c 2000/06/30 23:50:39 2.164 --- bltinmodule.c 2000/06/30 23:58:05 2.165 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: ceval.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/ceval.c,v retrieving revision 2.181 retrieving revision 2.182 diff -C2 -r2.181 -r2.182 *** ceval.c 2000/06/30 23:50:39 2.181 --- ceval.c 2000/06/30 23:58:05 2.182 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: compile.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/compile.c,v retrieving revision 2.111 retrieving revision 2.112 diff -C2 -r2.111 -r2.112 *** compile.c 2000/06/30 23:50:39 2.111 --- compile.c 2000/06/30 23:58:06 2.112 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: dynload_aix.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/dynload_aix.c,v retrieving revision 2.4 retrieving revision 2.5 diff -C2 -r2.4 -r2.5 *** dynload_aix.c 2000/06/30 23:50:39 2.4 --- dynload_aix.c 2000/06/30 23:58:06 2.5 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: dynload_beos.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/dynload_beos.c,v retrieving revision 2.3 retrieving revision 2.4 diff -C2 -r2.3 -r2.4 *** dynload_beos.c 2000/06/30 23:50:39 2.3 --- dynload_beos.c 2000/06/30 23:58:06 2.4 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: dynload_dl.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/dynload_dl.c,v retrieving revision 2.3 retrieving revision 2.4 diff -C2 -r2.3 -r2.4 *** dynload_dl.c 2000/06/30 23:50:39 2.3 --- dynload_dl.c 2000/06/30 23:58:06 2.4 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: dynload_hpux.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/dynload_hpux.c,v retrieving revision 2.3 retrieving revision 2.4 diff -C2 -r2.3 -r2.4 *** dynload_hpux.c 2000/06/30 23:50:39 2.3 --- dynload_hpux.c 2000/06/30 23:58:06 2.4 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: dynload_mac.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/dynload_mac.c,v retrieving revision 2.5 retrieving revision 2.6 diff -C2 -r2.5 -r2.6 *** dynload_mac.c 2000/06/30 23:50:39 2.5 --- dynload_mac.c 2000/06/30 23:58:06 2.6 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: dynload_next.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/dynload_next.c,v retrieving revision 2.4 retrieving revision 2.5 diff -C2 -r2.4 -r2.5 *** dynload_next.c 2000/06/30 23:50:39 2.4 --- dynload_next.c 2000/06/30 23:58:06 2.5 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: dynload_os2.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/dynload_os2.c,v retrieving revision 2.3 retrieving revision 2.4 diff -C2 -r2.3 -r2.4 *** dynload_os2.c 2000/06/30 23:50:39 2.3 --- dynload_os2.c 2000/06/30 23:58:06 2.4 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: dynload_shlib.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/dynload_shlib.c,v retrieving revision 2.3 retrieving revision 2.4 diff -C2 -r2.3 -r2.4 *** dynload_shlib.c 2000/06/30 23:50:39 2.3 --- dynload_shlib.c 2000/06/30 23:58:06 2.4 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: dynload_stub.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/dynload_stub.c,v retrieving revision 2.2 retrieving revision 2.3 diff -C2 -r2.2 -r2.3 *** dynload_stub.c 2000/06/30 23:50:39 2.2 --- dynload_stub.c 2000/06/30 23:58:06 2.3 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: dynload_win.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/dynload_win.c,v retrieving revision 2.4 retrieving revision 2.5 diff -C2 -r2.4 -r2.5 *** dynload_win.c 2000/06/30 23:50:39 2.4 --- dynload_win.c 2000/06/30 23:58:06 2.5 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: errors.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/errors.c,v retrieving revision 2.46 retrieving revision 2.47 diff -C2 -r2.46 -r2.47 *** errors.c 2000/06/30 23:50:39 2.46 --- errors.c 2000/06/30 23:58:06 2.47 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: fmod.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/fmod.c,v retrieving revision 2.10 retrieving revision 2.11 diff -C2 -r2.10 -r2.11 *** fmod.c 2000/06/30 23:50:39 2.10 --- fmod.c 2000/06/30 23:58:06 2.11 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: frozen.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/frozen.c,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -r1.7 -r1.8 *** frozen.c 2000/06/30 23:50:39 1.7 --- frozen.c 2000/06/30 23:58:06 1.8 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: frozenmain.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/frozenmain.c,v retrieving revision 2.21 retrieving revision 2.22 diff -C2 -r2.21 -r2.22 *** frozenmain.c 2000/06/30 23:50:39 2.21 --- frozenmain.c 2000/06/30 23:58:06 2.22 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: getargs.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/getargs.c,v retrieving revision 2.35 retrieving revision 2.36 diff -C2 -r2.35 -r2.36 *** getargs.c 2000/06/30 23:50:39 2.35 --- getargs.c 2000/06/30 23:58:06 2.36 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: getcompiler.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/getcompiler.c,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** getcompiler.c 2000/06/30 23:50:40 1.6 --- getcompiler.c 2000/06/30 23:58:06 1.7 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: getcwd.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/getcwd.c,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -r1.11 -r1.12 *** getcwd.c 2000/06/30 23:50:40 1.11 --- getcwd.c 2000/06/30 23:58:06 1.12 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: getmtime.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/getmtime.c,v retrieving revision 2.11 retrieving revision 2.12 diff -C2 -r2.11 -r2.12 *** getmtime.c 2000/06/30 23:50:40 2.11 --- getmtime.c 2000/06/30 23:58:06 2.12 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: getplatform.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/getplatform.c,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** getplatform.c 2000/06/30 23:50:40 1.5 --- getplatform.c 2000/06/30 23:58:06 1.6 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: getversion.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/getversion.c,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -r1.11 -r1.12 *** getversion.c 2000/06/30 23:50:40 1.11 --- getversion.c 2000/06/30 23:58:06 1.12 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: import.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/import.c,v retrieving revision 2.137 retrieving revision 2.138 diff -C2 -r2.137 -r2.138 *** import.c 2000/06/30 23:50:40 2.137 --- import.c 2000/06/30 23:58:06 2.138 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: importdl.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/importdl.c,v retrieving revision 2.65 retrieving revision 2.66 diff -C2 -r2.65 -r2.66 *** importdl.c 2000/06/30 23:50:40 2.65 --- importdl.c 2000/06/30 23:58:06 2.66 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: importdl.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/importdl.h,v retrieving revision 2.13 retrieving revision 2.14 diff -C2 -r2.13 -r2.14 *** importdl.h 2000/06/30 23:50:40 2.13 --- importdl.h 2000/06/30 23:58:06 2.14 *************** *** 7,15 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 7,10 ---- *************** *** 19,23 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 14,17 ---- Index: marshal.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/marshal.c,v retrieving revision 1.50 retrieving revision 1.51 diff -C2 -r1.50 -r1.51 *** marshal.c 2000/06/30 23:50:40 1.50 --- marshal.c 2000/06/30 23:58:06 1.51 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: memmove.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/memmove.c,v retrieving revision 2.5 retrieving revision 2.6 diff -C2 -r2.5 -r2.6 *** memmove.c 2000/06/30 23:50:40 2.5 --- memmove.c 2000/06/30 23:58:06 2.6 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: modsupport.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/modsupport.c,v retrieving revision 2.44 retrieving revision 2.45 diff -C2 -r2.44 -r2.45 *** modsupport.c 2000/06/30 23:50:40 2.44 --- modsupport.c 2000/06/30 23:58:06 2.45 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: mystrtoul.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/mystrtoul.c,v retrieving revision 2.18 retrieving revision 2.19 diff -C2 -r2.18 -r2.19 *** mystrtoul.c 2000/06/30 23:50:40 2.18 --- mystrtoul.c 2000/06/30 23:58:06 2.19 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: pystate.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/pystate.c,v retrieving revision 2.10 retrieving revision 2.11 diff -C2 -r2.10 -r2.11 *** pystate.c 2000/06/30 23:50:40 2.10 --- pystate.c 2000/06/30 23:58:06 2.11 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: pythonrun.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/pythonrun.c,v retrieving revision 2.99 retrieving revision 2.100 diff -C2 -r2.99 -r2.100 *** pythonrun.c 2000/06/30 23:50:40 2.99 --- pythonrun.c 2000/06/30 23:58:06 2.100 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: sigcheck.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/sigcheck.c,v retrieving revision 2.5 retrieving revision 2.6 diff -C2 -r2.5 -r2.6 *** sigcheck.c 2000/06/30 23:50:40 2.5 --- sigcheck.c 2000/06/30 23:58:06 2.6 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: strerror.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/strerror.c,v retrieving revision 2.7 retrieving revision 2.8 diff -C2 -r2.7 -r2.8 *** strerror.c 2000/06/30 23:50:40 2.7 --- strerror.c 2000/06/30 23:58:06 2.8 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: structmember.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/structmember.c,v retrieving revision 2.15 retrieving revision 2.16 diff -C2 -r2.15 -r2.16 *** structmember.c 2000/06/30 23:50:40 2.15 --- structmember.c 2000/06/30 23:58:06 2.16 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: sysmodule.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/sysmodule.c,v retrieving revision 2.67 retrieving revision 2.68 diff -C2 -r2.67 -r2.68 *** sysmodule.c 2000/06/30 23:50:40 2.67 --- sysmodule.c 2000/06/30 23:58:06 2.68 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: thread.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/thread.c,v retrieving revision 2.30 retrieving revision 2.31 diff -C2 -r2.30 -r2.31 *** thread.c 2000/06/30 23:50:40 2.30 --- thread.c 2000/06/30 23:58:06 2.31 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: thread_beos.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/thread_beos.h,v retrieving revision 2.4 retrieving revision 2.5 diff -C2 -r2.4 -r2.5 *** thread_beos.h 2000/06/30 23:50:40 2.4 --- thread_beos.h 2000/06/30 23:58:06 2.5 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - BeOS thread support by Chris Herborth (chrish@qnx.com) ******************************************************************/ --- 7,10 ---- Index: thread_cthread.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/thread_cthread.h,v retrieving revision 2.10 retrieving revision 2.11 diff -C2 -r2.10 -r2.11 *** thread_cthread.h 2000/06/30 23:50:40 2.10 --- thread_cthread.h 2000/06/30 23:58:06 2.11 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: thread_foobar.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/thread_foobar.h,v retrieving revision 2.8 retrieving revision 2.9 diff -C2 -r2.8 -r2.9 *** thread_foobar.h 2000/06/30 23:50:40 2.8 --- thread_foobar.h 2000/06/30 23:58:06 2.9 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: thread_lwp.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/thread_lwp.h,v retrieving revision 2.9 retrieving revision 2.10 diff -C2 -r2.9 -r2.10 *** thread_lwp.h 2000/06/30 23:50:40 2.9 --- thread_lwp.h 2000/06/30 23:58:06 2.10 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: thread_nt.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/thread_nt.h,v retrieving revision 2.13 retrieving revision 2.14 diff -C2 -r2.13 -r2.14 *** thread_nt.h 2000/06/30 23:50:40 2.13 --- thread_nt.h 2000/06/30 23:58:06 2.14 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: thread_pth.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/thread_pth.h,v retrieving revision 2.3 retrieving revision 2.4 diff -C2 -r2.3 -r2.4 *** thread_pth.h 2000/06/30 23:50:40 2.3 --- thread_pth.h 2000/06/30 23:58:06 2.4 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: thread_pthread.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/thread_pthread.h,v retrieving revision 2.26 retrieving revision 2.27 diff -C2 -r2.26 -r2.27 *** thread_pthread.h 2000/06/30 23:50:40 2.26 --- thread_pthread.h 2000/06/30 23:58:06 2.27 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: thread_sgi.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/thread_sgi.h,v retrieving revision 2.11 retrieving revision 2.12 diff -C2 -r2.11 -r2.12 *** thread_sgi.h 2000/06/30 23:50:40 2.11 --- thread_sgi.h 2000/06/30 23:58:06 2.12 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: thread_solaris.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/thread_solaris.h,v retrieving revision 2.12 retrieving revision 2.13 diff -C2 -r2.12 -r2.13 *** thread_solaris.h 2000/06/30 23:50:40 2.12 --- thread_solaris.h 2000/06/30 23:58:06 2.13 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: thread_wince.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/thread_wince.h,v retrieving revision 2.3 retrieving revision 2.4 diff -C2 -r2.3 -r2.4 *** thread_wince.h 2000/06/30 23:50:40 2.3 --- thread_wince.h 2000/06/30 23:58:06 2.4 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: traceback.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/traceback.c,v retrieving revision 2.29 retrieving revision 2.30 diff -C2 -r2.29 -r2.30 *** traceback.c 2000/06/30 23:50:40 2.29 --- traceback.c 2000/06/30 23:58:06 2.30 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- From python-dev@python.org Sat Jul 1 00:58:11 2000 From: python-dev@python.org (Guido van Rossum) Date: Fri, 30 Jun 2000 16:58:11 -0700 Subject: [Python-checkins] CVS: python/dist/src/Modules almodule.c,1.25,1.26 arraymodule.c,2.43,2.44 audioop.c,1.37,1.38 bsddbmodule.c,1.20,1.21 cdmodule.c,1.20,1.21 cgensupport.c,2.12,2.13 cgensupport.h,2.12,2.13 clmodule.c,2.21,2.22 config.c.in,1.68,1.69 cstubs,2.19,2.20 dbmmodule.c,2.18,2.19 dlmodule.c,2.8,2.9 errnomodule.c,2.10,2.11 fcntlmodule.c,2.20,2.21 flmodule.c,1.38,1.39 fmmodule.c,1.12,1.13 gdbmmodule.c,2.23,2.24 getpath.c,1.24,1.25 glmodule.c,2.4,2.5 grpmodule.c,2.10,2.11 imageop.c,2.21,2.22 imgfile.c,1.23,1.24 main.c,1.39,1.40 mathmodule.c,2.46,2.47 md5module.c,2.16,2.17 mpzmodule.c,2.26,2.27 newmodule.c,2.22,2.23 parsermodule.c,2.40,2.41 posixmodule.c,2.140,2.141 pwdmodule.c,1.18,1.19 regexmodule.c,1.35,1.36 resource.c,2.11,2.12 selectmodule.c,2.34,2.35 sgimodule.c,1.12,1.13 signalmodule.c,2.42,2.43 socketmodule.c,1.110,1.111 stropmodule.c,2.64,2.65 structmodule.c,2.32,2.33 sunaudiodev.c,1.18,1.19 svmodule.c,2.12,2.13 threadmodule.c,2.32,2.33 timemodule.c,2.87,2.88 xxmodule.c,2.! 17,2.18 yuv.h,2.6,2.7 yuvconvert.c,2.5,2.6 Message-ID: <200006302358.QAA08590@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Modules In directory slayer.i.sourceforge.net:/tmp/cvs-serv8335/Modules Modified Files: almodule.c arraymodule.c audioop.c bsddbmodule.c cdmodule.c cgensupport.c cgensupport.h clmodule.c config.c.in cstubs dbmmodule.c dlmodule.c errnomodule.c fcntlmodule.c flmodule.c fmmodule.c gdbmmodule.c getpath.c glmodule.c grpmodule.c imageop.c imgfile.c main.c mathmodule.c md5module.c mpzmodule.c newmodule.c parsermodule.c posixmodule.c pwdmodule.c regexmodule.c resource.c selectmodule.c sgimodule.c signalmodule.c socketmodule.c stropmodule.c structmodule.c sunaudiodev.c svmodule.c threadmodule.c timemodule.c xxmodule.c yuv.h yuvconvert.c Log Message: Change copyright notice - 2nd try. Index: almodule.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/almodule.c,v retrieving revision 1.25 retrieving revision 1.26 diff -C2 -r1.25 -r1.26 *** almodule.c 2000/06/30 23:50:38 1.25 --- almodule.c 2000/06/30 23:58:05 1.26 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: arraymodule.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/arraymodule.c,v retrieving revision 2.43 retrieving revision 2.44 diff -C2 -r2.43 -r2.44 *** arraymodule.c 2000/06/30 23:50:38 2.43 --- arraymodule.c 2000/06/30 23:58:05 2.44 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: audioop.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/audioop.c,v retrieving revision 1.37 retrieving revision 1.38 diff -C2 -r1.37 -r1.38 *** audioop.c 2000/06/30 23:50:38 1.37 --- audioop.c 2000/06/30 23:58:05 1.38 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: bsddbmodule.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/bsddbmodule.c,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -r1.20 -r1.21 *** bsddbmodule.c 2000/06/30 23:50:38 1.20 --- bsddbmodule.c 2000/06/30 23:58:05 1.21 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: cdmodule.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/cdmodule.c,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -r1.20 -r1.21 *** cdmodule.c 2000/06/30 23:50:38 1.20 --- cdmodule.c 2000/06/30 23:58:05 1.21 *************** *** 1,8 **** /********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: cgensupport.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/cgensupport.c,v retrieving revision 2.12 retrieving revision 2.13 diff -C2 -r2.12 -r2.13 *** cgensupport.c 2000/06/30 23:50:38 2.12 --- cgensupport.c 2000/06/30 23:58:05 2.13 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: cgensupport.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/cgensupport.h,v retrieving revision 2.12 retrieving revision 2.13 diff -C2 -r2.12 -r2.13 *** cgensupport.h 2000/06/30 23:50:38 2.12 --- cgensupport.h 2000/06/30 23:58:05 2.13 *************** *** 6,14 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 6,9 ---- *************** *** 18,22 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 13,16 ---- Index: clmodule.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/clmodule.c,v retrieving revision 2.21 retrieving revision 2.22 diff -C2 -r2.21 -r2.22 *** clmodule.c 2000/06/30 23:50:38 2.21 --- clmodule.c 2000/06/30 23:58:05 2.22 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: config.c.in =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/config.c.in,v retrieving revision 1.68 retrieving revision 1.69 diff -C2 -r1.68 -r1.69 *** config.c.in 2000/06/30 23:50:38 1.68 --- config.c.in 2000/06/30 23:58:05 1.69 *************** *** 1,8 **** /* -*- C -*- *********************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: cstubs =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/cstubs,v retrieving revision 2.19 retrieving revision 2.20 diff -C2 -r2.19 -r2.20 *** cstubs 2000/06/30 23:50:38 2.19 --- cstubs 2000/06/30 23:58:05 2.20 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: dbmmodule.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/dbmmodule.c,v retrieving revision 2.18 retrieving revision 2.19 diff -C2 -r2.18 -r2.19 *** dbmmodule.c 2000/06/30 23:50:38 2.18 --- dbmmodule.c 2000/06/30 23:58:05 2.19 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: dlmodule.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/dlmodule.c,v retrieving revision 2.8 retrieving revision 2.9 diff -C2 -r2.8 -r2.9 *** dlmodule.c 2000/06/30 23:50:38 2.8 --- dlmodule.c 2000/06/30 23:58:05 2.9 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: errnomodule.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/errnomodule.c,v retrieving revision 2.10 retrieving revision 2.11 diff -C2 -r2.10 -r2.11 *** errnomodule.c 2000/06/30 23:50:38 2.10 --- errnomodule.c 2000/06/30 23:58:05 2.11 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: fcntlmodule.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/fcntlmodule.c,v retrieving revision 2.20 retrieving revision 2.21 diff -C2 -r2.20 -r2.21 *** fcntlmodule.c 2000/06/30 23:50:38 2.20 --- fcntlmodule.c 2000/06/30 23:58:05 2.21 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: flmodule.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/flmodule.c,v retrieving revision 1.38 retrieving revision 1.39 diff -C2 -r1.38 -r1.39 *** flmodule.c 2000/06/30 23:50:38 1.38 --- flmodule.c 2000/06/30 23:58:05 1.39 *************** *** 1,8 **** /********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: fmmodule.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/fmmodule.c,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -r1.12 -r1.13 *** fmmodule.c 2000/06/30 23:50:38 1.12 --- fmmodule.c 2000/06/30 23:58:05 1.13 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: gdbmmodule.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/gdbmmodule.c,v retrieving revision 2.23 retrieving revision 2.24 diff -C2 -r2.23 -r2.24 *** gdbmmodule.c 2000/06/30 23:50:38 2.23 --- gdbmmodule.c 2000/06/30 23:58:05 2.24 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: getpath.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/getpath.c,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -r1.24 -r1.25 *** getpath.c 2000/06/30 23:50:38 1.24 --- getpath.c 2000/06/30 23:58:05 1.25 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: glmodule.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/glmodule.c,v retrieving revision 2.4 retrieving revision 2.5 diff -C2 -r2.4 -r2.5 *** glmodule.c 2000/06/30 23:50:38 2.4 --- glmodule.c 2000/06/30 23:58:05 2.5 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: grpmodule.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/grpmodule.c,v retrieving revision 2.10 retrieving revision 2.11 diff -C2 -r2.10 -r2.11 *** grpmodule.c 2000/06/30 23:50:38 2.10 --- grpmodule.c 2000/06/30 23:58:05 2.11 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: imageop.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/imageop.c,v retrieving revision 2.21 retrieving revision 2.22 diff -C2 -r2.21 -r2.22 *** imageop.c 2000/06/30 23:50:38 2.21 --- imageop.c 2000/06/30 23:58:05 2.22 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: imgfile.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/imgfile.c,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -r1.23 -r1.24 *** imgfile.c 2000/06/30 23:50:38 1.23 --- imgfile.c 2000/06/30 23:58:05 1.24 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: main.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/main.c,v retrieving revision 1.39 retrieving revision 1.40 diff -C2 -r1.39 -r1.40 *** main.c 2000/06/30 23:50:38 1.39 --- main.c 2000/06/30 23:58:05 1.40 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: mathmodule.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/mathmodule.c,v retrieving revision 2.46 retrieving revision 2.47 diff -C2 -r2.46 -r2.47 *** mathmodule.c 2000/06/30 23:50:38 2.46 --- mathmodule.c 2000/06/30 23:58:05 2.47 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: md5module.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/md5module.c,v retrieving revision 2.16 retrieving revision 2.17 diff -C2 -r2.16 -r2.17 *** md5module.c 2000/06/30 23:50:38 2.16 --- md5module.c 2000/06/30 23:58:05 2.17 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: mpzmodule.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/mpzmodule.c,v retrieving revision 2.26 retrieving revision 2.27 diff -C2 -r2.26 -r2.27 *** mpzmodule.c 2000/06/30 23:50:38 2.26 --- mpzmodule.c 2000/06/30 23:58:05 2.27 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: newmodule.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/newmodule.c,v retrieving revision 2.22 retrieving revision 2.23 diff -C2 -r2.22 -r2.23 *** newmodule.c 2000/06/30 23:50:38 2.22 --- newmodule.c 2000/06/30 23:58:05 2.23 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: parsermodule.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/parsermodule.c,v retrieving revision 2.40 retrieving revision 2.41 diff -C2 -r2.40 -r2.41 *** parsermodule.c 2000/06/30 23:50:38 2.40 --- parsermodule.c 2000/06/30 23:58:05 2.41 *************** *** 77,85 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 77,80 ---- *************** *** 89,93 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 84,87 ---- Index: posixmodule.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/posixmodule.c,v retrieving revision 2.140 retrieving revision 2.141 diff -C2 -r2.140 -r2.141 *** posixmodule.c 2000/06/30 23:50:38 2.140 --- posixmodule.c 2000/06/30 23:58:05 2.141 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: pwdmodule.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/pwdmodule.c,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -r1.18 -r1.19 *** pwdmodule.c 2000/06/30 23:50:38 1.18 --- pwdmodule.c 2000/06/30 23:58:05 1.19 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: regexmodule.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/regexmodule.c,v retrieving revision 1.35 retrieving revision 1.36 diff -C2 -r1.35 -r1.36 *** regexmodule.c 2000/06/30 23:50:38 1.35 --- regexmodule.c 2000/06/30 23:58:05 1.36 *************** *** 5,13 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 5,8 ---- *************** *** 17,21 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 12,15 ---- Index: resource.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/resource.c,v retrieving revision 2.11 retrieving revision 2.12 diff -C2 -r2.11 -r2.12 *** resource.c 2000/06/30 23:50:38 2.11 --- resource.c 2000/06/30 23:58:05 2.12 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: selectmodule.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/selectmodule.c,v retrieving revision 2.34 retrieving revision 2.35 diff -C2 -r2.34 -r2.35 *** selectmodule.c 2000/06/30 23:50:38 2.34 --- selectmodule.c 2000/06/30 23:58:05 2.35 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: sgimodule.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/sgimodule.c,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -r1.12 -r1.13 *** sgimodule.c 2000/06/30 23:50:38 1.12 --- sgimodule.c 2000/06/30 23:58:05 1.13 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: signalmodule.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/signalmodule.c,v retrieving revision 2.42 retrieving revision 2.43 diff -C2 -r2.42 -r2.43 *** signalmodule.c 2000/06/30 23:50:38 2.42 --- signalmodule.c 2000/06/30 23:58:05 2.43 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: socketmodule.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/socketmodule.c,v retrieving revision 1.110 retrieving revision 1.111 diff -C2 -r1.110 -r1.111 *** socketmodule.c 2000/06/30 23:50:38 1.110 --- socketmodule.c 2000/06/30 23:58:05 1.111 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: stropmodule.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/stropmodule.c,v retrieving revision 2.64 retrieving revision 2.65 diff -C2 -r2.64 -r2.65 *** stropmodule.c 2000/06/30 23:50:38 2.64 --- stropmodule.c 2000/06/30 23:58:05 2.65 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: structmodule.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/structmodule.c,v retrieving revision 2.32 retrieving revision 2.33 diff -C2 -r2.32 -r2.33 *** structmodule.c 2000/06/30 23:50:38 2.32 --- structmodule.c 2000/06/30 23:58:05 2.33 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: sunaudiodev.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/sunaudiodev.c,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -r1.18 -r1.19 *** sunaudiodev.c 2000/06/30 23:50:39 1.18 --- sunaudiodev.c 2000/06/30 23:58:05 1.19 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: svmodule.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/svmodule.c,v retrieving revision 2.12 retrieving revision 2.13 diff -C2 -r2.12 -r2.13 *** svmodule.c 2000/06/30 23:50:39 2.12 --- svmodule.c 2000/06/30 23:58:05 2.13 *************** *** 1,8 **** /********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: threadmodule.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/threadmodule.c,v retrieving revision 2.32 retrieving revision 2.33 diff -C2 -r2.32 -r2.33 *** threadmodule.c 2000/06/30 23:50:39 2.32 --- threadmodule.c 2000/06/30 23:58:05 2.33 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: timemodule.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/timemodule.c,v retrieving revision 2.87 retrieving revision 2.88 diff -C2 -r2.87 -r2.88 *** timemodule.c 2000/06/30 23:50:39 2.87 --- timemodule.c 2000/06/30 23:58:05 2.88 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: xxmodule.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/xxmodule.c,v retrieving revision 2.17 retrieving revision 2.18 diff -C2 -r2.17 -r2.18 *** xxmodule.c 2000/06/30 23:50:39 2.17 --- xxmodule.c 2000/06/30 23:58:05 2.18 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: yuv.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/yuv.h,v retrieving revision 2.6 retrieving revision 2.7 diff -C2 -r2.6 -r2.7 *** yuv.h 2000/06/30 23:50:39 2.6 --- yuv.h 2000/06/30 23:58:05 2.7 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- Index: yuvconvert.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/yuvconvert.c,v retrieving revision 2.5 retrieving revision 2.6 diff -C2 -r2.5 -r2.6 *** yuvconvert.c 2000/06/30 23:50:39 2.5 --- yuvconvert.c 2000/06/30 23:58:05 2.6 *************** *** 1,8 **** /*********************************************************** - Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, - The Netherlands. - - All Rights Reserved - Copyright (c) 2000, BeOpen.com. Copyright (c) 1995-2000, Corporation for National Research Initiatives. --- 1,3 ---- *************** *** 12,16 **** See the file "Misc/COPYRIGHT" for information on usage and redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. - ******************************************************************/ --- 7,10 ---- From python-dev@python.org Sat Jul 1 01:03:45 2000 From: python-dev@python.org (Tim Peters) Date: Fri, 30 Jun 2000 17:03:45 -0700 Subject: [Python-checkins] CVS: python/dist/src/PCbuild readme.txt,1.6,1.7 Message-ID: <200007010003.RAA15118@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/PCbuild In directory slayer.i.sourceforge.net:/tmp/cvs-serv15105/python/dist/src/pcbuild Modified Files: readme.txt Log Message: Update for 2.0b1. Also add more text, to be more explicit about what the dozen+ subprojects are for, which are and aren't expected to build out of the box, and what else is needed to get them all to build. Also explained that Alpha configurations don't refer to pre-beta, but to the Alpha processor! That's baffled me for years <0.7 wink>. Index: readme.txt =================================================================== RCS file: /cvsroot/python/python/dist/src/PCbuild/readme.txt,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** readme.txt 2000/06/30 09:04:35 1.6 --- readme.txt 2000/07/01 00:03:43 1.7 *************** *** 1,40 **** ! Building Python using VC++ 5.0 or 6.0 ------------------------------------- ! ! This directory is used to build Python for Win32 platforms, ! e.g. Windows 95, 98 and NT. It requires Microsoft Visual C++ 6.x ! or 5.x. (For other Windows platforms and compilers, see ../PC/readme.txt.) ! Unlike previous versions, there's no longer a need to copy the project ! files from the PC/vc5x subdirectory to the PCbuild directory -- they ! come in PCbuild. ! ! All you need to do is open the workspace "pcbuild.dsw" in MSVC++, ! select the Debug or Release setting (using Set Active ! Configuration... in the Build menu), and build the projects. ! ! The proper order to build is ! ! 1) python16 (this builds python16.dll and python16.lib) ! 2) python (this builds python.exe) ! 3) the other subprojects ! ! Some subprojects require that you have distributions of other ! software: Tcl/Tk, bsddb and zlib. If you don't have these, you can't ! build the corresponding extensions. If you do have them, you may have ! to change the project settings to point to the right include files, ! libraries etc. When using the Debug setting, the output files have a _d added to ! their name: python16_d.dll, python_d.exe, parser_d.pyd, and so on. ! If you want to create your own extension module DLL, there's an ! example with easy-to-follow instructions in ../PC/example/; read the ! file readme.txt there first. ! ! Pointers: ! Python http://www.python.org ! Tcl/Tk http://dev.scriptics.com ! zlib http://www.winimage.com/zLibDll ! bsddb Sam Rushing's web/ftp site --- 1,98 ---- ! Building Python using VC++ 6.0 or 5.0 ------------------------------------- ! This directory is used to build Python for Win32 platforms, e.g. Windows ! 95, 98 and NT. It requires Microsoft Visual C++ 6.x or 5.x. (For other Windows platforms and compilers, see ../PC/readme.txt.) + XXX There are still (Python 2.0b1) a few compiler warnings under VC6. + XXX There are likely a few more under VC5. + + Unlike older versions, there's no longer a need to copy the project files + from a subdirectory of PC/ to the PCbuild directory -- they come in PCbuild. + + All you need to do is open the workspace "pcbuild.dsw" in MSVC++, select + the Debug or Release setting (using Build -> Set Active Configuration...), + and build the projects. + + The proper order to build subprojects is: + + 1) python20 (this builds the main Python DLL and library files, + python20.{dll, lib}) + + 2) python (this builds the main Python executable, python.exe) ! 3) the other subprojects, as desired or needed (note: you probably don't ! want to build most of the other subprojects, unless you're building an ! entire Python distribution from scratch, or specifically making changes ! to the subsystems they implement; see SUBPROJECTS below) When using the Debug setting, the output files have a _d added to ! their name: python20_d.dll, python_d.exe, parser_d.pyd, and so on. ! SUBPROJECTS ! ----------- ! These subprojects should build out of the box. Subprojects other than the ! main ones (python20, python, pythonw) generally build a DLL (renamed to ! .pyd) from a specific module so that users don't have to load the code ! supporting that module unless they import the module. ! ! python20 ! .dll and .lib ! python ! .exe ! pythonw ! pythonw.exe, a variant of python.exe that doesn't pop up a DOS box ! _socket ! socketmodule.c ! _sre ! Unicode-aware regular expression engine ! mmap ! mmapmodule.c ! parser ! the parser module ! select ! selectmodule.c ! unicodedata ! large tables of Unicode data ! winreg ! Windows registry API ! winsound ! play sounds (typically .wav files) under Windows ! ! The following subprojects will generally NOT build out of the box. They ! wrap code Python doesn't control, and you'll need to download the base ! packages first (study the subproject structure from within MSVC to see ! where each expects to find the unpacked packages): ! ! _tkinter ! Python wrapper for the Tk windowing system. Requires tcl831.exe from ! http://dev.scriptics.com/software/tcltk/downloadnow83.tml ! ! zlib ! Python wrapper for the zlib compression library. Requires ! http://www.winimage.com/zLibDll/zlib133dll.zip ! and ! ftp://ftp.uu.net/graphics/png/src/zlib133.zip ! ! bsddb ! Python wrapper for the BSD database 1.85. Requires bsddbmodule.zip, ! from the bsddb link at ! http://www.nightmare.com/software.html ! ! pyexpat ! Python wrapper for accelerated XML parsing. Requires ! ftp://ftp.jclark.com/pub/xml/expat.zip ! ! ! NOTE ON CONFIGURATIONS ! ---------------------- ! Under Build -> Configuration ..., you'll find several Alpha configurations, ! such as "Win32 Alpha Release". These do not refer to alpha versions (as in ! alpha, beta, final), but to the DEC/COMPAQ Alpha processor. Ignore them if ! you're not building on an Alpha box. ! ! ! YOUR OWN EXTENSION DDLs ! ----------------------- ! If you want to create your own extension module DLL, there's an example ! with easy-to-follow instructions in ../PC/example/; read the file ! readme.txt there first. From python-dev@python.org Sat Jul 1 01:10:06 2000 From: python-dev@python.org (Guido van Rossum) Date: Fri, 30 Jun 2000 17:10:06 -0700 Subject: [Python-checkins] CVS: python/dist/src/BeOS dl_export.h,1.1,1.2 Message-ID: <200007010010.RAA15464@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/BeOS In directory slayer.i.sourceforge.net:/tmp/cvs-serv15449 Modified Files: dl_export.h Log Message: Change copyright notice. Index: dl_export.h =================================================================== RCS file: /cvsroot/python/python/dist/src/BeOS/dl_export.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** dl_export.h 1999/01/12 20:30:23 1.1 --- dl_export.h 2000/07/01 00:10:03 1.2 *************** *** 10,35 **** * Python: * ! * Permission to use, copy, modify, and distribute this software and its ! * documentation for any purpose and without fee is hereby granted, ! * provided that the above copyright notice appear in all copies and that ! * both that copyright notice and this permission notice appear in ! * supporting documentation, and that the names of Stichting Mathematisch ! * Centrum or CWI or Corporation for National Research Initiatives or ! * CNRI not be used in advertising or publicity pertaining to ! * distribution of the software without specific, written prior ! * permission. ! * ! * While CWI is the initial source for this software, a modified version ! * is made available by the Corporation for National Research Initiatives ! * (CNRI) at the Internet address ftp://ftp.python.org. ! * ! * STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! * REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! * MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! * CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! * PERFORMANCE OF THIS SOFTWARE. * * - Chris Herborth (chrish@beoscentral.com) --- 10,20 ---- * Python: * ! * Copyright (c) 2000, BeOpen.com. ! * Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! * Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! * All rights reserved. ! * ! * See the file "Misc/COPYRIGHT" for information on usage and ! * redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. * * - Chris Herborth (chrish@beoscentral.com) From python-dev@python.org Sat Jul 1 01:13:13 2000 From: python-dev@python.org (Guido van Rossum) Date: Fri, 30 Jun 2000 17:13:13 -0700 Subject: [Python-checkins] CVS: python/dist/src Makefile.in,1.89,1.90 Message-ID: <200007010013.RAA15705@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src In directory slayer.i.sourceforge.net:/tmp/cvs-serv15698 Modified Files: Makefile.in Log Message: Change copyright notice. Index: Makefile.in =================================================================== RCS file: /cvsroot/python/python/dist/src/Makefile.in,v retrieving revision 1.89 retrieving revision 1.90 diff -C2 -r1.89 -r1.90 *** Makefile.in 2000/06/30 16:03:26 1.89 --- Makefile.in 2000/07/01 00:13:10 1.90 *************** *** 1,30 **** ######################################################################## ! # Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, ! # The Netherlands. ! # ! # All Rights Reserved ! # ! # Permission to use, copy, modify, and distribute this software and its ! # documentation for any purpose and without fee is hereby granted, ! # provided that the above copyright notice appear in all copies and that ! # both that copyright notice and this permission notice appear in ! # supporting documentation, and that the names of Stichting Mathematisch ! # Centrum or CWI or Corporation for National Research Initiatives or ! # CNRI not be used in advertising or publicity pertaining to ! # distribution of the software without specific, written prior ! # permission. # ! # While CWI is the initial source for this software, a modified version ! # is made available by the Corporation for National Research Initiatives ! # (CNRI) at the Internet address ftp://ftp.python.org. ! # ! # STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! # REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! # MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! # CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! # DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! # PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! # PERFORMANCE OF THIS SOFTWARE. ######################################################################## --- 1,10 ---- ######################################################################## ! # Copyright (c) 2000, BeOpen.com. ! # Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! # Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! # All rights reserved. # ! # See the file "Misc/COPYRIGHT" for information on usage and ! # redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ######################################################################## From python-dev@python.org Sat Jul 1 01:16:15 2000 From: python-dev@python.org (Guido van Rossum) Date: Fri, 30 Jun 2000 17:16:15 -0700 Subject: [Python-checkins] CVS: python/dist/src/Modules cgen.py,2.14,2.15 Message-ID: <200007010016.RAA15827@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Modules In directory slayer.i.sourceforge.net:/tmp/cvs-serv15820 Modified Files: cgen.py Log Message: Change copyright notice. Index: cgen.py =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/cgen.py,v retrieving revision 2.14 retrieving revision 2.15 diff -C2 -r2.14 -r2.15 *** cgen.py 1997/04/29 21:34:06 2.14 --- cgen.py 2000/07/01 00:16:13 2.15 *************** *** 1,30 **** ######################################################################## ! # Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, ! # The Netherlands. ! # ! # All Rights Reserved ! # ! # Permission to use, copy, modify, and distribute this software and its ! # documentation for any purpose and without fee is hereby granted, ! # provided that the above copyright notice appear in all copies and that ! # both that copyright notice and this permission notice appear in ! # supporting documentation, and that the names of Stichting Mathematisch ! # Centrum or CWI or Corporation for National Research Initiatives or ! # CNRI not be used in advertising or publicity pertaining to ! # distribution of the software without specific, written prior ! # permission. # ! # While CWI is the initial source for this software, a modified version ! # is made available by the Corporation for National Research Initiatives ! # (CNRI) at the Internet address ftp://ftp.python.org. ! # ! # STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! # REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! # MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! # CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! # DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! # PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! # PERFORMANCE OF THIS SOFTWARE. ######################################################################## --- 1,10 ---- ######################################################################## ! # Copyright (c) 2000, BeOpen.com. ! # Copyright (c) 1995-2000, Corporation for National Research Initiatives. ! # Copyright (c) 1990-1995, Stichting Mathematisch Centrum. ! # All rights reserved. # ! # See the file "Misc/COPYRIGHT" for information on usage and ! # redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. ######################################################################## From python-dev@python.org Sat Jul 1 01:34:41 2000 From: python-dev@python.org (Guido van Rossum) Date: Fri, 30 Jun 2000 17:34:41 -0700 Subject: [Python-checkins] CVS: python/dist/src README,1.87,1.88 Message-ID: <200007010034.RAA16716@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src In directory slayer.i.sourceforge.net:/tmp/cvs-serv16709 Modified Files: README Log Message: Update a bunch of URLs. No longer suggests to join PSA or Consortium. Index: README =================================================================== RCS file: /cvsroot/python/python/dist/src/README,v retrieving revision 1.87 retrieving revision 1.88 diff -C2 -r1.87 -r1.88 *** README 2000/06/30 17:30:18 1.87 --- README 2000/07/01 00:34:39 1.88 *************** *** 48,69 **** Python is an interpreted object-oriented programming language, and is often compared to Tcl, Perl, Java or Scheme. To find out more, point ! your browser to http://www.python.org/. - A modest plug - ------------- - - ************************************************************************ - * Without your support, I won't be able to continue to work on Python! * - ************************************************************************ - - If you use Python, please consider joining the Python Software - Activity (PSA). See http://www.python.org/psa/. - - Organizations that make heavy use of Python are especially encouraged - to become corporate members -- or better still, to join the Python - Consortium (see http://www.python.org/consortium/). - - How do I learn Python? ---------------------- --- 48,54 ---- Python is an interpreted object-oriented programming language, and is often compared to Tcl, Perl, Java or Scheme. To find out more, point ! your browser to http://www.pythonlabs.com/. How do I learn Python? ---------------------- *************** *** 660,664 **** Of course, there are also binary distributions available for these ! platforms -- see http://www.python.org/python/. To port Python to a new non-UNIX system, you will have to fake the --- 645,649 ---- Of course, there are also binary distributions available for these ! platforms -- see http://www.pythonlabs.com/downloads.html To port Python to a new non-UNIX system, you will have to fake the *************** *** 688,692 **** All documentation is also available online via the Python web site ! (http://www.python.org/, see below). It is available online for occaissional reference, or can be downloaded in many formats for faster access. The documents are available in HTML, PostScript, PDF, --- 673,677 ---- All documentation is also available online via the Python web site ! (http://www.python.org/doc/, see below). It is available online for occaissional reference, or can be downloaded in many formats for faster access. The documents are available in HTML, PostScript, PDF, *************** *** 701,710 **** Misc/python-mode.el. Originally written by the famous Tim Peters, it is now maintained by the equally famous Barry Warsaw ! . The latest version, along with various ! other contributed Python-related Emacs goodies, is online at . And if you are planning to edit the Python C code, please pick up the latest version of CC Mode ; it contains a "python" style ! used throughout most of the Python C source files. --- 686,697 ---- Misc/python-mode.el. Originally written by the famous Tim Peters, it is now maintained by the equally famous Barry Warsaw ! . The latest version, along with various other ! contributed Python-related Emacs goodies, is online at . And if you are planning to edit the Python C code, please pick up the latest version of CC Mode ; it contains a "python" style ! used throughout most of the Python C source files. (Newer versions of ! Emacs or XEmacs may already come with the latest version of ! python-mode.) *************** *** 712,728 **** -------- ! Python's own web site has URL http://www.python.org/. Come visit us! ! There are a number of mirrors, and a list of mirrors is accessible ! from the home page -- try a mirror that's close you you. - Ftp site - -------- - - Python's own ftp site is ftp://ftp.python.org/pub/python/. There are - numerous mirrors; the list of mirrors is accessible from - http://www.python.org/. - - Newsgroups ---------- --- 699,706 ---- -------- ! Python's own web site has URL http://www.pythonlabs.com/. Come visit ! us! Newsgroups ---------- *************** *** 747,755 **** ----------- ! Bugs are best reported to the comp.lang.python newsgroup (or the ! Python mailing list) -- see the section "Newsgroups" above. Before ! posting, check the newsgroup archives (see above) to see if your bug ! has already been reported! If you don't want to go public, send them ! to me: . --- 725,730 ---- ----------- ! To report or search for bugs, please use the Python Bugs List at ! http://www.python.org/search/search_bugs.html *************** *** 760,764 **** best to post to the comp.lang.python or the Python mailing list (see above). If you specifically don't want to involve the newsgroup or ! mailing list, send questions to (a group of volunteers which does *not* include me). Because of my work and email volume, I'm often be slow in answering questions sent to me directly; --- 735,739 ---- best to post to the comp.lang.python or the Python mailing list (see above). If you specifically don't want to involve the newsgroup or ! mailing list, send questions to (a group of volunteers which does *not* include me). Because of my work and email volume, I'm often be slow in answering questions sent to me directly; *************** *** 772,782 **** also usable from Python. Since this requires that you first build and install Tcl/Tk, the Tk interface is not enabled by default. Python ! supports all Tcl/Tk versions from version 7.5/4.1 through 8.0 (and it ! is expected that it will also work with newer versions). Tcl/Tk ! 7.4/4.0 is no longer supported. 8.0 or any later non-alpha non-beta ! release is recommended. ! See http://sunscript.sun.com/ for more info on Tcl/Tk, including the ! on-line manual pages. --- 747,754 ---- also usable from Python. Since this requires that you first build and install Tcl/Tk, the Tk interface is not enabled by default. Python ! supports Tcl/Tk starting with version 8.0. ! See http://dev.ajubasolutions.com/ for more info on Tcl/Tk, including ! the on-line manual pages. *************** *** 787,802 **** will have to edit the first line to fix or add -I and -L options. (Also see the general instructions at the top of that file.) - - There is little documentation on how to use Tkinter; however most of - the Tk manual pages apply quite straightforwardly. Begin with - fetching the "Tk Lifesaver" document, - e.g. ftp://ftp.python.org/pub/python/doc/tkinter-doc.tar.gz (a gzipped - tar file containing a PostScript file) or the on-line version - http://www.python.org/doc/life-preserver/index.html. Reading the - Tkinter.py source will reveal most details on how Tkinter calls are - translated into Tcl code. ! A more recent introduction to Tkinter programming, by Fredrik Lundh, ! is at http://www.pythonware.com/library/tkinter/introduction/index.htm. There are demos in the Demo/tkinter directory, in the subdirectories --- 759,765 ---- will have to edit the first line to fix or add -I and -L options. (Also see the general instructions at the top of that file.) ! For more Tkinter information, see the Tkinter Resource page: ! http://www.python.org/topics/tkinter/ There are demos in the Demo/tkinter directory, in the subdirectories From python-dev@python.org Sat Jul 1 01:38:22 2000 From: python-dev@python.org (Guido van Rossum) Date: Fri, 30 Jun 2000 17:38:22 -0700 Subject: [Python-checkins] CVS: python/dist/src/Modules arraymodule.c,2.44,2.45 Message-ID: <200007010038.RAA16914@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Modules In directory slayer.i.sourceforge.net:/tmp/cvs-serv16905 Modified Files: arraymodule.c Log Message: In b_setitem(), instead of the platform dependent CHAR_MIN and CHAR_MAX, use hardcoded -128 and 127. This may seem strange, unless you realize that we're talking about signed bytes here! Bytes are always 8 bits and 2's complement. CHAR_MIN and CHAR_MAX are properties of the char data type, which is guaranteed to hold at least 8 bits anyway. Otherwise you'd get failing tests on platforms where unsigned char is the default (e.g. AIX). Thanks, Vladimir Marangozov, for finding this nit! Index: arraymodule.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/arraymodule.c,v retrieving revision 2.44 retrieving revision 2.45 diff -C2 -r2.44 -r2.45 *** arraymodule.c 2000/06/30 23:58:05 2.44 --- arraymodule.c 2000/07/01 00:38:19 2.45 *************** *** 100,109 **** if (!PyArg_Parse(v, "h;array item must be integer", &x)) return -1; ! else if (x < CHAR_MIN) { PyErr_SetString(PyExc_OverflowError, "signed char is less than minimum"); return -1; } ! else if (x > CHAR_MAX) { PyErr_SetString(PyExc_OverflowError, "signed char is greater than maximum"); --- 100,109 ---- if (!PyArg_Parse(v, "h;array item must be integer", &x)) return -1; ! else if (x < -128) { PyErr_SetString(PyExc_OverflowError, "signed char is less than minimum"); return -1; } ! else if (x > 127) { PyErr_SetString(PyExc_OverflowError, "signed char is greater than maximum"); From python-dev@python.org Sat Jul 1 01:51:54 2000 From: python-dev@python.org (Guido van Rossum) Date: Fri, 30 Jun 2000 17:51:54 -0700 Subject: [Python-checkins] CVS: python/dist/src/Modules mmapmodule.c,2.15,2.16 Message-ID: <200007010051.RAA17476@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Modules In directory slayer.i.sourceforge.net:/tmp/cvs-serv17467 Modified Files: mmapmodule.c Log Message: clean up warnings in Win32 build of mmapmodule.c Index: mmapmodule.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/mmapmodule.c,v retrieving revision 2.15 retrieving revision 2.16 diff -C2 -r2.15 -r2.16 *** mmapmodule.c 2000/06/18 19:06:49 2.15 --- mmapmodule.c 2000/07/01 00:51:51 2.16 *************** *** 569,573 **** { CHECK_VALID(NULL); ! if (i < 0 || i >= self->size) { PyErr_SetString(PyExc_IndexError, "mmap index out of range"); return NULL; --- 569,573 ---- { CHECK_VALID(NULL); ! if (i < 0 || (size_t)i >= self->size) { PyErr_SetString(PyExc_IndexError, "mmap index out of range"); return NULL; *************** *** 584,588 **** if (ilow < 0) ilow = 0; ! else if (ilow > self->size) ilow = self->size; if (ihigh < 0) --- 584,588 ---- if (ilow < 0) ilow = 0; ! else if ((size_t)ilow > self->size) ilow = self->size; if (ihigh < 0) *************** *** 590,594 **** if (ihigh < ilow) ihigh = ilow; ! else if (ihigh > self->size) ihigh = self->size; --- 590,594 ---- if (ihigh < ilow) ihigh = ilow; ! else if ((size_t)ihigh > self->size) ihigh = self->size; *************** *** 629,633 **** if (ilow < 0) ilow = 0; ! else if (ilow > self->size) ilow = self->size; if (ihigh < 0) --- 629,633 ---- if (ilow < 0) ilow = 0; ! else if ((size_t)ilow > self->size) ilow = self->size; if (ihigh < 0) *************** *** 635,639 **** if (ihigh < ilow) ihigh = ilow; ! else if (ihigh > self->size) ihigh = self->size; --- 635,639 ---- if (ihigh < ilow) ihigh = ilow; ! else if ((size_t)ihigh > self->size) ihigh = self->size; *************** *** 662,666 **** CHECK_VALID(-1); ! if (i < 0 || i >= self->size) { PyErr_SetString(PyExc_IndexError, "mmap index out of range"); return -1; --- 662,666 ---- CHECK_VALID(-1); ! if (i < 0 || (size_t)i >= self->size) { PyErr_SetString(PyExc_IndexError, "mmap index out of range"); return -1; From python-dev@python.org Sat Jul 1 02:00:38 2000 From: python-dev@python.org (Guido van Rossum) Date: Fri, 30 Jun 2000 18:00:38 -0700 Subject: [Python-checkins] CVS: python/dist/src/Include objimpl.h,2.19,2.20 Message-ID: <200007010100.SAA19200@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Include In directory slayer.i.sourceforge.net:/tmp/cvs-serv19078 Modified Files: objimpl.h Log Message: Neil Schemenauer: small fixes for GC Index: objimpl.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/objimpl.h,v retrieving revision 2.19 retrieving revision 2.20 diff -C2 -r2.19 -r2.20 *** objimpl.h 2000/06/30 23:58:04 2.19 --- objimpl.h 2000/07/01 01:00:35 2.20 *************** *** 184,187 **** --- 184,189 ---- (typeobj), (n)) ) + #define PyObject_DEL(op) PyObject_FREE(op) + /* This example code implements an object constructor with a custom allocator, where PyObject_New is inlined, and shows the important *************** *** 222,226 **** Py_TPFLAGS_GC and define the type method tp_recurse. You should also add the method tp_clear if your object is mutable. Include ! PyGC_INFO_SIZE in the calculation of tp_basicsize. Call PyObject_GC_Init after the pointers followed by tp_recurse become valid (usually just before returning the object from the allocation --- 224,228 ---- Py_TPFLAGS_GC and define the type method tp_recurse. You should also add the method tp_clear if your object is mutable. Include ! PyGC_HEAD_SIZE in the calculation of tp_basicsize. Call PyObject_GC_Init after the pointers followed by tp_recurse become valid (usually just before returning the object from the allocation *************** *** 235,239 **** #define PyObject_AS_GC(op) (op) #define PyObject_FROM_GC(op) (op) - #define PyObject_DEL(op) PyObject_FREE(op) #else --- 237,240 ---- *************** *** 268,275 **** /* Get the object given the PyGC_Head */ #define PyObject_FROM_GC(g) ((PyObject *)(((PyGC_Head *)g)+1)) - - #define PyObject_DEL(op) PyObject_FREE( PyObject_IS_GC(op) ? \ - (ANY *)PyObject_AS_GC(op) : \ - (ANY *)(op) ) #endif /* WITH_CYCLE_GC */ --- 269,272 ---- From python-dev@python.org Sat Jul 1 02:00:41 2000 From: python-dev@python.org (Guido van Rossum) Date: Fri, 30 Jun 2000 18:00:41 -0700 Subject: [Python-checkins] CVS: python/dist/src/Objects classobject.c,2.96,2.97 dictobject.c,2.57,2.58 funcobject.c,2.27,2.28 listobject.c,2.78,2.79 object.c,2.78,2.79 tupleobject.c,2.41,2.42 Message-ID: <200007010100.SAA19385@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Objects In directory slayer.i.sourceforge.net:/tmp/cvs-serv19080 Modified Files: classobject.c dictobject.c funcobject.c listobject.c object.c tupleobject.c Log Message: Neil Schemenauer: small fixes for GC Index: classobject.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Objects/classobject.c,v retrieving revision 2.96 retrieving revision 2.97 diff -C2 -r2.96 -r2.97 *** classobject.c 2000/06/30 23:58:05 2.96 --- classobject.c 2000/07/01 01:00:38 2.97 *************** *** 129,132 **** --- 129,133 ---- Py_XDECREF(op->cl_setattr); Py_XDECREF(op->cl_delattr); + op = (PyClassObject *) PyObject_AS_GC(op); PyObject_DEL(op); } *************** *** 474,477 **** --- 475,479 ---- PyObject_GC_Init(inst); if (inst->in_dict == NULL) { + inst = (PyInstanceObject *) PyObject_AS_GC(inst); PyObject_DEL(inst); return NULL; *************** *** 589,592 **** --- 591,595 ---- Py_DECREF(inst->in_class); Py_XDECREF(inst->in_dict); + inst = (PyInstanceObject *) PyObject_AS_GC(inst); PyObject_DEL(inst); } *************** *** 1764,1767 **** --- 1767,1771 ---- PyMethodObject *im = free_list; free_list = (PyMethodObject *)(im->im_self); + im = (PyMethodObject *) PyObject_AS_GC(im); PyObject_DEL(im); } Index: dictobject.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Objects/dictobject.c,v retrieving revision 2.57 retrieving revision 2.58 diff -C2 -r2.57 -r2.58 *** dictobject.c 2000/06/30 23:58:05 2.57 --- dictobject.c 2000/07/01 01:00:38 2.58 *************** *** 473,476 **** --- 473,477 ---- if (mp->ma_table != NULL) PyMem_DEL(mp->ma_table); + mp = (dictobject *) PyObject_AS_GC(mp); PyObject_DEL(mp); Py_TRASHCAN_SAFE_END(mp) Index: funcobject.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Objects/funcobject.c,v retrieving revision 2.27 retrieving revision 2.28 diff -C2 -r2.27 -r2.28 *** funcobject.c 2000/06/30 23:58:05 2.27 --- funcobject.c 2000/07/01 01:00:38 2.28 *************** *** 173,176 **** --- 173,177 ---- Py_XDECREF(op->func_defaults); Py_XDECREF(op->func_doc); + op = (PyFunctionObject *) PyObject_AS_GC(op); PyObject_DEL(op); } Index: listobject.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Objects/listobject.c,v retrieving revision 2.78 retrieving revision 2.79 diff -C2 -r2.78 -r2.79 *** listobject.c 2000/06/30 23:58:05 2.78 --- listobject.c 2000/07/01 01:00:38 2.79 *************** *** 210,213 **** --- 210,214 ---- PyMem_FREE(op->ob_item); } + op = (PyListObject *) PyObject_AS_GC(op); PyObject_DEL(op); Py_TRASHCAN_SAFE_END(op) Index: object.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Objects/object.c,v retrieving revision 2.78 retrieving revision 2.79 diff -C2 -r2.78 -r2.79 *** object.c 2000/06/30 23:58:05 2.78 --- object.c 2000/07/01 01:00:38 2.79 *************** *** 172,183 **** { #ifdef WITH_CYCLE_GC ! if (PyType_IS_GC(op->ob_type)) { ! PyGC_Head *g = PyObject_AS_GC(op); ! PyObject_FREE(g); ! } else ! #endif ! { ! PyObject_FREE(op); } } --- 172,180 ---- { #ifdef WITH_CYCLE_GC ! if (op && PyType_IS_GC(op->ob_type)) { ! op = (PyObject *) PyObject_AS_GC(op); } + #endif + PyObject_FREE(op); } Index: tupleobject.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Objects/tupleobject.c,v retrieving revision 2.41 retrieving revision 2.42 diff -C2 -r2.41 -r2.42 *** tupleobject.c 2000/06/30 23:58:05 2.41 --- tupleobject.c 2000/07/01 01:00:38 2.42 *************** *** 176,179 **** --- 176,180 ---- #endif } + op = (PyTupleObject *) PyObject_AS_GC(op); PyObject_DEL(op); done: *************** *** 560,563 **** --- 561,565 ---- if (sv == NULL) { PyObject_GC_Init((PyObject *)v); + v = (PyTupleObject *) PyObject_AS_GC(v); PyObject_DEL(v); PyErr_NoMemory(); *************** *** 596,599 **** --- 598,602 ---- q = p; p = (PyTupleObject *)(p->ob_item[0]); + q = (PyTupleObject *) PyObject_AS_GC(q); PyObject_DEL(q); } From python-dev@python.org Sat Jul 1 02:06:58 2000 From: python-dev@python.org (Guido van Rossum) Date: Fri, 30 Jun 2000 18:06:58 -0700 Subject: [Python-checkins] CVS: python/dist/src/Python import.c,2.138,2.139 Message-ID: <200007010106.SAA24578@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Python In directory slayer.i.sourceforge.net:/tmp/cvs-serv24571 Modified Files: import.c Log Message: Jack Jansen, Mac patch: Include stat.h if needed; different Mac filename compare Index: import.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/import.c,v retrieving revision 2.138 retrieving revision 2.139 diff -C2 -r2.138 -r2.139 *** import.c 2000/06/30 23:58:06 2.138 --- import.c 2000/07/01 01:06:56 2.139 *************** *** 40,43 **** --- 40,45 ---- #ifndef DONT_HAVE_SYS_STAT_H #include + #elif defined(HAVE_STAT_H) + #include #endif *************** *** 1130,1135 **** return 0; } ! p2cstr(fss.name); ! if ( strncmp(name, (char *)fss.name, namelen) != 0 ) { PyErr_Format(PyExc_NameError, "Case mismatch for module name %.100s\n(filename %.300s)", --- 1132,1136 ---- return 0; } ! if ( namelen > fss.name[0] || strncmp(name, (char *)fss.name+1, namelen) != 0 ) { PyErr_Format(PyExc_NameError, "Case mismatch for module name %.100s\n(filename %.300s)", From python-dev@python.org Sat Jul 1 02:07:40 2000 From: python-dev@python.org (Guido van Rossum) Date: Fri, 30 Jun 2000 18:07:40 -0700 Subject: [Python-checkins] CVS: python/dist/src/Python getargs.c,2.36,2.37 Message-ID: <200007010107.SAA24694@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Python In directory slayer.i.sourceforge.net:/tmp/cvs-serv24623 Modified Files: getargs.c Log Message: Jack Jansen, Mac patch: Include limits.h if we have it. Index: getargs.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/getargs.c,v retrieving revision 2.36 retrieving revision 2.37 diff -C2 -r2.36 -r2.37 *** getargs.c 2000/06/30 23:58:06 2.36 --- getargs.c 2000/07/01 01:07:38 2.37 *************** *** 19,22 **** --- 19,25 ---- #include + #ifdef HAVE_LIMITS_H + #include + #endif From python-dev@python.org Sat Jul 1 02:08:14 2000 From: python-dev@python.org (Guido van Rossum) Date: Fri, 30 Jun 2000 18:08:14 -0700 Subject: [Python-checkins] CVS: python/dist/src/Python getmtime.c,2.12,2.13 Message-ID: <200007010108.SAA24720@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Python In directory slayer.i.sourceforge.net:/tmp/cvs-serv24712 Modified Files: getmtime.c Log Message: Jack Jansen, Mac patch: If we have stat.h include it if we don't have sys/stat.h Index: getmtime.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/getmtime.c,v retrieving revision 2.12 retrieving revision 2.13 diff -C2 -r2.12 -r2.13 *** getmtime.c 2000/06/30 23:58:06 2.12 --- getmtime.c 2000/07/01 01:08:11 2.13 *************** *** 17,22 **** --- 17,28 ---- #include + #ifndef DONT_HAVE_SYS_TYPES_H #include + #endif + #ifndef DONT_HAVE_SYS_STAT_H #include + #elif defined(HAVE_STAT_H) + #include + #endif time_t From python-dev@python.org Sat Jul 1 02:09:45 2000 From: python-dev@python.org (Guido van Rossum) Date: Fri, 30 Jun 2000 18:09:45 -0700 Subject: [Python-checkins] CVS: python/dist/src/Modules arraymodule.c,2.45,2.46 Message-ID: <200007010109.SAA24756@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Modules In directory slayer.i.sourceforge.net:/tmp/cvs-serv24747 Modified Files: arraymodule.c Log Message: Jack Jansen, Mac patch: Include limits.h if we have it. Index: arraymodule.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/arraymodule.c,v retrieving revision 2.45 retrieving revision 2.46 diff -C2 -r2.45 -r2.46 *** arraymodule.c 2000/07/01 00:38:19 2.45 --- arraymodule.c 2000/07/01 01:09:43 2.46 *************** *** 23,26 **** --- 23,29 ---- #endif /* DONT_HAVE_SYS_TYPES_H */ #endif /* !STDC_HEADERS */ + #ifdef HAVE_LIMITS_H + #include + #endif /* HAVE_LIMITS_H */ struct arrayobject; /* Forward */ From python-dev@python.org Sat Jul 1 02:13:33 2000 From: python-dev@python.org (Guido van Rossum) Date: Fri, 30 Jun 2000 18:13:33 -0700 Subject: [Python-checkins] CVS: python/dist/src/Lib/test test_openpty.py,NONE,1.1 Message-ID: <200007010113.SAA24952@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Lib/test In directory slayer.i.sourceforge.net:/tmp/cvs-serv24946 Added Files: test_openpty.py Log Message: Thomas Wouters: Test script for openpty() --- NEW FILE --- # Test to see if openpty works. (But don't worry if it isn't available.) import os from test_support import verbose, TestFailed try: if verbose: print "Calling os.openpty()" master, slave = os.openpty() if verbose: print "(master, slave) = (%d, %d)"%(master, slave) except AttributeError: raise ImportError, "No openpty() available." ## # Please uncomment these if os.isatty() is added. ## if not os.isatty(master): ## raise TestFailed, "Master-end of pty is not a terminal." ## if not os.isatty(slave): ## raise TestFailed, "Slave-end of pty is not a terminal." os.write(slave, 'Ping!') print os.read(master, 1024) From python-dev@python.org Sat Jul 1 02:41:59 2000 From: python-dev@python.org (Fred L. Drake) Date: Fri, 30 Jun 2000 18:41:59 -0700 Subject: [Python-checkins] CVS: python/dist/src/Doc/texinputs copyright.tex,1.6,1.7 Message-ID: <200007010141.SAA26222@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Doc/texinputs In directory slayer.i.sourceforge.net:/tmp/cvs-serv26210/texinputs Modified Files: copyright.tex Log Message: The new copyright / license. Index: copyright.tex =================================================================== RCS file: /cvsroot/python/python/dist/src/Doc/texinputs/copyright.tex,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** copyright.tex 1998/02/11 14:42:06 1.6 --- copyright.tex 2000/07/01 01:41:55 1.7 *************** *** 1,29 **** ! Copyright \copyright{} 1991-1995 by Stichting Mathematisch Centrum, ! Amsterdam, The Netherlands. ! \begin{center} ! All Rights Reserved ! \end{center} ! Permission to use, copy, modify, and distribute this software and its ! documentation for any purpose and without fee is hereby granted, ! provided that the above copyright notice appear in all copies and that ! both that copyright notice and this permission notice appear in ! supporting documentation, and that the names of Stichting Mathematisch ! Centrum or CWI or Corporation for National Research Initiatives or ! CNRI not be used in advertising or publicity pertaining to ! distribution of the software without specific, written prior ! permission. ! While CWI is the initial source for this software, a modified version ! is made available by the Corporation for National Research Initiatives ! (CNRI) at the Internet address \url{ftp://ftp.python.org}. ! STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH ! REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH ! CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL ! DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ! PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ! TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR ! PERFORMANCE OF THIS SOFTWARE. --- 1,37 ---- ! \leftline{Copyright \copyright{} 2000, BeOpen.com.} ! \leftline{Copyright \copyright{} 1995-2000, Corporation for National Research Initiatives.} ! \leftline{Copyright \copyright{} 1990-1995, Stichting Mathematisch Centrum.} ! \leftline{All rights reserved.} ! Redistribution and use in source and binary forms, with or without ! modification, are permitted provided that the following conditions are ! met: ! \begin{itemize} ! \item ! Redistributions of source code must retain the above copyright ! notice, this list of conditions and the following disclaimer. ! \item ! Redistributions in binary form must reproduce the above copyright ! notice, this list of conditions and the following disclaimer in the ! documentation and/or other materials provided with the distribution. ! \item ! Neither names of the copyright holders nor the names of their ! contributors may be used to endorse or promote products derived from ! this software without specific prior written permission. ! \end{itemize} ! ! THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ! ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT ! LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR ! A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT ! HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, ! INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, ! BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS ! OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ! ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR ! TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE ! USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH ! DAMAGE. From python-dev@python.org Sat Jul 1 03:37:40 2000 From: python-dev@python.org (Fred L. Drake) Date: Fri, 30 Jun 2000 19:37:40 -0700 Subject: [Python-checkins] CVS: python/dist/src/Doc Makefile,1.196,1.197 Message-ID: <200007010237.TAA02661@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Doc In directory slayer.i.sourceforge.net:/tmp/cvs-serv2654 Modified Files: Makefile Log Message: Do not build the "longhtml" version for pre-release versions. Index: Makefile =================================================================== RCS file: /cvsroot/python/python/dist/src/Doc/Makefile,v retrieving revision 1.196 retrieving revision 1.197 diff -C2 -r1.196 -r1.197 *** Makefile 2000/06/30 16:06:19 1.196 --- Makefile 2000/07/01 02:37:37 1.197 *************** *** 311,315 **** ziplatex: latex-$(RELEASE).zip ! zips: zippdf zipps ziphtml ziplonghtml bziphtml: html-$(RELEASE).tar.bz2 --- 311,319 ---- ziplatex: latex-$(RELEASE).zip ! # Only build the longhtml version for final releases; use the second ! # version of this for pre-release versions. ! # ! #zips: zippdf zipps ziphtml ziplonghtml ! zips: zippdf zipps ziphtml bziphtml: html-$(RELEASE).tar.bz2 From python-dev@python.org Sat Jul 1 03:51:26 2000 From: python-dev@python.org (Tim Peters) Date: Fri, 30 Jun 2000 19:51:26 -0700 Subject: [Python-checkins] CVS: python/dist/src/PCbuild readme.txt,1.7,1.8 Message-ID: <200007010251.TAA03264@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/PCbuild In directory slayer.i.sourceforge.net:/tmp/cvs-serv3242/python/dist/src/pcbuild Modified Files: readme.txt Log Message: Repaired two URLs. Index: readme.txt =================================================================== RCS file: /cvsroot/python/python/dist/src/PCbuild/readme.txt,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -r1.7 -r1.8 *** readme.txt 2000/07/01 00:03:43 1.7 --- readme.txt 2000/07/01 02:51:23 1.8 *************** *** 31,37 **** SUBPROJECTS ----------- ! These subprojects should build out of the box. Subprojects other than the ! main ones (python20, python, pythonw) generally build a DLL (renamed to ! .pyd) from a specific module so that users don't have to load the code supporting that module unless they import the module. --- 31,37 ---- SUBPROJECTS ----------- ! These subprojects should build out of the box. Subprojects other than the ! main ones (python20, python, pythonw) generally build a DLL (renamed to ! .pyd) from a specific module so that users don't have to load the code supporting that module unless they import the module. *************** *** 66,70 **** _tkinter Python wrapper for the Tk windowing system. Requires tcl831.exe from ! http://dev.scriptics.com/software/tcltk/downloadnow83.tml zlib --- 66,70 ---- _tkinter Python wrapper for the Tk windowing system. Requires tcl831.exe from ! http://dev.scriptics.com/software/tcltk/downloadnow83.html zlib *************** *** 75,80 **** bsddb ! Python wrapper for the BSD database 1.85. Requires bsddbmodule.zip, ! from the bsddb link at http://www.nightmare.com/software.html --- 75,80 ---- bsddb ! Python wrapper for the BSD database 1.85. Requires db.1.85.win32.zip, ! from the "bsd db" link at http://www.nightmare.com/software.html From python-dev@python.org Sat Jul 1 04:13:03 2000 From: python-dev@python.org (Mark Hammond) Date: Fri, 30 Jun 2000 20:13:03 -0700 Subject: [Python-checkins] CVS: python/dist/src/PCbuild winsound.dsp,1.2,1.3 winreg.dsp,1.4,1.5 unicodedata.dsp,1.2,1.3 python20.dsp,1.3,1.4 mmap.dsp,1.4,1.5 Message-ID: <200007010313.UAA10536@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/PCbuild In directory slayer.i.sourceforge.net:/tmp/cvs-serv10440 Modified Files: winsound.dsp winreg.dsp unicodedata.dsp python20.dsp mmap.dsp Log Message: Update all projects so Debug builds use "/Zi" instead of "/ZI", which means everything should still build under MSVC5 NOTE: All these projects had messed-up line endings (but MSVC didnt mind). Executing a diff with "--ignore-all-space" will show the specific changes, but I made a complete checkin with correct line endiings as it is the correct thing to do! Index: winsound.dsp =================================================================== RCS file: /cvsroot/python/python/dist/src/PCbuild/winsound.dsp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** winsound.dsp 2000/04/21 21:43:40 1.2 --- winsound.dsp 2000/07/01 03:12:59 1.3 *************** *** 1,99 **** ! # Microsoft Developer Studio Project File - Name="winsound" - Package Owner=<4> ! # Microsoft Developer Studio Generated Build File, Format Version 6.00 ! # ** DO NOT EDIT ** ! ! # TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 ! ! CFG=winsound - Win32 Debug ! !MESSAGE This is not a valid makefile. To build this project using NMAKE, ! !MESSAGE use the Export Makefile command and run ! !MESSAGE ! !MESSAGE NMAKE /f "winsound.mak". ! !MESSAGE ! !MESSAGE You can specify a configuration when running NMAKE ! !MESSAGE by defining the macro CFG on the command line. For example: ! !MESSAGE ! !MESSAGE NMAKE /f "winsound.mak" CFG="winsound - Win32 Debug" ! !MESSAGE ! !MESSAGE Possible choices for configuration are: ! !MESSAGE ! !MESSAGE "winsound - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") ! !MESSAGE "winsound - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") ! !MESSAGE ! ! # Begin Project ! # PROP AllowPerConfigDependencies 0 ! # PROP Scc_ProjName "winsound" ! # PROP Scc_LocalPath "..\pc" ! CPP=cl.exe ! MTL=midl.exe ! RSC=rc.exe ! ! !IF "$(CFG)" == "winsound - Win32 Release" ! ! # PROP BASE Use_MFC 0 ! # PROP BASE Use_Debug_Libraries 0 ! # PROP BASE Output_Dir "Release" ! # PROP BASE Intermediate_Dir "Release" ! # PROP BASE Target_Dir "" ! # PROP Use_MFC 0 ! # PROP Use_Debug_Libraries 0 ! # PROP Output_Dir "." ! # PROP Intermediate_Dir "x86-temp-release\winsound" ! # PROP Ignore_Export_Lib 0 ! # PROP Target_Dir "" ! F90=df.exe ! # ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WINSOUND_EXPORTS" /YX /FD /c ! # ADD CPP /nologo /MD /W3 /GX /O2 /I "..\Include" /I "..\PC" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WINSOUND_EXPORTS" /YX /FD /c ! # ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 ! # ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 ! # ADD BASE RSC /l 0xc09 /d "NDEBUG" ! # ADD RSC /l 0xc09 /d "NDEBUG" ! BSC32=bscmake.exe ! # ADD BASE BSC32 /nologo ! # ADD BSC32 /nologo ! LINK32=link.exe ! # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386 ! # ADD LINK32 kernel32.lib winmm.lib /nologo /base:"0x1D130000" /dll /machine:I386 /out:"./winsound.pyd" /export:initwinsound ! # SUBTRACT LINK32 /pdb:none ! ! !ELSEIF "$(CFG)" == "winsound - Win32 Debug" ! ! # PROP BASE Use_MFC 0 ! # PROP BASE Use_Debug_Libraries 1 ! # PROP BASE Output_Dir "Debug" ! # PROP BASE Intermediate_Dir "Debug" ! # PROP BASE Target_Dir "" ! # PROP Use_MFC 0 ! # PROP Use_Debug_Libraries 1 ! # PROP Output_Dir "." ! # PROP Intermediate_Dir "x86-temp-debug\winsound" ! # PROP Ignore_Export_Lib 0 ! # PROP Target_Dir "" ! F90=df.exe ! # ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WINSOUND_EXPORTS" /YX /FD /GZ /c ! # ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "..\Include" /I "..\PC" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WINSOUND_EXPORTS" /YX /FD /GZ /c ! # ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 ! # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 ! # ADD BASE RSC /l 0xc09 /d "_DEBUG" ! # ADD RSC /l 0xc09 /d "_DEBUG" ! BSC32=bscmake.exe ! # ADD BASE BSC32 /nologo ! # ADD BSC32 /nologo ! LINK32=link.exe ! # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept ! # ADD LINK32 kernel32.lib winmm.lib /nologo /base:"0x1D130000" /dll /debug /machine:I386 /out:"./winsound_d.pyd" /pdbtype:sept /export:initwinsound ! # SUBTRACT LINK32 /pdb:none ! ! !ENDIF ! ! # Begin Target ! ! # Name "winsound - Win32 Release" ! # Name "winsound - Win32 Debug" ! # Begin Source File ! ! SOURCE=..\PC\winsound.c ! # End Source File ! # End Target ! # End Project --- 1,99 ---- ! # Microsoft Developer Studio Project File - Name="winsound" - Package Owner=<4> ! # Microsoft Developer Studio Generated Build File, Format Version 6.00 ! # ** DO NOT EDIT ** ! ! # TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 ! ! CFG=winsound - Win32 Debug ! !MESSAGE This is not a valid makefile. To build this project using NMAKE, ! !MESSAGE use the Export Makefile command and run ! !MESSAGE ! !MESSAGE NMAKE /f "winsound.mak". ! !MESSAGE ! !MESSAGE You can specify a configuration when running NMAKE ! !MESSAGE by defining the macro CFG on the command line. For example: ! !MESSAGE ! !MESSAGE NMAKE /f "winsound.mak" CFG="winsound - Win32 Debug" ! !MESSAGE ! !MESSAGE Possible choices for configuration are: ! !MESSAGE ! !MESSAGE "winsound - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") ! !MESSAGE "winsound - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") ! !MESSAGE ! ! # Begin Project ! # PROP AllowPerConfigDependencies 0 ! # PROP Scc_ProjName "winsound" ! # PROP Scc_LocalPath "..\pc" ! CPP=cl.exe ! MTL=midl.exe ! RSC=rc.exe ! ! !IF "$(CFG)" == "winsound - Win32 Release" ! ! # PROP BASE Use_MFC 0 ! # PROP BASE Use_Debug_Libraries 0 ! # PROP BASE Output_Dir "Release" ! # PROP BASE Intermediate_Dir "Release" ! # PROP BASE Target_Dir "" ! # PROP Use_MFC 0 ! # PROP Use_Debug_Libraries 0 ! # PROP Output_Dir "." ! # PROP Intermediate_Dir "x86-temp-release\winsound" ! # PROP Ignore_Export_Lib 0 ! # PROP Target_Dir "" ! F90=df.exe ! # ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WINSOUND_EXPORTS" /YX /FD /c ! # ADD CPP /nologo /MD /W3 /GX /O2 /I "..\Include" /I "..\PC" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WINSOUND_EXPORTS" /YX /FD /c ! # ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 ! # ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 ! # ADD BASE RSC /l 0xc09 /d "NDEBUG" ! # ADD RSC /l 0xc09 /d "NDEBUG" ! BSC32=bscmake.exe ! # ADD BASE BSC32 /nologo ! # ADD BSC32 /nologo ! LINK32=link.exe ! # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386 ! # ADD LINK32 kernel32.lib winmm.lib /nologo /base:"0x1D130000" /dll /machine:I386 /out:"./winsound.pyd" /export:initwinsound ! # SUBTRACT LINK32 /pdb:none ! ! !ELSEIF "$(CFG)" == "winsound - Win32 Debug" ! ! # PROP BASE Use_MFC 0 ! # PROP BASE Use_Debug_Libraries 1 ! # PROP BASE Output_Dir "Debug" ! # PROP BASE Intermediate_Dir "Debug" ! # PROP BASE Target_Dir "" ! # PROP Use_MFC 0 ! # PROP Use_Debug_Libraries 1 ! # PROP Output_Dir "." ! # PROP Intermediate_Dir "x86-temp-debug\winsound" ! # PROP Ignore_Export_Lib 0 ! # PROP Target_Dir "" ! F90=df.exe ! # ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WINSOUND_EXPORTS" /YX /FD /GZ /c ! # ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\Include" /I "..\PC" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WINSOUND_EXPORTS" /YX /FD /GZ /c ! # ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 ! # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 ! # ADD BASE RSC /l 0xc09 /d "_DEBUG" ! # ADD RSC /l 0xc09 /d "_DEBUG" ! BSC32=bscmake.exe ! # ADD BASE BSC32 /nologo ! # ADD BSC32 /nologo ! LINK32=link.exe ! # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept ! # ADD LINK32 kernel32.lib winmm.lib /nologo /base:"0x1D130000" /dll /debug /machine:I386 /out:"./winsound_d.pyd" /pdbtype:sept /export:initwinsound ! # SUBTRACT LINK32 /pdb:none ! ! !ENDIF ! ! # Begin Target ! ! # Name "winsound - Win32 Release" ! # Name "winsound - Win32 Debug" ! # Begin Source File ! ! SOURCE=..\PC\winsound.c ! # End Source File ! # End Target ! # End Project Index: winreg.dsp =================================================================== RCS file: /cvsroot/python/python/dist/src/PCbuild/winreg.dsp,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** winreg.dsp 2000/06/29 16:43:49 1.4 --- winreg.dsp 2000/07/01 03:12:59 1.5 *************** *** 72,76 **** F90=df.exe # ADD BASE CPP /nologo /MTd /W3 /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "winreg_EXPORTS" /YX /FD /GZ /c ! # ADD CPP /nologo /MDd /W3 /GX /ZI /Od /I "..\Include" /I "..\PC" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /GZ /c # ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 --- 72,76 ---- F90=df.exe # ADD BASE CPP /nologo /MTd /W3 /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "winreg_EXPORTS" /YX /FD /GZ /c ! # ADD CPP /nologo /MDd /W3 /GX /Zi /Od /I "..\Include" /I "..\PC" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /YX /FD /GZ /c # ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 Index: unicodedata.dsp =================================================================== RCS file: /cvsroot/python/python/dist/src/PCbuild/unicodedata.dsp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** unicodedata.dsp 2000/04/21 21:26:07 1.2 --- unicodedata.dsp 2000/07/01 03:12:59 1.3 *************** *** 1,103 **** ! # Microsoft Developer Studio Project File - Name="unicodedata" - Package Owner=<4> ! # Microsoft Developer Studio Generated Build File, Format Version 6.00 ! # ** DO NOT EDIT ** ! ! # TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 ! ! CFG=unicodedata - Win32 Debug ! !MESSAGE This is not a valid makefile. To build this project using NMAKE, ! !MESSAGE use the Export Makefile command and run ! !MESSAGE ! !MESSAGE NMAKE /f "unicodedata.mak". ! !MESSAGE ! !MESSAGE You can specify a configuration when running NMAKE ! !MESSAGE by defining the macro CFG on the command line. For example: ! !MESSAGE ! !MESSAGE NMAKE /f "unicodedata.mak" CFG="unicodedata - Win32 Debug" ! !MESSAGE ! !MESSAGE Possible choices for configuration are: ! !MESSAGE ! !MESSAGE "unicodedata - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") ! !MESSAGE "unicodedata - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") ! !MESSAGE ! ! # Begin Project ! # PROP AllowPerConfigDependencies 0 ! # PROP Scc_ProjName "unicodedata" ! # PROP Scc_LocalPath ".." ! CPP=cl.exe ! MTL=midl.exe ! RSC=rc.exe ! ! !IF "$(CFG)" == "unicodedata - Win32 Release" ! ! # PROP BASE Use_MFC 0 ! # PROP BASE Use_Debug_Libraries 0 ! # PROP BASE Output_Dir "Release" ! # PROP BASE Intermediate_Dir "Release" ! # PROP BASE Target_Dir "" ! # PROP Use_MFC 0 ! # PROP Use_Debug_Libraries 0 ! # PROP Output_Dir "." ! # PROP Intermediate_Dir "x86-temp-release\unicodedata" ! # PROP Ignore_Export_Lib 0 ! # PROP Target_Dir "" ! F90=df.exe ! # ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "MMAP_EXPORTS" /YX /FD /c ! # ADD CPP /nologo /MD /W3 /GX /O2 /I "..\Include" /I "..\PC" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "MMAP_EXPORTS" /YX /FD /c ! # ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 ! # ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 ! # ADD BASE RSC /l 0xc09 /d "NDEBUG" ! # ADD RSC /l 0xc09 /d "NDEBUG" ! BSC32=bscmake.exe ! # ADD BASE BSC32 /nologo ! # ADD BSC32 /nologo ! LINK32=link.exe ! # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386 ! # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /base:"0x1D120000" /dll /machine:I386 /out:"./unicodedata.pyd" /export:initunicodedata ! # SUBTRACT LINK32 /pdb:none ! ! !ELSEIF "$(CFG)" == "unicodedata - Win32 Debug" ! ! # PROP BASE Use_MFC 0 ! # PROP BASE Use_Debug_Libraries 1 ! # PROP BASE Output_Dir "Debug" ! # PROP BASE Intermediate_Dir "Debug" ! # PROP BASE Target_Dir "" ! # PROP Use_MFC 0 ! # PROP Use_Debug_Libraries 1 ! # PROP Output_Dir "." ! # PROP Intermediate_Dir "x86-temp-debug\unicodedata" ! # PROP Ignore_Export_Lib 0 ! # PROP Target_Dir "" ! F90=df.exe ! # ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "MMAP_EXPORTS" /YX /FD /GZ /c ! # ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "..\Include" /I "..\PC" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "MMAP_EXPORTS" /YX /FD /GZ /c ! # ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 ! # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 ! # ADD BASE RSC /l 0xc09 /d "_DEBUG" ! # ADD RSC /l 0xc09 /d "_DEBUG" ! BSC32=bscmake.exe ! # ADD BASE BSC32 /nologo ! # ADD BSC32 /nologo ! LINK32=link.exe ! # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept ! # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /base:"0x1D120000" /dll /debug /machine:I386 /out:"./unicodedata_d.pyd" /pdbtype:sept /export:initunicodedata ! # SUBTRACT LINK32 /pdb:none ! ! !ENDIF ! ! # Begin Target ! ! # Name "unicodedata - Win32 Release" ! # Name "unicodedata - Win32 Debug" ! # Begin Source File ! ! SOURCE=..\Modules\unicodedata.c ! # End Source File ! # Begin Source File ! ! SOURCE=..\Modules\unicodedatabase.c ! # End Source File ! # End Target ! # End Project --- 1,103 ---- ! # Microsoft Developer Studio Project File - Name="unicodedata" - Package Owner=<4> ! # Microsoft Developer Studio Generated Build File, Format Version 6.00 ! # ** DO NOT EDIT ** ! ! # TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 ! ! CFG=unicodedata - Win32 Debug ! !MESSAGE This is not a valid makefile. To build this project using NMAKE, ! !MESSAGE use the Export Makefile command and run ! !MESSAGE ! !MESSAGE NMAKE /f "unicodedata.mak". ! !MESSAGE ! !MESSAGE You can specify a configuration when running NMAKE ! !MESSAGE by defining the macro CFG on the command line. For example: ! !MESSAGE ! !MESSAGE NMAKE /f "unicodedata.mak" CFG="unicodedata - Win32 Debug" ! !MESSAGE ! !MESSAGE Possible choices for configuration are: ! !MESSAGE ! !MESSAGE "unicodedata - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") ! !MESSAGE "unicodedata - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") ! !MESSAGE ! ! # Begin Project ! # PROP AllowPerConfigDependencies 0 ! # PROP Scc_ProjName "unicodedata" ! # PROP Scc_LocalPath ".." ! CPP=cl.exe ! MTL=midl.exe ! RSC=rc.exe ! ! !IF "$(CFG)" == "unicodedata - Win32 Release" ! ! # PROP BASE Use_MFC 0 ! # PROP BASE Use_Debug_Libraries 0 ! # PROP BASE Output_Dir "Release" ! # PROP BASE Intermediate_Dir "Release" ! # PROP BASE Target_Dir "" ! # PROP Use_MFC 0 ! # PROP Use_Debug_Libraries 0 ! # PROP Output_Dir "." ! # PROP Intermediate_Dir "x86-temp-release\unicodedata" ! # PROP Ignore_Export_Lib 0 ! # PROP Target_Dir "" ! F90=df.exe ! # ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "MMAP_EXPORTS" /YX /FD /c ! # ADD CPP /nologo /MD /W3 /GX /O2 /I "..\Include" /I "..\PC" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "MMAP_EXPORTS" /YX /FD /c ! # ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 ! # ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 ! # ADD BASE RSC /l 0xc09 /d "NDEBUG" ! # ADD RSC /l 0xc09 /d "NDEBUG" ! BSC32=bscmake.exe ! # ADD BASE BSC32 /nologo ! # ADD BSC32 /nologo ! LINK32=link.exe ! # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386 ! # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /base:"0x1D120000" /dll /machine:I386 /out:"./unicodedata.pyd" /export:initunicodedata ! # SUBTRACT LINK32 /pdb:none ! ! !ELSEIF "$(CFG)" == "unicodedata - Win32 Debug" ! ! # PROP BASE Use_MFC 0 ! # PROP BASE Use_Debug_Libraries 1 ! # PROP BASE Output_Dir "Debug" ! # PROP BASE Intermediate_Dir "Debug" ! # PROP BASE Target_Dir "" ! # PROP Use_MFC 0 ! # PROP Use_Debug_Libraries 1 ! # PROP Output_Dir "." ! # PROP Intermediate_Dir "x86-temp-debug\unicodedata" ! # PROP Ignore_Export_Lib 0 ! # PROP Target_Dir "" ! F90=df.exe ! # ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "MMAP_EXPORTS" /YX /FD /GZ /c ! # ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\Include" /I "..\PC" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "MMAP_EXPORTS" /YX /FD /GZ /c ! # ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 ! # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 ! # ADD BASE RSC /l 0xc09 /d "_DEBUG" ! # ADD RSC /l 0xc09 /d "_DEBUG" ! BSC32=bscmake.exe ! # ADD BASE BSC32 /nologo ! # ADD BSC32 /nologo ! LINK32=link.exe ! # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept ! # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /base:"0x1D120000" /dll /debug /machine:I386 /out:"./unicodedata_d.pyd" /pdbtype:sept /export:initunicodedata ! # SUBTRACT LINK32 /pdb:none ! ! !ENDIF ! ! # Begin Target ! ! # Name "unicodedata - Win32 Release" ! # Name "unicodedata - Win32 Debug" ! # Begin Source File ! ! SOURCE=..\Modules\unicodedata.c ! # End Source File ! # Begin Source File ! ! SOURCE=..\Modules\unicodedatabase.c ! # End Source File ! # End Target ! # End Project Index: python20.dsp =================================================================== RCS file: /cvsroot/python/python/dist/src/PCbuild/python20.dsp,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** python20.dsp 2000/06/30 20:30:03 1.3 --- python20.dsp 2000/07/01 03:12:59 1.4 *************** *** 1,1689 **** ! # Microsoft Developer Studio Project File - Name="python20" - Package Owner=<4> ! # Microsoft Developer Studio Generated Build File, Format Version 6.00 ! # ** DO NOT EDIT ** ! ! # TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 ! # TARGTYPE "Win32 (ALPHA) Dynamic-Link Library" 0x0602 ! ! CFG=python20 - Win32 Alpha Debug ! !MESSAGE This is not a valid makefile. To build this project using NMAKE, ! !MESSAGE use the Export Makefile command and run [...3350 lines suppressed...] ! !ENDIF ! ! # End Source File ! # Begin Source File ! ! SOURCE=..\Modules\yuvconvert.c ! ! !IF "$(CFG)" == "python20 - Win32 Release" ! ! !ELSEIF "$(CFG)" == "python20 - Win32 Debug" ! ! !ELSEIF "$(CFG)" == "python20 - Win32 Alpha Debug" ! ! !ELSEIF "$(CFG)" == "python20 - Win32 Alpha Release" ! ! !ENDIF ! ! # End Source File ! # End Target ! # End Project Index: mmap.dsp =================================================================== RCS file: /cvsroot/python/python/dist/src/PCbuild/mmap.dsp,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** mmap.dsp 2000/04/24 14:17:17 1.4 --- mmap.dsp 2000/07/01 03:12:59 1.5 *************** *** 72,76 **** F90=df.exe # ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "MMAP_EXPORTS" /YX /FD /GZ /c ! # ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "..\Include" /I "..\PC" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "MMAP_EXPORTS" /YX /FD /GZ /c # ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 --- 72,76 ---- F90=df.exe # ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "MMAP_EXPORTS" /YX /FD /GZ /c ! # ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\Include" /I "..\PC" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "MMAP_EXPORTS" /YX /FD /GZ /c # ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 From python-dev@python.org Sat Jul 1 04:14:53 2000 From: python-dev@python.org (Mark Hammond) Date: Fri, 30 Jun 2000 20:14:53 -0700 Subject: [Python-checkins] CVS: python/dist/src/PCbuild ucnhash.dsp,1.1,1.2 Message-ID: <200007010314.UAA10590@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/PCbuild In directory slayer.i.sourceforge.net:/tmp/cvs-serv10580 Modified Files: ucnhash.dsp Log Message: ucnhash now correctly builds for Windows. Index: ucnhash.dsp =================================================================== RCS file: /cvsroot/python/python/dist/src/PCbuild/ucnhash.dsp,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** ucnhash.dsp 2000/06/28 16:40:10 1.1 --- ucnhash.dsp 2000/07/01 03:14:51 1.2 *************** *** 39,48 **** # PROP Use_MFC 0 # PROP Use_Debug_Libraries 0 ! # PROP Output_Dir "ucnhash___Win32_Release0" ! # PROP Intermediate_Dir "ucnhash___Win32_Release0" # PROP Target_Dir "" F90=df.exe # ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "UCNHASH_EXPORTS" /YX /FD /c ! # ADD CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "UCNHASH_EXPORTS" /YX /FD /c # ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 --- 39,49 ---- # PROP Use_MFC 0 # PROP Use_Debug_Libraries 0 ! # PROP Output_Dir "." ! # PROP Intermediate_Dir "x86-temp-release\ucnhash" ! # PROP Ignore_Export_Lib 0 # PROP Target_Dir "" F90=df.exe # ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "UCNHASH_EXPORTS" /YX /FD /c ! # ADD CPP /nologo /MD /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "UCNHASH_EXPORTS" /YX /FD /c # ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 *************** *** 54,58 **** LINK32=link.exe # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386 ! # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386 !ELSEIF "$(CFG)" == "ucnhash - Win32 Debug" --- 55,60 ---- LINK32=link.exe # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386 ! # ADD LINK32 /nologo /dll /machine:I386 /out:"ucnhash.pyd" /export:initucnhash ! # SUBTRACT LINK32 /pdb:none !ELSEIF "$(CFG)" == "ucnhash - Win32 Debug" *************** *** 65,74 **** # PROP Use_MFC 0 # PROP Use_Debug_Libraries 1 ! # PROP Output_Dir "ucnhash___Win32_Debug0" ! # PROP Intermediate_Dir "ucnhash___Win32_Debug0" # PROP Target_Dir "" F90=df.exe ! # ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "UCNHASH_EXPORTS" /YX /FD /GZ /c ! # ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "UCNHASH_EXPORTS" /YX /FD /GZ /c # ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 --- 67,77 ---- # PROP Use_MFC 0 # PROP Use_Debug_Libraries 1 ! # PROP Output_Dir "." ! # PROP Intermediate_Dir "x86-temp-debug\ucnhash" ! # PROP Ignore_Export_Lib 0 # PROP Target_Dir "" F90=df.exe ! # ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "UCNHASH_EXPORTS" /YX /FD /GZ /c ! # ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "UCNHASH_EXPORTS" /YX /FD /GZ /c # ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 *************** *** 80,84 **** LINK32=link.exe # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept ! # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept !ENDIF --- 83,88 ---- LINK32=link.exe # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept ! # ADD LINK32 /nologo /dll /debug /machine:I386 /out:"ucnhash_d.pyd" /pdbtype:sept /export:initucnhash ! # SUBTRACT LINK32 /pdb:none !ENDIF *************** *** 88,103 **** # Name "ucnhash - Win32 Release" # Name "ucnhash - Win32 Debug" ! # Begin Group "Source Files" ! # PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" ! # End Group ! # Begin Group "Header Files" ! ! # PROP Default_Filter "h;hpp;hxx;hm;inl" ! # End Group ! # Begin Group "Resource Files" ! ! # PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" ! # End Group # End Target # End Project --- 92,99 ---- # Name "ucnhash - Win32 Release" # Name "ucnhash - Win32 Debug" ! # Begin Source File ! SOURCE=..\Modules\ucnhash.c ! # End Source File # End Target # End Project From python-dev@python.org Sat Jul 1 04:15:39 2000 From: python-dev@python.org (Mark Hammond) Date: Fri, 30 Jun 2000 20:15:39 -0700 Subject: [Python-checkins] CVS: python/dist/src/PCbuild pcbuild.dsw,1.17,1.18 Message-ID: <200007010315.UAA10620@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/PCbuild In directory slayer.i.sourceforge.net:/tmp/cvs-serv10613 Modified Files: pcbuild.dsw Log Message: Add ucnhash to the workspace, as a dependency of python20. Index: pcbuild.dsw =================================================================== RCS file: /cvsroot/python/python/dist/src/PCbuild/pcbuild.dsw,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -r1.17 -r1.18 *** pcbuild.dsw 2000/06/30 14:04:10 1.17 --- pcbuild.dsw 2000/07/01 03:15:37 1.18 *************** *** 166,169 **** --- 166,184 ---- ############################################################################### + Project: "ucnhash"=".\ucnhash.dsp" - Package Owner=<4> + + Package=<5> + {{{ + }}} + + Package=<4> + {{{ + Begin Project Dependency + Project_Dep_Name python20 + End Project Dependency + }}} + + ############################################################################### + Project: "unicodedata"=".\unicodedata.dsp" - Package Owner=<4> *************** *** 237,240 **** ############################################################################### - --- 252,254 ---- From python-dev@python.org Sat Jul 1 04:27:25 2000 From: python-dev@python.org (Guido van Rossum) Date: Fri, 30 Jun 2000 20:27:25 -0700 Subject: [Python-checkins] CVS: python/dist/src/PCbuild bsddb.dsp,1.10,1.11 Message-ID: <200007010327.UAA11113@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/PCbuild In directory slayer.i.sourceforge.net:/tmp/cvs-serv11092 Modified Files: bsddb.dsp Log Message: Define a magical symbol and magic include path so it will compile without changes to the bsddb source. Index: bsddb.dsp =================================================================== RCS file: /cvsroot/python/python/dist/src/PCbuild/bsddb.dsp,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -r1.10 -r1.11 *** bsddb.dsp 2000/04/21 21:26:07 1.10 --- bsddb.dsp 2000/07/01 03:27:22 1.11 *************** *** 170,174 **** --- 170,180 ---- !IF "$(CFG)" == "bsddb - Win32 Release" + # ADD CPP /I "..\..\bsddb\PORT\win32\include" /I "..\..\bsddb\PORT\include" /D "__DBINTERFACE_PRIVATE" + # SUBTRACT CPP /X /I "..\..\bsddb\port\include" + !ELSEIF "$(CFG)" == "bsddb - Win32 Debug" + + # ADD CPP /I "..\..\bsddb\PORT\win32\include" /I "..\..\bsddb\PORT\include" /D "__DBINTERFACE_PRIVATE" + # SUBTRACT CPP /I "..\..\bsddb\port\include" !ELSEIF "$(CFG)" == "bsddb - Win32 Alpha Debug" From python-dev@python.org Sat Jul 1 04:34:16 2000 From: python-dev@python.org (Guido van Rossum) Date: Fri, 30 Jun 2000 20:34:16 -0700 Subject: [Python-checkins] CVS: python/dist/src/Lib/test/output test_openpty,NONE,1.1 Message-ID: <200007010334.UAA11441@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Lib/test/output In directory slayer.i.sourceforge.net:/tmp/cvs-serv11430 Added Files: test_openpty Log Message: output for openpty test --- NEW FILE --- test_openpty Ping! From python-dev@python.org Sat Jul 1 04:40:15 2000 From: python-dev@python.org (Fred L. Drake) Date: Fri, 30 Jun 2000 20:40:15 -0700 Subject: [Python-checkins] CVS: python/dist/src/Modules socketmodule.c,1.111,1.112 Message-ID: <200007010340.UAA11703@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Modules In directory slayer.i.sourceforge.net:/tmp/cvs-serv11696 Modified Files: socketmodule.c Log Message: Restore strict checking of socket address values; addresses passed to the bind(), connect(), and connect_ex() methods must be a single parameter. Originally part of 1.98, reverted in 1.100. Index: socketmodule.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/socketmodule.c,v retrieving revision 1.111 retrieving revision 1.112 diff -C2 -r1.111 -r1.112 *** socketmodule.c 2000/06/30 23:58:05 1.111 --- socketmodule.c 2000/07/01 03:40:12 1.112 *************** *** 46,58 **** Socket methods: - (NB: an argument list of the form (sockaddr...) means that multiple - arguments are treated the same as a single tuple argument, for backwards - compatibility. This is deprecated, and will be removed in future versions.) - s.accept() --> new socket object, sockaddr ! - s.bind(sockaddr...) --> None - s.close() --> None ! - s.connect(sockaddr...) --> None ! - s.connect_ex(sockaddr...) --> 0 or errno (handy for e.g. async connect) - s.fileno() --> file descriptor - s.dup() --> same as socket.fromfd(os.dup(s.fileno(), ...) --- 46,55 ---- Socket methods: - s.accept() --> new socket object, sockaddr ! - s.bind(sockaddr) --> None - s.close() --> None ! - s.connect(sockaddr) --> None ! - s.connect_ex(sockaddr) --> 0 or errno (handy for e.g. async connect) - s.fileno() --> file descriptor - s.dup() --> same as socket.fromfd(os.dup(s.fileno(), ...) *************** *** 857,861 **** ! /* s.bind(sockaddr...) method */ static PyObject * --- 854,858 ---- ! /* s.bind(sockaddr) method */ static PyObject * *************** *** 865,869 **** int addrlen; int res; ! if (!getsockaddrarg(s, args, &addr, &addrlen)) return NULL; Py_BEGIN_ALLOW_THREADS --- 862,869 ---- int addrlen; int res; ! PyObject *addro; ! if (!PyArg_ParseTuple(args, "O:bind", &addro)) ! return NULL; ! if (!getsockaddrarg(s, addro, &addr, &addrlen)) return NULL; Py_BEGIN_ALLOW_THREADS *************** *** 908,912 **** ! /* s.connect(sockaddr...) method */ static PyObject * --- 908,912 ---- ! /* s.connect(sockaddr) method */ static PyObject * *************** *** 916,921 **** int addrlen; int res; ! if (!getsockaddrarg(s, args, &addr, &addrlen)) return NULL; Py_BEGIN_ALLOW_THREADS res = connect(s->sock_fd, addr, addrlen); --- 916,924 ---- int addrlen; int res; ! PyObject *addro; ! if (!PyArg_ParseTuple(args, "O:connect", &addro)) return NULL; + if (!getsockaddrarg(s, addro, &addr, &addrlen)) + return NULL; Py_BEGIN_ALLOW_THREADS res = connect(s->sock_fd, addr, addrlen); *************** *** 934,938 **** ! /* s.connect_ex(sockaddr...) method */ static PyObject * --- 937,941 ---- ! /* s.connect_ex(sockaddr) method */ static PyObject * *************** *** 942,946 **** int addrlen; int res; ! if (!getsockaddrarg(s, args, &addr, &addrlen)) return NULL; Py_BEGIN_ALLOW_THREADS --- 945,952 ---- int addrlen; int res; ! PyObject *addro; ! if (!PyArg_ParseTuple(args, "O:connect_ex", &addro)) ! return NULL; ! if (!getsockaddrarg(s, addro, &addr, &addrlen)) return NULL; Py_BEGIN_ALLOW_THREADS *************** *** 1322,1332 **** {"accept", (PyCFunction)PySocketSock_accept, 1, accept_doc}, ! {"bind", (PyCFunction)PySocketSock_bind, 0, bind_doc}, {"close", (PyCFunction)PySocketSock_close, 1, close_doc}, ! {"connect", (PyCFunction)PySocketSock_connect, 0, connect_doc}, ! {"connect_ex", (PyCFunction)PySocketSock_connect_ex, 0, connect_ex_doc}, #ifndef NO_DUP --- 1328,1338 ---- {"accept", (PyCFunction)PySocketSock_accept, 1, accept_doc}, ! {"bind", (PyCFunction)PySocketSock_bind, 1, bind_doc}, {"close", (PyCFunction)PySocketSock_close, 1, close_doc}, ! {"connect", (PyCFunction)PySocketSock_connect, 1, connect_doc}, ! {"connect_ex", (PyCFunction)PySocketSock_connect_ex, 1, connect_ex_doc}, #ifndef NO_DUP From python-dev@python.org Sat Jul 1 04:43:36 2000 From: python-dev@python.org (Mark Hammond) Date: Fri, 30 Jun 2000 20:43:36 -0700 Subject: [Python-checkins] CVS: python/dist/src/PCbuild ucnhash.dsp,1.2,1.3 Message-ID: <200007010343.UAA11847@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/PCbuild In directory slayer.i.sourceforge.net:/tmp/cvs-serv11840 Modified Files: ucnhash.dsp Log Message: The Python include paths were not specified. Index: ucnhash.dsp =================================================================== RCS file: /cvsroot/python/python/dist/src/PCbuild/ucnhash.dsp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** ucnhash.dsp 2000/07/01 03:14:51 1.2 --- ucnhash.dsp 2000/07/01 03:43:33 1.3 *************** *** 45,49 **** F90=df.exe # ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "UCNHASH_EXPORTS" /YX /FD /c ! # ADD CPP /nologo /MD /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "UCNHASH_EXPORTS" /YX /FD /c # ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 --- 45,49 ---- F90=df.exe # ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "UCNHASH_EXPORTS" /YX /FD /c ! # ADD CPP /nologo /MD /W3 /GX /O2 /I "..\Include" /I "..\PC" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "UCNHASH_EXPORTS" /YX /FD /c # ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 *************** *** 73,77 **** F90=df.exe # ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "UCNHASH_EXPORTS" /YX /FD /GZ /c ! # ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "UCNHASH_EXPORTS" /YX /FD /GZ /c # ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 --- 73,77 ---- F90=df.exe # ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "UCNHASH_EXPORTS" /YX /FD /GZ /c ! # ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\Include" /I "..\PC" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "UCNHASH_EXPORTS" /YX /FD /GZ /c # ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 From python-dev@python.org Sat Jul 1 04:46:40 2000 From: python-dev@python.org (Guido van Rossum) Date: Fri, 30 Jun 2000 20:46:40 -0700 Subject: [Python-checkins] CVS: python/dist/src/PCbuild readme.txt,1.8,1.9 Message-ID: <200007010346.UAA11960@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/PCbuild In directory slayer.i.sourceforge.net:/tmp/cvs-serv11951 Modified Files: readme.txt Log Message: Add ucnhash (new subproject). Index: readme.txt =================================================================== RCS file: /cvsroot/python/python/dist/src/PCbuild/readme.txt,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -r1.8 -r1.9 *** readme.txt 2000/07/01 02:51:23 1.8 --- readme.txt 2000/07/01 03:46:38 1.9 *************** *** 52,56 **** select selectmodule.c ! unicodedata large tables of Unicode data winreg --- 52,56 ---- select selectmodule.c ! ucnhash, unicodedata large tables of Unicode data winreg From python-dev@python.org Sat Jul 1 05:03:35 2000 From: python-dev@python.org (Guido van Rossum) Date: Fri, 30 Jun 2000 21:03:35 -0700 Subject: [Python-checkins] CVS: python/dist/src/PCbuild python20.dsp,1.4,1.5 ucnhash.dsp,1.3,1.4 unicodedata.dsp,1.3,1.4 winsound.dsp,1.3,1.4 Message-ID: <200007010403.VAA19090@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/PCbuild In directory slayer.i.sourceforge.net:/tmp/cvs-serv19080 Modified Files: python20.dsp ucnhash.dsp unicodedata.dsp winsound.dsp Log Message: A bunch of project files were checked in as text files. They should all be binary (cvs admin -kv has now been applied). Index: python20.dsp =================================================================== RCS file: /cvsroot/python/python/dist/src/PCbuild/python20.dsp,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** python20.dsp 2000/07/01 03:12:59 1.4 --- python20.dsp 2000/07/01 04:03:32 1.5 *************** *** 1,1690 **** ! # Microsoft Developer Studio Project File - Name="python20" - Package Owner=<4> ! # Microsoft Developer Studio Generated Build File, Format Version 6.00 ! # ** DO NOT EDIT ** ! ! # TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 ! # TARGTYPE "Win32 (ALPHA) Dynamic-Link Library" 0x0602 ! ! CFG=python20 - Win32 Alpha Debug ! !MESSAGE This is not a valid makefile. To build this project using NMAKE, ! !MESSAGE use the Export Makefile command and run [...3351 lines suppressed...] ! !ENDIF ! ! # End Source File ! # Begin Source File ! ! SOURCE=..\Modules\yuvconvert.c ! ! !IF "$(CFG)" == "python20 - Win32 Release" ! ! !ELSEIF "$(CFG)" == "python20 - Win32 Debug" ! ! !ELSEIF "$(CFG)" == "python20 - Win32 Alpha Debug" ! ! !ELSEIF "$(CFG)" == "python20 - Win32 Alpha Release" ! ! !ENDIF ! ! # End Source File ! # End Target ! # End Project Index: ucnhash.dsp =================================================================== RCS file: /cvsroot/python/python/dist/src/PCbuild/ucnhash.dsp,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** ucnhash.dsp 2000/07/01 03:43:33 1.3 --- ucnhash.dsp 2000/07/01 04:03:32 1.4 *************** *** 1,99 **** ! # Microsoft Developer Studio Project File - Name="ucnhash" - Package Owner=<4> ! # Microsoft Developer Studio Generated Build File, Format Version 6.00 ! # ** DO NOT EDIT ** ! ! # TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 ! ! CFG=ucnhash - Win32 Debug ! !MESSAGE This is not a valid makefile. To build this project using NMAKE, ! !MESSAGE use the Export Makefile command and run ! !MESSAGE ! !MESSAGE NMAKE /f "ucnhash.mak". ! !MESSAGE ! !MESSAGE You can specify a configuration when running NMAKE ! !MESSAGE by defining the macro CFG on the command line. For example: ! !MESSAGE ! !MESSAGE NMAKE /f "ucnhash.mak" CFG="ucnhash - Win32 Debug" ! !MESSAGE ! !MESSAGE Possible choices for configuration are: ! !MESSAGE ! !MESSAGE "ucnhash - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") ! !MESSAGE "ucnhash - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") ! !MESSAGE ! ! # Begin Project ! # PROP AllowPerConfigDependencies 0 ! # PROP Scc_ProjName "" ! # PROP Scc_LocalPath "" ! CPP=cl.exe ! MTL=midl.exe ! RSC=rc.exe ! ! !IF "$(CFG)" == "ucnhash - Win32 Release" ! ! # PROP BASE Use_MFC 0 ! # PROP BASE Use_Debug_Libraries 0 ! # PROP BASE Output_Dir "ucnhash___Win32_Release0" ! # PROP BASE Intermediate_Dir "ucnhash___Win32_Release0" ! # PROP BASE Target_Dir "" ! # PROP Use_MFC 0 ! # PROP Use_Debug_Libraries 0 ! # PROP Output_Dir "." ! # PROP Intermediate_Dir "x86-temp-release\ucnhash" ! # PROP Ignore_Export_Lib 0 ! # PROP Target_Dir "" ! F90=df.exe ! # ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "UCNHASH_EXPORTS" /YX /FD /c ! # ADD CPP /nologo /MD /W3 /GX /O2 /I "..\Include" /I "..\PC" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "UCNHASH_EXPORTS" /YX /FD /c ! # ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 ! # ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 ! # ADD BASE RSC /l 0x409 /d "NDEBUG" ! # ADD RSC /l 0x409 /d "NDEBUG" ! BSC32=bscmake.exe ! # ADD BASE BSC32 /nologo ! # ADD BSC32 /nologo ! LINK32=link.exe ! # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386 ! # ADD LINK32 /nologo /dll /machine:I386 /out:"ucnhash.pyd" /export:initucnhash ! # SUBTRACT LINK32 /pdb:none ! ! !ELSEIF "$(CFG)" == "ucnhash - Win32 Debug" ! ! # PROP BASE Use_MFC 0 ! # PROP BASE Use_Debug_Libraries 1 ! # PROP BASE Output_Dir "ucnhash___Win32_Debug0" ! # PROP BASE Intermediate_Dir "ucnhash___Win32_Debug0" ! # PROP BASE Target_Dir "" ! # PROP Use_MFC 0 ! # PROP Use_Debug_Libraries 1 ! # PROP Output_Dir "." ! # PROP Intermediate_Dir "x86-temp-debug\ucnhash" ! # PROP Ignore_Export_Lib 0 ! # PROP Target_Dir "" ! F90=df.exe ! # ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "UCNHASH_EXPORTS" /YX /FD /GZ /c ! # ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\Include" /I "..\PC" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "UCNHASH_EXPORTS" /YX /FD /GZ /c ! # ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 ! # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 ! # ADD BASE RSC /l 0x409 /d "_DEBUG" ! # ADD RSC /l 0x409 /d "_DEBUG" ! BSC32=bscmake.exe ! # ADD BASE BSC32 /nologo ! # ADD BSC32 /nologo ! LINK32=link.exe ! # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept ! # ADD LINK32 /nologo /dll /debug /machine:I386 /out:"ucnhash_d.pyd" /pdbtype:sept /export:initucnhash ! # SUBTRACT LINK32 /pdb:none ! ! !ENDIF ! ! # Begin Target ! ! # Name "ucnhash - Win32 Release" ! # Name "ucnhash - Win32 Debug" ! # Begin Source File ! ! SOURCE=..\Modules\ucnhash.c ! # End Source File ! # End Target ! # End Project --- 1,99 ---- ! # Microsoft Developer Studio Project File - Name="ucnhash" - Package Owner=<4> ! # Microsoft Developer Studio Generated Build File, Format Version 6.00 ! # ** DO NOT EDIT ** ! ! # TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 ! ! CFG=ucnhash - Win32 Debug ! !MESSAGE This is not a valid makefile. To build this project using NMAKE, ! !MESSAGE use the Export Makefile command and run ! !MESSAGE ! !MESSAGE NMAKE /f "ucnhash.mak". ! !MESSAGE ! !MESSAGE You can specify a configuration when running NMAKE ! !MESSAGE by defining the macro CFG on the command line. For example: ! !MESSAGE ! !MESSAGE NMAKE /f "ucnhash.mak" CFG="ucnhash - Win32 Debug" ! !MESSAGE ! !MESSAGE Possible choices for configuration are: ! !MESSAGE ! !MESSAGE "ucnhash - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") ! !MESSAGE "ucnhash - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") ! !MESSAGE ! ! # Begin Project ! # PROP AllowPerConfigDependencies 0 ! # PROP Scc_ProjName "" ! # PROP Scc_LocalPath "" ! CPP=cl.exe ! MTL=midl.exe ! RSC=rc.exe ! ! !IF "$(CFG)" == "ucnhash - Win32 Release" ! ! # PROP BASE Use_MFC 0 ! # PROP BASE Use_Debug_Libraries 0 ! # PROP BASE Output_Dir "ucnhash___Win32_Release0" ! # PROP BASE Intermediate_Dir "ucnhash___Win32_Release0" ! # PROP BASE Target_Dir "" ! # PROP Use_MFC 0 ! # PROP Use_Debug_Libraries 0 ! # PROP Output_Dir "." ! # PROP Intermediate_Dir "x86-temp-release\ucnhash" ! # PROP Ignore_Export_Lib 0 ! # PROP Target_Dir "" ! F90=df.exe ! # ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "UCNHASH_EXPORTS" /YX /FD /c ! # ADD CPP /nologo /MD /W3 /GX /O2 /I "..\Include" /I "..\PC" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "UCNHASH_EXPORTS" /YX /FD /c ! # ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 ! # ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 ! # ADD BASE RSC /l 0x409 /d "NDEBUG" ! # ADD RSC /l 0x409 /d "NDEBUG" ! BSC32=bscmake.exe ! # ADD BASE BSC32 /nologo ! # ADD BSC32 /nologo ! LINK32=link.exe ! # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386 ! # ADD LINK32 /nologo /dll /machine:I386 /out:"ucnhash.pyd" /export:initucnhash ! # SUBTRACT LINK32 /pdb:none ! ! !ELSEIF "$(CFG)" == "ucnhash - Win32 Debug" ! ! # PROP BASE Use_MFC 0 ! # PROP BASE Use_Debug_Libraries 1 ! # PROP BASE Output_Dir "ucnhash___Win32_Debug0" ! # PROP BASE Intermediate_Dir "ucnhash___Win32_Debug0" ! # PROP BASE Target_Dir "" ! # PROP Use_MFC 0 ! # PROP Use_Debug_Libraries 1 ! # PROP Output_Dir "." ! # PROP Intermediate_Dir "x86-temp-debug\ucnhash" ! # PROP Ignore_Export_Lib 0 ! # PROP Target_Dir "" ! F90=df.exe ! # ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "UCNHASH_EXPORTS" /YX /FD /GZ /c ! # ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\Include" /I "..\PC" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "UCNHASH_EXPORTS" /YX /FD /GZ /c ! # ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 ! # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 ! # ADD BASE RSC /l 0x409 /d "_DEBUG" ! # ADD RSC /l 0x409 /d "_DEBUG" ! BSC32=bscmake.exe ! # ADD BASE BSC32 /nologo ! # ADD BSC32 /nologo ! LINK32=link.exe ! # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept ! # ADD LINK32 /nologo /dll /debug /machine:I386 /out:"ucnhash_d.pyd" /pdbtype:sept /export:initucnhash ! # SUBTRACT LINK32 /pdb:none ! ! !ENDIF ! ! # Begin Target ! ! # Name "ucnhash - Win32 Release" ! # Name "ucnhash - Win32 Debug" ! # Begin Source File ! ! SOURCE=..\Modules\ucnhash.c ! # End Source File ! # End Target ! # End Project Index: unicodedata.dsp =================================================================== RCS file: /cvsroot/python/python/dist/src/PCbuild/unicodedata.dsp,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** unicodedata.dsp 2000/07/01 03:12:59 1.3 --- unicodedata.dsp 2000/07/01 04:03:32 1.4 *************** *** 1,103 **** ! # Microsoft Developer Studio Project File - Name="unicodedata" - Package Owner=<4> ! # Microsoft Developer Studio Generated Build File, Format Version 6.00 ! # ** DO NOT EDIT ** ! ! # TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 ! ! CFG=unicodedata - Win32 Debug ! !MESSAGE This is not a valid makefile. To build this project using NMAKE, ! !MESSAGE use the Export Makefile command and run ! !MESSAGE ! !MESSAGE NMAKE /f "unicodedata.mak". ! !MESSAGE ! !MESSAGE You can specify a configuration when running NMAKE ! !MESSAGE by defining the macro CFG on the command line. For example: ! !MESSAGE ! !MESSAGE NMAKE /f "unicodedata.mak" CFG="unicodedata - Win32 Debug" ! !MESSAGE ! !MESSAGE Possible choices for configuration are: ! !MESSAGE ! !MESSAGE "unicodedata - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") ! !MESSAGE "unicodedata - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") ! !MESSAGE ! ! # Begin Project ! # PROP AllowPerConfigDependencies 0 ! # PROP Scc_ProjName "unicodedata" ! # PROP Scc_LocalPath ".." ! CPP=cl.exe ! MTL=midl.exe ! RSC=rc.exe ! ! !IF "$(CFG)" == "unicodedata - Win32 Release" ! ! # PROP BASE Use_MFC 0 ! # PROP BASE Use_Debug_Libraries 0 ! # PROP BASE Output_Dir "Release" ! # PROP BASE Intermediate_Dir "Release" ! # PROP BASE Target_Dir "" ! # PROP Use_MFC 0 ! # PROP Use_Debug_Libraries 0 ! # PROP Output_Dir "." ! # PROP Intermediate_Dir "x86-temp-release\unicodedata" ! # PROP Ignore_Export_Lib 0 ! # PROP Target_Dir "" ! F90=df.exe ! # ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "MMAP_EXPORTS" /YX /FD /c ! # ADD CPP /nologo /MD /W3 /GX /O2 /I "..\Include" /I "..\PC" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "MMAP_EXPORTS" /YX /FD /c ! # ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 ! # ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 ! # ADD BASE RSC /l 0xc09 /d "NDEBUG" ! # ADD RSC /l 0xc09 /d "NDEBUG" ! BSC32=bscmake.exe ! # ADD BASE BSC32 /nologo ! # ADD BSC32 /nologo ! LINK32=link.exe ! # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386 ! # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /base:"0x1D120000" /dll /machine:I386 /out:"./unicodedata.pyd" /export:initunicodedata ! # SUBTRACT LINK32 /pdb:none ! ! !ELSEIF "$(CFG)" == "unicodedata - Win32 Debug" ! ! # PROP BASE Use_MFC 0 ! # PROP BASE Use_Debug_Libraries 1 ! # PROP BASE Output_Dir "Debug" ! # PROP BASE Intermediate_Dir "Debug" ! # PROP BASE Target_Dir "" ! # PROP Use_MFC 0 ! # PROP Use_Debug_Libraries 1 ! # PROP Output_Dir "." ! # PROP Intermediate_Dir "x86-temp-debug\unicodedata" ! # PROP Ignore_Export_Lib 0 ! # PROP Target_Dir "" ! F90=df.exe ! # ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "MMAP_EXPORTS" /YX /FD /GZ /c ! # ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\Include" /I "..\PC" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "MMAP_EXPORTS" /YX /FD /GZ /c ! # ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 ! # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 ! # ADD BASE RSC /l 0xc09 /d "_DEBUG" ! # ADD RSC /l 0xc09 /d "_DEBUG" ! BSC32=bscmake.exe ! # ADD BASE BSC32 /nologo ! # ADD BSC32 /nologo ! LINK32=link.exe ! # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept ! # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /base:"0x1D120000" /dll /debug /machine:I386 /out:"./unicodedata_d.pyd" /pdbtype:sept /export:initunicodedata ! # SUBTRACT LINK32 /pdb:none ! ! !ENDIF ! ! # Begin Target ! ! # Name "unicodedata - Win32 Release" ! # Name "unicodedata - Win32 Debug" ! # Begin Source File ! ! SOURCE=..\Modules\unicodedata.c ! # End Source File ! # Begin Source File ! ! SOURCE=..\Modules\unicodedatabase.c ! # End Source File ! # End Target ! # End Project --- 1,103 ---- ! # Microsoft Developer Studio Project File - Name="unicodedata" - Package Owner=<4> ! # Microsoft Developer Studio Generated Build File, Format Version 6.00 ! # ** DO NOT EDIT ** ! ! # TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 ! ! CFG=unicodedata - Win32 Debug ! !MESSAGE This is not a valid makefile. To build this project using NMAKE, ! !MESSAGE use the Export Makefile command and run ! !MESSAGE ! !MESSAGE NMAKE /f "unicodedata.mak". ! !MESSAGE ! !MESSAGE You can specify a configuration when running NMAKE ! !MESSAGE by defining the macro CFG on the command line. For example: ! !MESSAGE ! !MESSAGE NMAKE /f "unicodedata.mak" CFG="unicodedata - Win32 Debug" ! !MESSAGE ! !MESSAGE Possible choices for configuration are: ! !MESSAGE ! !MESSAGE "unicodedata - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") ! !MESSAGE "unicodedata - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") ! !MESSAGE ! ! # Begin Project ! # PROP AllowPerConfigDependencies 0 ! # PROP Scc_ProjName "unicodedata" ! # PROP Scc_LocalPath ".." ! CPP=cl.exe ! MTL=midl.exe ! RSC=rc.exe ! ! !IF "$(CFG)" == "unicodedata - Win32 Release" ! ! # PROP BASE Use_MFC 0 ! # PROP BASE Use_Debug_Libraries 0 ! # PROP BASE Output_Dir "Release" ! # PROP BASE Intermediate_Dir "Release" ! # PROP BASE Target_Dir "" ! # PROP Use_MFC 0 ! # PROP Use_Debug_Libraries 0 ! # PROP Output_Dir "." ! # PROP Intermediate_Dir "x86-temp-release\unicodedata" ! # PROP Ignore_Export_Lib 0 ! # PROP Target_Dir "" ! F90=df.exe ! # ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "MMAP_EXPORTS" /YX /FD /c ! # ADD CPP /nologo /MD /W3 /GX /O2 /I "..\Include" /I "..\PC" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "MMAP_EXPORTS" /YX /FD /c ! # ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 ! # ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 ! # ADD BASE RSC /l 0xc09 /d "NDEBUG" ! # ADD RSC /l 0xc09 /d "NDEBUG" ! BSC32=bscmake.exe ! # ADD BASE BSC32 /nologo ! # ADD BSC32 /nologo ! LINK32=link.exe ! # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386 ! # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /base:"0x1D120000" /dll /machine:I386 /out:"./unicodedata.pyd" /export:initunicodedata ! # SUBTRACT LINK32 /pdb:none ! ! !ELSEIF "$(CFG)" == "unicodedata - Win32 Debug" ! ! # PROP BASE Use_MFC 0 ! # PROP BASE Use_Debug_Libraries 1 ! # PROP BASE Output_Dir "Debug" ! # PROP BASE Intermediate_Dir "Debug" ! # PROP BASE Target_Dir "" ! # PROP Use_MFC 0 ! # PROP Use_Debug_Libraries 1 ! # PROP Output_Dir "." ! # PROP Intermediate_Dir "x86-temp-debug\unicodedata" ! # PROP Ignore_Export_Lib 0 ! # PROP Target_Dir "" ! F90=df.exe ! # ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "MMAP_EXPORTS" /YX /FD /GZ /c ! # ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\Include" /I "..\PC" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "MMAP_EXPORTS" /YX /FD /GZ /c ! # ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 ! # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 ! # ADD BASE RSC /l 0xc09 /d "_DEBUG" ! # ADD RSC /l 0xc09 /d "_DEBUG" ! BSC32=bscmake.exe ! # ADD BASE BSC32 /nologo ! # ADD BSC32 /nologo ! LINK32=link.exe ! # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept ! # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /base:"0x1D120000" /dll /debug /machine:I386 /out:"./unicodedata_d.pyd" /pdbtype:sept /export:initunicodedata ! # SUBTRACT LINK32 /pdb:none ! ! !ENDIF ! ! # Begin Target ! ! # Name "unicodedata - Win32 Release" ! # Name "unicodedata - Win32 Debug" ! # Begin Source File ! ! SOURCE=..\Modules\unicodedata.c ! # End Source File ! # Begin Source File ! ! SOURCE=..\Modules\unicodedatabase.c ! # End Source File ! # End Target ! # End Project Index: winsound.dsp =================================================================== RCS file: /cvsroot/python/python/dist/src/PCbuild/winsound.dsp,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** winsound.dsp 2000/07/01 03:12:59 1.3 --- winsound.dsp 2000/07/01 04:03:32 1.4 *************** *** 1,99 **** ! # Microsoft Developer Studio Project File - Name="winsound" - Package Owner=<4> ! # Microsoft Developer Studio Generated Build File, Format Version 6.00 ! # ** DO NOT EDIT ** ! ! # TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 ! ! CFG=winsound - Win32 Debug ! !MESSAGE This is not a valid makefile. To build this project using NMAKE, ! !MESSAGE use the Export Makefile command and run ! !MESSAGE ! !MESSAGE NMAKE /f "winsound.mak". ! !MESSAGE ! !MESSAGE You can specify a configuration when running NMAKE ! !MESSAGE by defining the macro CFG on the command line. For example: ! !MESSAGE ! !MESSAGE NMAKE /f "winsound.mak" CFG="winsound - Win32 Debug" ! !MESSAGE ! !MESSAGE Possible choices for configuration are: ! !MESSAGE ! !MESSAGE "winsound - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") ! !MESSAGE "winsound - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") ! !MESSAGE ! ! # Begin Project ! # PROP AllowPerConfigDependencies 0 ! # PROP Scc_ProjName "winsound" ! # PROP Scc_LocalPath "..\pc" ! CPP=cl.exe ! MTL=midl.exe ! RSC=rc.exe ! ! !IF "$(CFG)" == "winsound - Win32 Release" ! ! # PROP BASE Use_MFC 0 ! # PROP BASE Use_Debug_Libraries 0 ! # PROP BASE Output_Dir "Release" ! # PROP BASE Intermediate_Dir "Release" ! # PROP BASE Target_Dir "" ! # PROP Use_MFC 0 ! # PROP Use_Debug_Libraries 0 ! # PROP Output_Dir "." ! # PROP Intermediate_Dir "x86-temp-release\winsound" ! # PROP Ignore_Export_Lib 0 ! # PROP Target_Dir "" ! F90=df.exe ! # ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WINSOUND_EXPORTS" /YX /FD /c ! # ADD CPP /nologo /MD /W3 /GX /O2 /I "..\Include" /I "..\PC" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WINSOUND_EXPORTS" /YX /FD /c ! # ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 ! # ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 ! # ADD BASE RSC /l 0xc09 /d "NDEBUG" ! # ADD RSC /l 0xc09 /d "NDEBUG" ! BSC32=bscmake.exe ! # ADD BASE BSC32 /nologo ! # ADD BSC32 /nologo ! LINK32=link.exe ! # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386 ! # ADD LINK32 kernel32.lib winmm.lib /nologo /base:"0x1D130000" /dll /machine:I386 /out:"./winsound.pyd" /export:initwinsound ! # SUBTRACT LINK32 /pdb:none ! ! !ELSEIF "$(CFG)" == "winsound - Win32 Debug" ! ! # PROP BASE Use_MFC 0 ! # PROP BASE Use_Debug_Libraries 1 ! # PROP BASE Output_Dir "Debug" ! # PROP BASE Intermediate_Dir "Debug" ! # PROP BASE Target_Dir "" ! # PROP Use_MFC 0 ! # PROP Use_Debug_Libraries 1 ! # PROP Output_Dir "." ! # PROP Intermediate_Dir "x86-temp-debug\winsound" ! # PROP Ignore_Export_Lib 0 ! # PROP Target_Dir "" ! F90=df.exe ! # ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WINSOUND_EXPORTS" /YX /FD /GZ /c ! # ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\Include" /I "..\PC" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WINSOUND_EXPORTS" /YX /FD /GZ /c ! # ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 ! # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 ! # ADD BASE RSC /l 0xc09 /d "_DEBUG" ! # ADD RSC /l 0xc09 /d "_DEBUG" ! BSC32=bscmake.exe ! # ADD BASE BSC32 /nologo ! # ADD BSC32 /nologo ! LINK32=link.exe ! # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept ! # ADD LINK32 kernel32.lib winmm.lib /nologo /base:"0x1D130000" /dll /debug /machine:I386 /out:"./winsound_d.pyd" /pdbtype:sept /export:initwinsound ! # SUBTRACT LINK32 /pdb:none ! ! !ENDIF ! ! # Begin Target ! ! # Name "winsound - Win32 Release" ! # Name "winsound - Win32 Debug" ! # Begin Source File ! ! SOURCE=..\PC\winsound.c ! # End Source File ! # End Target ! # End Project --- 1,99 ---- ! # Microsoft Developer Studio Project File - Name="winsound" - Package Owner=<4> ! # Microsoft Developer Studio Generated Build File, Format Version 6.00 ! # ** DO NOT EDIT ** ! ! # TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 ! ! CFG=winsound - Win32 Debug ! !MESSAGE This is not a valid makefile. To build this project using NMAKE, ! !MESSAGE use the Export Makefile command and run ! !MESSAGE ! !MESSAGE NMAKE /f "winsound.mak". ! !MESSAGE ! !MESSAGE You can specify a configuration when running NMAKE ! !MESSAGE by defining the macro CFG on the command line. For example: ! !MESSAGE ! !MESSAGE NMAKE /f "winsound.mak" CFG="winsound - Win32 Debug" ! !MESSAGE ! !MESSAGE Possible choices for configuration are: ! !MESSAGE ! !MESSAGE "winsound - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") ! !MESSAGE "winsound - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") ! !MESSAGE ! ! # Begin Project ! # PROP AllowPerConfigDependencies 0 ! # PROP Scc_ProjName "winsound" ! # PROP Scc_LocalPath "..\pc" ! CPP=cl.exe ! MTL=midl.exe ! RSC=rc.exe ! ! !IF "$(CFG)" == "winsound - Win32 Release" ! ! # PROP BASE Use_MFC 0 ! # PROP BASE Use_Debug_Libraries 0 ! # PROP BASE Output_Dir "Release" ! # PROP BASE Intermediate_Dir "Release" ! # PROP BASE Target_Dir "" ! # PROP Use_MFC 0 ! # PROP Use_Debug_Libraries 0 ! # PROP Output_Dir "." ! # PROP Intermediate_Dir "x86-temp-release\winsound" ! # PROP Ignore_Export_Lib 0 ! # PROP Target_Dir "" ! F90=df.exe ! # ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WINSOUND_EXPORTS" /YX /FD /c ! # ADD CPP /nologo /MD /W3 /GX /O2 /I "..\Include" /I "..\PC" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WINSOUND_EXPORTS" /YX /FD /c ! # ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 ! # ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 ! # ADD BASE RSC /l 0xc09 /d "NDEBUG" ! # ADD RSC /l 0xc09 /d "NDEBUG" ! BSC32=bscmake.exe ! # ADD BASE BSC32 /nologo ! # ADD BSC32 /nologo ! LINK32=link.exe ! # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386 ! # ADD LINK32 kernel32.lib winmm.lib /nologo /base:"0x1D130000" /dll /machine:I386 /out:"./winsound.pyd" /export:initwinsound ! # SUBTRACT LINK32 /pdb:none ! ! !ELSEIF "$(CFG)" == "winsound - Win32 Debug" ! ! # PROP BASE Use_MFC 0 ! # PROP BASE Use_Debug_Libraries 1 ! # PROP BASE Output_Dir "Debug" ! # PROP BASE Intermediate_Dir "Debug" ! # PROP BASE Target_Dir "" ! # PROP Use_MFC 0 ! # PROP Use_Debug_Libraries 1 ! # PROP Output_Dir "." ! # PROP Intermediate_Dir "x86-temp-debug\winsound" ! # PROP Ignore_Export_Lib 0 ! # PROP Target_Dir "" ! F90=df.exe ! # ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WINSOUND_EXPORTS" /YX /FD /GZ /c ! # ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\Include" /I "..\PC" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WINSOUND_EXPORTS" /YX /FD /GZ /c ! # ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 ! # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 ! # ADD BASE RSC /l 0xc09 /d "_DEBUG" ! # ADD RSC /l 0xc09 /d "_DEBUG" ! BSC32=bscmake.exe ! # ADD BASE BSC32 /nologo ! # ADD BSC32 /nologo ! LINK32=link.exe ! # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept ! # ADD LINK32 kernel32.lib winmm.lib /nologo /base:"0x1D130000" /dll /debug /machine:I386 /out:"./winsound_d.pyd" /pdbtype:sept /export:initwinsound ! # SUBTRACT LINK32 /pdb:none ! ! !ENDIF ! ! # Begin Target ! ! # Name "winsound - Win32 Release" ! # Name "winsound - Win32 Debug" ! # Begin Source File ! ! SOURCE=..\PC\winsound.c ! # End Source File ! # End Target ! # End Project From python-dev@python.org Sat Jul 1 05:23:50 2000 From: python-dev@python.org (Guido van Rossum) Date: Fri, 30 Jun 2000 21:23:50 -0700 Subject: [Python-checkins] CVS: python/dist/src/Lib/dos-8x3 sre_comp.py,1.3,1.4 sre_pars.py,1.3,1.4 Message-ID: <200007010423.VAA19770@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Lib/dos-8x3 In directory slayer.i.sourceforge.net:/tmp/cvs-serv19761 Modified Files: sre_comp.py sre_pars.py Log Message: the usual Index: sre_comp.py =================================================================== RCS file: /cvsroot/python/python/dist/src/Lib/dos-8x3/sre_comp.py,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** sre_comp.py 2000/06/30 16:13:37 1.3 --- sre_comp.py 2000/07/01 04:23:47 1.4 *************** *** 40,44 **** else: emit(OPCODES[op]) ! fixup = lambda x: x skip = len(code); emit(0) for op, av in av: --- 40,44 ---- else: emit(OPCODES[op]) ! fixup = lambda x: x skip = len(code); emit(0) for op, av in av: *************** *** 119,123 **** emit(OPCODES[op]) if flags & SRE_FLAG_MULTILINE: ! emit(ATCODES[AT_MULTILINE[av]]) else: emit(ATCODES[av]) --- 119,123 ---- emit(OPCODES[op]) if flags & SRE_FLAG_MULTILINE: ! emit(ATCODES[AT_MULTILINE.get(av, av)]) else: emit(ATCODES[av]) *************** *** 204,208 **** import sre_parse pattern = p ! p = sre_parse.parse(p) else: pattern = None --- 204,208 ---- import sre_parse pattern = p ! p = sre_parse.parse(p, flags) else: pattern = None Index: sre_pars.py =================================================================== RCS file: /cvsroot/python/python/dist/src/Lib/dos-8x3/sre_pars.py,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** sre_pars.py 2000/06/30 16:13:37 1.3 --- sre_pars.py 2000/07/01 04:23:47 1.4 *************** *** 20,25 **** MAXREPEAT = 32767 ! # FIXME: same here ! CHARMASK = 0x7fff SPECIAL_CHARS = ".\\[{()*+?^$|" --- 20,26 ---- MAXREPEAT = 32767 ! # FIXME: might change in 2.0 final. but for now, this seems ! # to be the best way to be compatible with 1.5.2 ! CHARMASK = 0xff SPECIAL_CHARS = ".\\[{()*+?^$|" *************** *** 31,35 **** HEXDIGITS = tuple("0123456789abcdefABCDEF") ! WHITESPACE = string.whitespace ESCAPES = { --- 32,36 ---- HEXDIGITS = tuple("0123456789abcdefABCDEF") ! WHITESPACE = tuple(string.whitespace) ESCAPES = { *************** *** 296,300 **** return subpattern ! def _parse(source, state, flags=0): # parse regular expression pattern into an operator list. --- 297,301 ---- return subpattern ! def _parse(source, state): # parse regular expression pattern into an operator list. *************** *** 468,472 **** b = [] while 1: ! p = _parse(source, state, flags) if source.next == ")": if b: --- 469,473 ---- b = [] while 1: ! p = _parse(source, state) if source.next == ")": if b: *************** *** 495,499 **** group = state.getgroup(name) while 1: ! p = _parse(source, state, flags) if source.match(")"): if b: --- 496,500 ---- group = state.getgroup(name) while 1: ! p = _parse(source, state) if source.match(")"): if b: *************** *** 532,538 **** source = Tokenizer(pattern) state = State() b = [] while 1: ! p = _parse(source, state, flags) tail = source.get() if tail == "|": --- 533,540 ---- source = Tokenizer(pattern) state = State() + state.flags = flags b = [] while 1: ! p = _parse(source, state) tail = source.get() if tail == "|": *************** *** 617,623 **** sep = match.string[:0] if type(sep) is type(""): ! char = chr else: ! char = unichr for c, s in template: if c is LITERAL: --- 619,625 ---- sep = match.string[:0] if type(sep) is type(""): ! char = chr else: ! char = unichr for c, s in template: if c is LITERAL: From python-dev@python.org Sat Jul 1 05:45:55 2000 From: python-dev@python.org (Barry Warsaw) Date: Fri, 30 Jun 2000 21:45:55 -0700 Subject: [Python-checkins] CVS: python/dist/src/Python exceptions.c,1.3,1.4 Message-ID: <200007010445.VAA20645@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Python In directory slayer.i.sourceforge.net:/tmp/cvs-serv20637 Modified Files: exceptions.c Log Message: init_exceptions(): Decref `doc' so it doesn't leak. Index: exceptions.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/exceptions.c,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** exceptions.c 2000/06/30 04:59:59 1.3 --- exceptions.c 2000/07/01 04:45:52 1.4 *************** *** 910,913 **** --- 910,914 ---- PyDict_SetItemString(mydict, "__doc__", doc); + Py_DECREF(doc); if (PyErr_Occurred()) Py_FatalError("exceptions bootstrapping error."); From python-dev@python.org Sat Jul 1 05:58:50 2000 From: python-dev@python.org (Paul Prescod) Date: Fri, 30 Jun 2000 21:58:50 -0700 Subject: [Python-checkins] CVS: python/dist/src/Lib/xml/dom minidom.py,1.1,1.2 pulldom.py,1.1,1.2 Message-ID: <200007010458.VAA21265@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Lib/xml/dom In directory slayer.i.sourceforge.net:/tmp/cvs-serv21246/dom Modified Files: minidom.py pulldom.py Log Message: Reference cycle fixes Index: minidom.py =================================================================== RCS file: /cvsroot/python/python/dist/src/Lib/xml/dom/minidom.py,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** minidom.py 2000/06/29 19:39:57 1.1 --- minidom.py 2000/07/01 04:58:47 1.2 *************** *** 30,38 **** NOTATION_NODE = 12 ! allnodes=[] def __init__( self ): self.childNodes=[] ! Node.allnodes.append( repr( id( self ))+repr( self.__class__ )) def __getattr__( self, key ): --- 30,46 ---- NOTATION_NODE = 12 ! allnodes={} ! _debug=0 ! _makeParentNodes=1 ! debug=None def __init__( self ): self.childNodes=[] ! if Node._debug: ! index=repr( id( self ))+repr( self.__class__ ) ! Node.allnodes[index]=repr( self.__dict__ ) ! if Node.debug==None: ! Node.debug=open( "debug4.out", "w" ) ! Node.debug.write( "create %s\n"%index ) def __getattr__( self, key ): *************** *** 73,82 **** --- 81,117 ---- else: return 0 + def _get_firstChild( self ): + return self.childNodes[0] + + def _get_lastChild( self ): + return self.childNodes[-1] + def insertBefore( self, newChild, refChild): index=self.childNodes.index( refChild ) self.childNodes.insert( index, newChild ) + if self._makeParentNodes: + newChild.parentNode=self def appendChild( self, node ): self.childNodes.append( node ) + return node + + def replaceChild( self, newChild, oldChild ): + index=self.childNodes.index( oldChild ) + self.childNodes[index]=oldChild + + def removeChild( self, oldChild ): + index=self.childNodes.index( oldChild ) + del self.childNodes[index] + + def cloneNode( self, deep ): + import new + clone=new.instance( self.__class__, self.__dict__ ) + clone.attributes=self.attributes.copy() + if not deep: + clone.childNodes=[] + else: + clone.childNodes=map( lambda x: x.cloneNode, self.childNodes ) + return clone def unlink( self ): *************** *** 87,95 **** self.childNodes=None if self.attributes: ! for attr in self.attributes.values(): ! attr.unlink() ! self.attributes=None ! index=Node.allnodes.index( repr( id( self ))+repr( self.__class__ )) ! del Node.allnodes[index] def _write_data( writer, data): --- 122,133 ---- self.childNodes=None if self.attributes: ! for attr in self._attrs.values(): ! self.removeAttributeNode( attr ) ! assert not len( self._attrs ) ! assert not len( self._attrsNS ) ! if Node._debug: ! index=repr( id( self ))+repr( self.__class__ ) ! self.debug.write( "Deleting: %s\n" % index ) ! del Node.allnodes[index] def _write_data( writer, data): *************** *** 101,109 **** writer.write(data) - def _closeElement( element ): - del element.parentNode - for node in element.elements: - _closeElement( node ) - def _getElementsByTagNameHelper( parent, name, rc ): for node in parent.childNodes: --- 139,142 ---- *************** *** 124,138 **** class Attr(Node): nodeType=Node.ATTRIBUTE_NODE ! def __init__( self, qName, namespaceURI="", prefix="", ! localName=None ): ! Node.__init__( self ) ! assert qName # skip setattr for performance - self.__dict__["nodeName"] = self.__dict__["name"] = qName self.__dict__["localName"]=localName or qName ! self.__dict__["prefix"]=prefix self.__dict__["namespaceURI"]=namespaceURI ! # nodeValue and value are set elsewhere self.attributes=None def __setattr__( self, name, value ): --- 157,170 ---- class Attr(Node): nodeType=Node.ATTRIBUTE_NODE ! def __init__( self, qName, namespaceURI="", localName=None, ! prefix=None ): # skip setattr for performance self.__dict__["localName"]=localName or qName ! self.__dict__["nodeName"] = self.__dict__["name"] = qName self.__dict__["namespaceURI"]=namespaceURI ! self.__dict__["prefix"]=prefix self.attributes=None + Node.__init__( self ) + # nodeValue and value are set elsewhere def __setattr__( self, name, value ): *************** *** 143,152 **** class AttributeList: ! # the attribute list is a transient interface to the underlying dictionaries ! # mutations here will change the underlying element's dictionary def __init__( self, attrs, attrsNS ): ! self.__attrs=attrs ! self.__attrsNS=attrs ! self.length=len( self.__attrs.keys() ) def item( self, index ): --- 175,185 ---- class AttributeList: ! """the attribute list is a transient interface to the underlying ! dictionaries. mutations here will change the underlying element's ! dictionary""" def __init__( self, attrs, attrsNS ): ! self._attrs=attrs ! self._attrsNS=attrsNS ! self.length=len( self._attrs.keys() ) def item( self, index ): *************** *** 158,175 **** def items( self ): return map( lambda node: (node.tagName, node.value), ! self.__attrs.values() ) def itemsNS( self ): return map( lambda node: ((node.URI, node.localName), node.value), ! self.__attrs.values() ) def keys( self ): ! return self.__attrs.keys() def keysNS( self ): ! return self.__attrsNS.keys() def values( self ): ! return self.__attrs.values() def __len__( self ): --- 191,208 ---- def items( self ): return map( lambda node: (node.tagName, node.value), ! self._attrs.values() ) def itemsNS( self ): return map( lambda node: ((node.URI, node.localName), node.value), ! self._attrs.values() ) def keys( self ): ! return self._attrs.keys() def keysNS( self ): ! return self._attrsNS.keys() def values( self ): ! return self._attrs.values() def __len__( self ): *************** *** 177,181 **** def __cmp__( self, other ): ! if self.__attrs is other.__attrs: return 0 else: --- 210,214 ---- def __cmp__( self, other ): ! if self._attrs is getattr( other, "_attrs", None ): return 0 else: *************** *** 184,195 **** #FIXME: is it appropriate to return .value? def __getitem__( self, attname_or_tuple ): ! if type( attname_or_tuple ) == type( (1,2) ): ! return self.__attrsNS[attname_or_tuple].value else: ! return self.__attrs[attname_or_tuple].value def __setitem__( self, attname ): raise TypeError, "object does not support item assignment" ! class Element( Node ): nodeType=Node.ELEMENT_NODE --- 217,234 ---- #FIXME: is it appropriate to return .value? def __getitem__( self, attname_or_tuple ): ! if type( attname_or_tuple ) == type( () ): ! return self._attrsNS[attname_or_tuple] else: ! return self._attrs[attname_or_tuple] def __setitem__( self, attname ): raise TypeError, "object does not support item assignment" ! ! def __delitem__( self, attname_or_tuple ): ! node=self[attname_or_tuple] ! node.unlink() ! del self._attrs[node.name] ! del self._attrsNS[(node.namespaceURI, node.localName)] ! class Element( Node ): nodeType=Node.ELEMENT_NODE *************** *** 203,208 **** self.nodeValue=None ! self.__attrs={} # attributes are double-indexed: ! self.__attrsNS={}# tagName -> Attribute # URI,localName -> Attribute # in the future: consider lazy generation of attribute objects --- 242,247 ---- self.nodeValue=None ! self._attrs={} # attributes are double-indexed: ! self._attrsNS={}# tagName -> Attribute # URI,localName -> Attribute # in the future: consider lazy generation of attribute objects *************** *** 211,218 **** def getAttribute( self, attname ): ! return self.__attrs[attname].value def getAttributeNS( self, namespaceURI, localName ): ! return self.__attrsNS[(namespaceURI, localName)].value def setAttribute( self, attname, value ): --- 250,257 ---- def getAttribute( self, attname ): ! return self._attrs[attname].value def getAttributeNS( self, namespaceURI, localName ): ! return self._attrsNS[(namespaceURI, localName)].value def setAttribute( self, attname, value ): *************** *** 223,246 **** def setAttributeNS( self, namespaceURI, qualifiedName, value ): ! attr=createAttributeNS( namespaceURI, qualifiedName ) # for performance attr.__dict__["value"]=attr.__dict__["nodeValue"]=value self.setAttributeNode( attr ) def setAttributeNode( self, attr ): ! self.__attrs[attr.name]=attr ! self.__attrsNS[(attr.namespaceURI,attr.localName)]=attr def removeAttribute( self, name ): ! attr = self.__attrs[name] self.removeAttributeNode( attr ) def removeAttributeNS( self, namespaceURI, localName ): ! attr = self.__attrsNS[(uri, localName)] self.removeAttributeNode( attr ) def removeAttributeNode( self, node ): ! del self.__attrs[node.name] ! del self.__attrsNS[(node.namespaceURI, node.localName)] def getElementsByTagName( self, name ): --- 262,296 ---- def setAttributeNS( self, namespaceURI, qualifiedName, value ): ! prefix,localname=_nssplit( qualifiedName ) # for performance + attr = Attr( qualifiedName, namespaceURI, localname, prefix ) attr.__dict__["value"]=attr.__dict__["nodeValue"]=value self.setAttributeNode( attr ) + def getAttributeNode( self, attrname ): + return self._attrs.get( attrname ) + + def getAttributeNodeNS( self, namespaceURI, localName ): + return self._attrsNS[(namespaceURI, localName)] + def setAttributeNode( self, attr ): ! old=self._attrs.get( attr.name, None) ! if old: ! old.unlink() ! self._attrs[attr.name]=attr ! self._attrsNS[(attr.namespaceURI,attr.localName)]=attr def removeAttribute( self, name ): ! attr = self._attrs[name] self.removeAttributeNode( attr ) def removeAttributeNS( self, namespaceURI, localName ): ! attr = self._attrsNS[(namespaceURI, localName)] self.removeAttributeNode( attr ) def removeAttributeNode( self, node ): ! node.unlink() ! del self._attrs[node.name] ! del self._attrsNS[(node.namespaceURI, node.localName)] def getElementsByTagName( self, name ): *************** *** 272,276 **** def _get_attributes( self ): ! return AttributeList( self.__attrs, self.__attrsNS ) class Comment( Node ): --- 322,326 ---- def _get_attributes( self ): ! return AttributeList( self._attrs, self._attrsNS ) class Comment( Node ): *************** *** 314,326 **** _write_data( writer, self.data ) class Document( Node ): nodeType=Node.DOCUMENT_NODE def __init__( self ): Node.__init__( self ) - self.documentElement=None self.attributes=None self.nodeName="#document" self.nodeValue=None createElement=Element --- 364,391 ---- _write_data( writer, self.data ) + def _nssplit( qualifiedName ): + fields = string.split(qualifiedName, ':') + if len(fields) == 2: + return fields + elif len(fields) == 1: + return( '', fields[0] ) + class Document( Node ): nodeType=Node.DOCUMENT_NODE + documentElement=None def __init__( self ): Node.__init__( self ) self.attributes=None self.nodeName="#document" self.nodeValue=None + def appendChild( self, node ): + if node.nodeType==Node.ELEMENT_NODE and self.documentElement: + raise TypeError, "Two document elements disallowed" + else: + self.documentElement=node + Node.appendChild( self, node ) + return node + createElement=Element *************** *** 334,362 **** def createElementNS(self, namespaceURI, qualifiedName): ! fields = string.split(qualifiedName, ':') ! if len(fields) == 2: ! prefix = fields[0] ! localName = fields[1] ! elif len(fields) == 1: ! prefix = '' ! localName = fields[0] ! return Element(self, qualifiedName, namespaceURI, prefix, localName) def createAttributeNS(self, namespaceURI, qualifiedName): ! fields = string.split(qualifiedName,':') ! if len(fields) == 2: ! localName = fields[1] ! prefix = fields[0] ! elif len(fields) == 1: ! localName = fields[0] ! prefix = None ! return Attr(qualifiedName, namespaceURI, prefix, localName) def getElementsByTagNameNS(self,namespaceURI,localName): _getElementsByTagNameNSHelper( self, namespaceURI, localName ) - - def close( self ): - for node in self.elements: - _closeElement( node ) def unlink( self ): --- 399,411 ---- def createElementNS(self, namespaceURI, qualifiedName): ! prefix,localName=_nssplit( qualifiedName ) ! return Element(qualifiedName, namespaceURI, prefix, localName) def createAttributeNS(self, namespaceURI, qualifiedName): ! prefix,localName=_nssplit( qualifiedName ) ! return Attr(namespaceURI, qualifiedName, localName, prefix) def getElementsByTagNameNS(self,namespaceURI,localName): _getElementsByTagNameNSHelper( self, namespaceURI, localName ) def unlink( self ): Index: pulldom.py =================================================================== RCS file: /cvsroot/python/python/dist/src/Lib/xml/dom/pulldom.py,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** pulldom.py 2000/06/29 19:39:57 1.1 --- pulldom.py 2000/07/01 04:58:47 1.2 *************** *** 3,7 **** import string import sys - import pyexpat from xml.sax import ExpatParser --- 3,6 ---- *************** *** 141,150 **** if token !=END_ELEMENT: ! cur_node.parentNode.childNodes.append( cur_node ) event=self.getEvent() - if node.nodeType==minidom.Node.DOCUMENT_NODE: - for child in node.childNodes: - if child.nodeType==minidom.Node.ELEMENT_NODE: - node.documentElement=child def getEvent( self ): --- 140,145 ---- if token !=END_ELEMENT: ! cur_node.parentNode.appendChild( cur_node ) event=self.getEvent() def getEvent( self ): *************** *** 194,267 **** bufsize=len( string ) ! stringio( string ) parser=_getParser() return DOMEventStream( buf, parser, bufsize ) - #FIXME: Use Lars' instead!!! - class SAX_expat: - "SAX driver for the Pyexpat C module." - - def __init__(self): - self.parser=pyexpat.ParserCreate() - self.started=0 - - def setDocumentHandler( self, handler ): - self.parser.StartElementHandler = handler.startElement - self.parser.EndElementHandler = handler.endElement - self.parser.CharacterDataHandler = handler.datachars - self.parser.ProcessingInstructionHandler = handler.processingInstruction - self.doc_handler=handler - - def setErrorHandler( self, handler ): - self.err_handler=handler - - # --- Locator methods. Only usable after errors. - - def getLineNumber(self): - return self.parser.ErrorLineNumber - - def getColumnNumber(self): - return self.parser.ErrorColumnNumber - - # --- Internal - - def __report_error(self): - msg=pyexpat.ErrorString(self.parser.ErrorCode) - self.err_handler.fatalError(msg) - - # --- EXPERIMENTAL PYTHON SAX EXTENSIONS - - def get_parser_name(self): - return "pyexpat" - - def get_parser_version(self): - return "Unknown" - - def get_driver_version(self): - return version - - def is_validating(self): - return 0 - - def is_dtd_reading(self): - return 0 - - def reset(self): - self.parser=pyexpat.ParserCreate() - self.parser.StartElementHandler = self.startElement - self.parser.EndElementHandler = self.endElement - self.parser.CharacterDataHandler = self.characters - self.parser.ProcessingInstructionHandler = self.processingInstruction - - def feed(self,data): - if not self.started: - self.doc_handler.startDocument() - self.started=1 - if not self.parser.Parse(data): - self.__report_error() - - def close(self): - if not self.parser.Parse("",1): - self.__report_error() - self.doc_handler.endDocument() - self.parser = None --- 189,194 ---- bufsize=len( string ) ! buf=stringio( string ) parser=_getParser() return DOMEventStream( buf, parser, bufsize ) From python-dev@python.org Sat Jul 1 05:58:50 2000 From: python-dev@python.org (Paul Prescod) Date: Fri, 30 Jun 2000 21:58:50 -0700 Subject: [Python-checkins] CVS: python/dist/src/Lib/xml __init__.py,1.1,1.2 Message-ID: <200007010458.VAA21264@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Lib/xml In directory slayer.i.sourceforge.net:/tmp/cvs-serv21246 Modified Files: __init__.py Log Message: Reference cycle fixes Index: __init__.py =================================================================== RCS file: /cvsroot/python/python/dist/src/Lib/xml/__init__.py,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** __init__.py 2000/06/29 19:25:53 1.1 --- __init__.py 2000/07/01 04:58:46 1.2 *************** *** 9,13 **** sax -- The Simple API for XML, developed by XML-Dev, led by David ! Megginson. This supports the SAX 2 API. ! """ --- 9,13 ---- sax -- The Simple API for XML, developed by XML-Dev, led by David ! Megginson and ported to Python by Lars Marius Garsholm. This ! supports the SAX 2 API. """ From python-dev@python.org Sat Jul 1 05:58:50 2000 From: python-dev@python.org (Paul Prescod) Date: Fri, 30 Jun 2000 21:58:50 -0700 Subject: [Python-checkins] CVS: python/dist/src/Lib/xml/sax __init__.py,1.1,1.2 Message-ID: <200007010458.VAA21266@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Lib/xml/sax In directory slayer.i.sourceforge.net:/tmp/cvs-serv21246/sax Modified Files: __init__.py Log Message: Reference cycle fixes Index: __init__.py =================================================================== RCS file: /cvsroot/python/python/dist/src/Lib/xml/sax/__init__.py,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** __init__.py 2000/06/29 19:33:43 1.1 --- __init__.py 2000/07/01 04:58:47 1.2 *************** *** 24,25 **** --- 24,49 ---- from _exceptions import SAXParseException import xmlreader + + def parse( filename_or_stream, handler, errorHandler=ErrorHandler() ): + parser=ExpatParser() + parser.setContentHandler( handler ) + parse.setErrorHandler( errorHandler ) + parser.parse( filename_or_stream ) + + # this may not work yet...Expat doesn't handle buffer inputs + def parseString( string, handler, errorHandler=ErrorHandler() ): + try: + import cStringIO + stringio=cStringIO.StringIO + except ImportError: + import StringIO + stringio=StringIO.StringIO + + bufsize=len( string ) + buf=stringio( string ) + + parser=ExpatParser() + parser.setContentHandler( handler ) + parse.setErrorHandler( errorHandler ) + parser.parse( buf ) + From python-dev@python.org Sat Jul 1 07:26:48 2000 From: python-dev@python.org (Fred L. Drake) Date: Fri, 30 Jun 2000 23:26:48 -0700 Subject: [Python-checkins] CVS: python/dist/src/Doc/tools/sgmlconv conversion.xml,1.7,1.8 Message-ID: <200007010626.XAA05011@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Doc/tools/sgmlconv In directory slayer.i.sourceforge.net:/tmp/cvs-serv5002 Modified Files: conversion.xml Log Message: Martin von Loewis : Correct typo that caused a well-formedness failure. Index: conversion.xml =================================================================== RCS file: /cvsroot/python/python/dist/src/Doc/tools/sgmlconv/conversion.xml,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -r1.7 -r1.8 *** conversion.xml 2000/01/20 22:51:14 1.7 --- conversion.xml 2000/07/01 06:26:44 1.8 *************** *** 609,613 **** ! ABC --- 609,613 ---- ! ABC From python-dev@python.org Sat Jul 1 07:36:53 2000 From: python-dev@python.org (Fred L. Drake) Date: Fri, 30 Jun 2000 23:36:53 -0700 Subject: [Python-checkins] CVS: python/dist/src/Lib ntpath.py,1.23,1.24 Message-ID: <200007010636.XAA05365@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Lib In directory slayer.i.sourceforge.net:/tmp/cvs-serv5358/Lib Modified Files: ntpath.py Log Message: Fix bug #345 reported by David Bolen : getatime() returned the mtime instead of the atime. Similar to an old bug in posixpath.py. Index: ntpath.py =================================================================== RCS file: /cvsroot/python/python/dist/src/Lib/ntpath.py,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -r1.23 -r1.24 *** ntpath.py 2000/02/17 17:30:40 1.23 --- ntpath.py 2000/07/01 06:36:51 1.24 *************** *** 184,188 **** """Return the last access time of a file, reported by os.stat()""" st = os.stat(filename) ! return st[stat.ST_MTIME] --- 184,188 ---- """Return the last access time of a file, reported by os.stat()""" st = os.stat(filename) ! return st[stat.ST_ATIME] From python-dev@python.org Sat Jul 1 08:03:32 2000 From: python-dev@python.org (Fred L. Drake) Date: Sat, 1 Jul 2000 00:03:32 -0700 Subject: [Python-checkins] CVS: python/dist/src/Lib urllib.py,1.95,1.96 Message-ID: <200007010703.AAA12554@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Lib In directory slayer.i.sourceforge.net:/tmp/cvs-serv12547/Lib Modified Files: urllib.py Log Message: Fix bug #314, reported by Craig Allen : splittype(): Always lower-case the URL scheme; these are supposed to be normalized according to RFC 1738 anyway. Index: urllib.py =================================================================== RCS file: /cvsroot/python/python/dist/src/Lib/urllib.py,v retrieving revision 1.95 retrieving revision 1.96 diff -C2 -r1.95 -r1.96 *** urllib.py 2000/06/10 01:41:48 1.95 --- urllib.py 2000/07/01 07:03:30 1.96 *************** *** 849,853 **** if match: scheme = match.group(1) ! return scheme, url[len(scheme) + 1:] return None, url --- 849,853 ---- if match: scheme = match.group(1) ! return scheme.lower(), url[len(scheme) + 1:] return None, url From python-dev@python.org Sat Jul 1 11:52:30 2000 From: python-dev@python.org (Guido van Rossum) Date: Sat, 1 Jul 2000 03:52:30 -0700 Subject: [Python-checkins] CVS: python/dist/src/Lib macpath.py,1.21,1.22 Message-ID: <200007011052.DAA20595@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Lib In directory slayer.i.sourceforge.net:/tmp/cvs-serv20572 Modified Files: macpath.py Log Message: getatime() returned the mtime instead of the atime. Similar to an old bug in ntpath.py. Index: macpath.py =================================================================== RCS file: /cvsroot/python/python/dist/src/Lib/macpath.py,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -r1.21 -r1.22 *** macpath.py 2000/02/04 15:10:33 1.21 --- macpath.py 2000/07/01 10:52:26 1.22 *************** *** 115,119 **** """Return the last access time of a file, reported by os.stat().""" st = os.stat(filename) ! return st[ST_MTIME] --- 115,119 ---- """Return the last access time of a file, reported by os.stat().""" st = os.stat(filename) ! return st[ST_ATIME] From python-dev@python.org Sat Jul 1 11:52:52 2000 From: python-dev@python.org (Guido van Rossum) Date: Sat, 1 Jul 2000 03:52:52 -0700 Subject: [Python-checkins] CVS: python/dist/src/Lib dospath.py,1.12,1.13 Message-ID: <200007011052.DAA20668@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Lib In directory slayer.i.sourceforge.net:/tmp/cvs-serv20661 Modified Files: dospath.py Log Message: getatime() returned the mtime instead of the atime. Similar to an old bug in ntpath.py. Index: dospath.py =================================================================== RCS file: /cvsroot/python/python/dist/src/Lib/dospath.py,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -r1.12 -r1.13 *** dospath.py 2000/02/04 15:39:29 1.12 --- dospath.py 2000/07/01 10:52:49 1.13 *************** *** 132,136 **** """Return the last access time of a file, reported by os.stat().""" st = os.stat(filename) ! return st[stat.ST_MTIME] --- 132,136 ---- """Return the last access time of a file, reported by os.stat().""" st = os.stat(filename) ! return st[stat.ST_ATIME] From python-dev@python.org Sat Jul 1 14:44:07 2000 From: python-dev@python.org (Paul Prescod) Date: Sat, 1 Jul 2000 06:44:07 -0700 Subject: [Python-checkins] CVS: python/dist/src/Lib/xml/sax __init__.py,1.2,1.3 Message-ID: <200007011344.GAA21526@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Lib/xml/sax In directory slayer.i.sourceforge.net:/tmp/cvs-serv21514 Modified Files: __init__.py Log Message: Tightened xml.sax.__init__.py Index: __init__.py =================================================================== RCS file: /cvsroot/python/python/dist/src/Lib/xml/sax/__init__.py,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** __init__.py 2000/07/01 04:58:47 1.2 --- __init__.py 2000/07/01 13:44:04 1.3 *************** *** 18,27 **** """ ! from handler import * ! from expatreader import * ! from _exceptions import * ! from saxutils import * ! from _exceptions import SAXParseException import xmlreader def parse( filename_or_stream, handler, errorHandler=ErrorHandler() ): --- 18,27 ---- """ ! from handler import ContentHandler, ErrorHandler ! from expatreader import ExpatParser ! from _exceptions import SAXException, SAXNotRecognizedException, \ ! SAXParseException, SAXNotSupportedException import xmlreader + import saxutils def parse( filename_or_stream, handler, errorHandler=ErrorHandler() ): From python-dev@python.org Sat Jul 1 15:31:12 2000 From: python-dev@python.org (Fredrik Lundh) Date: Sat, 1 Jul 2000 07:31:12 -0700 Subject: [Python-checkins] CVS: python/dist/src/Objects object.c,2.79,2.80 Message-ID: <200007011431.HAA30328@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Objects In directory slayer.i.sourceforge.net:/tmp/cvs-serv30087/Objects Modified Files: object.c Log Message: changed repr and str to always convert unicode strings to 8-bit strings, using the default encoding. Index: object.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Objects/object.c,v retrieving revision 2.79 retrieving revision 2.80 diff -C2 -r2.79 -r2.80 *** object.c 2000/07/01 01:00:38 2.79 --- object.c 2000/07/01 14:31:09 2.80 *************** *** 266,269 **** --- 266,277 ---- if (res == NULL) return NULL; + if (PyUnicode_Check(res)) { + PyObject* str; + str = PyUnicode_AsEncodedString(res, NULL, NULL); + if (str) { + Py_DECREF(res); + res = str; + } + } if (!PyString_Check(res)) { PyErr_Format(PyExc_TypeError, *************** *** 303,306 **** --- 311,322 ---- if (res == NULL) return NULL; + if (PyUnicode_Check(res)) { + PyObject* str; + str = PyUnicode_AsEncodedString(res, NULL, NULL); + if (str) { + Py_DECREF(res); + res = str; + } + } if (!PyString_Check(res)) { PyErr_Format(PyExc_TypeError, From python-dev@python.org Sat Jul 1 15:50:23 2000 From: python-dev@python.org (Paul Prescod) Date: Sat, 1 Jul 2000 07:50:23 -0700 Subject: [Python-checkins] CVS: python/dist/src/Lib/test/output test_minidom,NONE,1.1 Message-ID: <200007011450.HAA31396@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Lib/test/output In directory slayer.i.sourceforge.net:/tmp/cvs-serv31383/output Added Files: test_minidom Log Message: Added minidom tests. --- NEW FILE --- Test Succeeded testAAA Test Succeeded testAAB Test Succeeded testAddAttr Test Succeeded testAppendChild Test Succeeded testAttrListItem Test Succeeded testAttrListItemNS Test Succeeded testAttrListItems Test Succeeded testAttrListKeys Test Succeeded testAttrListKeysNS Test Succeeded testAttrListLength Test Succeeded testAttrListValues Test Succeeded testAttrList__getitem__ Test Succeeded testAttrList__setitem__ Test Succeeded testAttributeRepr Test Succeeded testChangeAttr Test Succeeded testChildNodes Test Succeeded testCloneAttributeDeep Test Succeeded testCloneAttributeShallow Test Succeeded testCloneDocumentDeep Test Succeeded testCloneDocumentShallow Test Succeeded testCloneElementDeep Test Succeeded testCloneElementShallow Test Succeeded testCloneElementShallowCopiesAttributes Test Succeeded testClonePIDeep Test Succeeded testClonePIShallow Test Succeeded testComment Test Succeeded testCreatAttributeNS Test Succeeded testCreateElementNS Test Succeeded testDeleteAttr Test Succeeded testDocumentElement Test Succeeded testElement Test Succeeded testElementReprAndStr Test Succeeded testFirstChild Test Succeeded testGetAttrLength Test Succeeded testGetAttrList Test Succeeded testGetAttrValues Test Succeeded testGetAttribute Test Succeeded testGetAttributeNS Test Succeeded testGetAttributeNode Test Succeeded testGetElementsByTagName Test Succeeded testGetElementsByTagNameNS Test Succeeded testGetEmptyNodeListFromElementsByTagNameNS Test Succeeded testHasChildNodes Test Succeeded testInsertBefore Test Succeeded testNonZero Test Succeeded testParse Test Succeeded testParseAttributeNamespaces Test Succeeded testParseAttributes Test Succeeded testParseElement Test Succeeded testParseElementNamespaces Test Succeeded testParseProcessingInstructions Test Succeeded testParseString Test Succeeded testProcessingInstruction Test Succeeded testProcessingInstructionRepr Test Succeeded testRemoveAttr Test Succeeded testRemoveAttrNS Test Succeeded testRemoveAttributeNode Test Succeeded testSetAttrValueandNodeValue Test Succeeded testTextNodeRepr Test Succeeded testTextRepr Test Succeeded testTooManyDocumentElements Test Succeeded testUnlink Test Succeeded testWriteText Test Succeeded testWriteXML From python-dev@python.org Sat Jul 1 15:50:23 2000 From: python-dev@python.org (Paul Prescod) Date: Sat, 1 Jul 2000 07:50:23 -0700 Subject: [Python-checkins] CVS: python/dist/src/Lib/test test_minidom.py,NONE,1.1 Message-ID: <200007011450.HAA31393@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Lib/test In directory slayer.i.sourceforge.net:/tmp/cvs-serv31383 Added Files: test_minidom.py Log Message: Added minidom tests. --- NEW FILE --- from xml.dom.minidom import parse, Node, Document, parseString import traceback, sys tstfile="test.xml" Node._debug=1 def testGetElementsByTagName( ): dom=parse( tstfile ) assert dom.getElementsByTagName( "LI" )==\ dom.documentElement.getElementsByTagName( "LI" ) dom.unlink() dom=None assert( len( Node.allnodes ))==0 def testInsertBefore( ): dom=parse( tstfile ) docel=dom.documentElement #docel.insertBefore( dom.createProcessingInstruction("a", "b"), # docel.childNodes[1]) #docel.insertBefore( dom.createProcessingInstruction("a", "b"), # docel.childNodes[0]) #assert docel.childNodes[0].target=="a" #assert docel.childNodes[2].target=="a" dom.unlink() del dom del docel assert( len( Node.allnodes ))==0 def testAppendChild(): dom=parse( tstfile ) dom.documentElement.appendChild( dom.createComment( u"Hello" )) assert dom.documentElement.childNodes[-1].nodeName=="#comment" assert dom.documentElement.childNodes[-1].data=="Hello" dom.unlink() dom=None assert( len( Node.allnodes ))==0 def testNonZero(): dom=parse( tstfile ) assert dom # should not be zero dom.appendChild( dom.createComment( "foo" ) ) assert not dom.childNodes[-1].childNodes dom.unlink() dom=None assert( len( Node.allnodes ))==0 def testUnlink(): dom=parse( tstfile ) dom.unlink() dom=None assert( len( Node.allnodes ))==0 def testElement(): dom=Document() dom.appendChild( dom.createElement( "abc" ) ) assert dom.documentElement dom.unlink() dom=None assert( len( Node.allnodes ))==0 def testAAA(): dom=parseString( "" ) el=dom.documentElement el.setAttribute( "spam", "jam2" ) dom.unlink() dom=None def testAAB(): dom=parseString( "" ) el=dom.documentElement el.setAttribute( "spam", "jam" ) el.setAttribute( "spam", "jam2" ) dom.unlink() dom=None def testAddAttr(): dom=Document() child=dom.appendChild( dom.createElement( "abc" ) ) child.setAttribute( "def", "ghi" ) assert child.getAttribute( "def" )=="ghi" assert child.attributes["def"].value=="ghi" child.setAttribute( "jkl", "mno" ) assert child.getAttribute( "jkl" )=="mno" assert child.attributes["jkl"].value=="mno" assert len( child.attributes )==2 child.setAttribute( "def", "newval" ) assert child.getAttribute( "def" )=="newval" assert child.attributes["def"].value=="newval" assert len( child.attributes )==2 dom.unlink() dom=None child=None def testDeleteAttr(): dom=Document() child=dom.appendChild( dom.createElement( "abc" ) ) assert len( child.attributes)==0 child.setAttribute( "def", "ghi" ) assert len( child.attributes)==1 del child.attributes["def"] assert len( child.attributes)==0 dom.unlink() assert( len( Node.allnodes ))==0 def testRemoveAttr(): dom=Document() child=dom.appendChild( dom.createElement( "abc" ) ) child.setAttribute( "def", "ghi" ) assert len( child.attributes)==1 child.removeAttribute("def" ) assert len( child.attributes)==0 dom.unlink() def testRemoveAttrNS(): dom=Document() child=dom.appendChild( dom.createElementNS( "http://www.python.org", "python:abc" ) ) child.setAttributeNS( "http://www.w3.org", "xmlns:python", "http://www.python.org" ) child.setAttributeNS( "http://www.python.org", "python:abcattr", "foo" ) assert len( child.attributes )==2 child.removeAttributeNS( "http://www.python.org", "abcattr" ) assert len( child.attributes )==1 dom.unlink() dom=None def testRemoveAttributeNode(): dom=Document() child=dom.appendChild( dom.createElement( "foo" ) ) child.setAttribute( "spam", "jam" ) assert len( child.attributes )==1 node=child.getAttributeNode( "spam" ) child.removeAttributeNode( node ) assert len( child.attributes )==0 dom.unlink() dom=None assert len( Node.allnodes )==0 def testChangeAttr(): dom=parseString( "" ) el=dom.documentElement el.setAttribute( "spam", "jam" ) assert len( el.attributes )==1 el.setAttribute( "spam", "bam" ) assert len( el.attributes )==1 el.attributes["spam"]="ham" assert len( el.attributes )==1 el.setAttribute( "spam2", "bam" ) assert len( el.attributes )==2 el.attributes[ "spam2"]= "bam2" assert len( el.attributes )==2 dom.unlink() dom=None assert len( Node.allnodes )==0 def testGetAttrList(): pass def testGetAttrValues(): pass def testGetAttrLength(): pass def testGetAttribute(): pass def testGetAttributeNS(): pass def testGetAttributeNode(): pass def testGetElementsByTagNameNS(): pass def testGetEmptyNodeListFromElementsByTagNameNS(): pass def testElementReprAndStr(): dom=Document() el=dom.appendChild( dom.createElement( "abc" ) ) string1=repr( el ) string2=str( el ) assert string1==string2 dom.unlink() # commented out until Fredrick's fix is checked in def _testElementReprAndStrUnicode(): dom=Document() el=dom.appendChild( dom.createElement( u"abc" ) ) string1=repr( el ) string2=str( el ) assert string1==string2 dom.unlink() # commented out until Fredrick's fix is checked in def _testElementReprAndStrUnicodeNS(): dom=Document() el=dom.appendChild( dom.createElementNS( u"http://www.slashdot.org", u"slash:abc" )) string1=repr( el ) string2=str( el ) assert string1==string2 assert string1.find("slash:abc" )!=-1 dom.unlink() def testAttributeRepr(): dom=Document() el=dom.appendChild( dom.createElement( u"abc" ) ) node=el.setAttribute( "abc", "def" ) assert str( node ) == repr( node ) dom.unlink() def testTextNodeRepr(): pass def testWriteXML(): pass def testProcessingInstruction(): pass def testProcessingInstructionRepr(): pass def testTextRepr(): pass def testWriteText(): pass def testDocumentElement(): pass def testTooManyDocumentElements(): pass def testCreateElementNS(): pass def testCreatAttributeNS(): pass def testParse(): pass def testParseString(): pass def testComment(): pass def testAttrListItem(): pass def testAttrListItems(): pass def testAttrListItemNS(): pass def testAttrListKeys(): pass def testAttrListKeysNS(): pass def testAttrListValues(): pass def testAttrListLength(): pass def testAttrList__getitem__(): pass def testAttrList__setitem__(): pass def testSetAttrValueandNodeValue(): pass def testParseElement(): pass def testParseAttributes(): pass def testParseElementNamespaces(): pass def testParseAttributeNamespaces(): pass def testParseProcessingInstructions(): pass def testChildNodes(): pass def testFirstChild(): pass def testHasChildNodes(): pass def testCloneElementShallow(): pass def testCloneElementShallowCopiesAttributes(): pass def testCloneElementDeep(): pass def testCloneDocumentShallow(): pass def testCloneDocumentDeep(): pass def testCloneAttributeShallow(): pass def testCloneAttributeDeep(): pass def testClonePIShallow(): pass def testClonePIDeep(): pass names=globals().keys() names.sort() for name in names: if name.startswith( "test" ): func=globals()[name] try: func() print "Test Succeeded", name if len( Node.allnodes ): print "Garbage left over:" print Node.allnodes.items()[0:10] Node.allnodes={} except Exception, e : print "Test Failed: ", name apply( traceback.print_exception, sys.exc_info() ) print `e` Node.allnodes={} raise From python-dev@python.org Sat Jul 1 15:54:18 2000 From: python-dev@python.org (Paul Prescod) Date: Sat, 1 Jul 2000 07:54:18 -0700 Subject: [Python-checkins] CVS: python/dist/src/Lib/test test.xml,NONE,1.1 Message-ID: <200007011454.HAA31638@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Lib/test In directory slayer.i.sourceforge.net:/tmp/cvs-serv31632 Added Files: test.xml Log Message: Added minidom tests. --- NEW FILE --- Introduction to XSL

Introduction to XSL


Overview

  • 1.Intro
  • 2.History
  • 3.XSL Basics
  • Lunch
  • 4.An XML Data Model
  • 5.XSL Patterns
  • 6.XSL Templates
  • 7.XSL Formatting Model

Intro

  • Who am I?
  • Who are you?
  • Why are we here?

History: XML and SGML

  • XML is a subset of SGML.
  • SGML allows the separation of abstract content from formatting.
  • Also one of XML's primary virtues (in the doc publishing domain).

History: What are stylesheets?

  • Stylesheets specify the formatting of SGML/XML documents.
  • Stylesheets put the "style" back into documents.
  • New York Times content+NYT Stylesheet = NYT paper

History: FOSI

  • FOSI: "Formatted Output Specification Instance"
    • MIL-STD-28001
    • FOSI's are SGML documents
    • A stylesheet for another document
  • Obsolete but implemented...
From python-dev@python.org Sat Jul 1 18:43:22 2000 From: python-dev@python.org (Fred L. Drake) Date: Sat, 1 Jul 2000 10:43:22 -0700 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libnntplib.tex,1.24,1.25 Message-ID: <200007011743.KAA25562@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Doc/lib In directory slayer.i.sourceforge.net:/tmp/cvs-serv25554/Doc/lib Modified Files: libnntplib.tex Log Message: Send a "ARTICLE" --> Send an "ARTICLE" Usage error noted by Grant Griffin . Index: libnntplib.tex =================================================================== RCS file: /cvsroot/python/python/dist/src/Doc/lib/libnntplib.tex,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -r1.24 -r1.25 *** libnntplib.tex 2000/02/10 20:26:45 1.24 --- libnntplib.tex 2000/07/01 17:43:19 1.25 *************** *** 204,208 **** \begin{methoddesc}{article}{id} ! Send a \samp{ARTICLE} command, where \var{id} has the same meaning as for \method{stat()}. Return as for \method{head()}. \end{methoddesc} --- 204,208 ---- \begin{methoddesc}{article}{id} ! Send an \samp{ARTICLE} command, where \var{id} has the same meaning as for \method{stat()}. Return as for \method{head()}. \end{methoddesc} From python-dev@python.org Sat Jul 1 18:47:40 2000 From: python-dev@python.org (Fred L. Drake) Date: Sat, 1 Jul 2000 10:47:40 -0700 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libpickle.tex,1.25,1.26 Message-ID: <200007011747.KAA25745@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Doc/lib In directory slayer.i.sourceforge.net:/tmp/cvs-serv25737/Doc/lib Modified Files: libpickle.tex Log Message: others --> other's (possessive) Usage error noted by Grant Griffin . Index: libpickle.tex =================================================================== RCS file: /cvsroot/python/python/dist/src/Doc/lib/libpickle.tex,v retrieving revision 1.25 retrieving revision 1.26 diff -C2 -r1.25 -r1.26 *** libpickle.tex 2000/04/06 15:04:30 1.25 --- libpickle.tex 2000/07/01 17:47:38 1.26 *************** *** 387,389 **** certain objects, it's possible that the two modules produce different pickled data for the same input objects; however they will always be ! able to read each others pickles back in.) --- 387,389 ---- certain objects, it's possible that the two modules produce different pickled data for the same input objects; however they will always be ! able to read each other's pickles back in.) From python-dev@python.org Sat Jul 1 18:51:06 2000 From: python-dev@python.org (Fredrik Lundh) Date: Sat, 1 Jul 2000 10:51:06 -0700 Subject: [Python-checkins] CVS: python/dist/src/Modules _sre.c,2.17,2.18 Message-ID: <200007011751.KAA25898@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Modules In directory slayer.i.sourceforge.net:/tmp/cvs-serv25808/Modules Modified Files: _sre.c Log Message: today's SRE update: -- changed 1.6 to 2.0 in the file headers -- fixed ISALNUM macro for the unicode locale. this solution isn't perfect, but the best I can do with Python's current unicode database. Index: _sre.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/_sre.c,v retrieving revision 2.17 retrieving revision 2.18 diff -C2 -r2.17 -r2.18 *** _sre.c 2000/06/30 21:40:20 2.17 --- _sre.c 2000/07/01 17:50:59 2.18 *************** *** 26,30 **** * * Portions of this engine have been developed in cooperation with ! * CNRI. Hewlett-Packard provided funding for 1.6 integration and * other compatibility work. */ --- 26,30 ---- * * Portions of this engine have been developed in cooperation with ! * CNRI. Hewlett-Packard provided funding for 2.0 integration and * other compatibility work. */ *************** *** 53,57 **** #if PY_VERSION_HEX >= 0x01060000 ! /* defining this enables unicode support (default under 1.6) */ #define HAVE_UNICODE #endif --- 53,57 ---- #if PY_VERSION_HEX >= 0x01060000 ! /* defining this enables unicode support (default under 1.6a1 and later) */ #define HAVE_UNICODE #endif *************** *** 144,152 **** return (unsigned int) Py_UNICODE_TOLOWER((Py_UNICODE)(ch)); } ! #define SRE_UNI_TO_LOWER(ch) Py_UNICODE_TOLOWER((Py_UNICODE)(ch)) #define SRE_UNI_IS_DIGIT(ch) Py_UNICODE_ISDIGIT((Py_UNICODE)(ch)) #define SRE_UNI_IS_SPACE(ch) Py_UNICODE_ISSPACE((Py_UNICODE)(ch)) #define SRE_UNI_IS_LINEBREAK(ch) Py_UNICODE_ISLINEBREAK((Py_UNICODE)(ch)) ! #define SRE_UNI_IS_ALNUM(ch) ((ch) < 256 ? isalnum((ch)) : 0) #define SRE_UNI_IS_WORD(ch) (SRE_IS_ALNUM((ch)) || (ch) == '_') #endif --- 144,159 ---- return (unsigned int) Py_UNICODE_TOLOWER((Py_UNICODE)(ch)); } ! ! #if !defined(Py_UNICODE_ISALNUM) ! /* FIXME: workaround. should be fixed in unicodectype.c */ ! #define Py_UNICODE_ISALNUM(ch)\ ! (Py_UNICODE_ISLOWER(ch) || Py_UNICODE_ISUPPER(ch) ||\ ! Py_UNICODE_ISTITLE(ch) || Py_UNICODE_ISDIGIT(ch)) ! #endif ! #define SRE_UNI_IS_DIGIT(ch) Py_UNICODE_ISDIGIT((Py_UNICODE)(ch)) #define SRE_UNI_IS_SPACE(ch) Py_UNICODE_ISSPACE((Py_UNICODE)(ch)) #define SRE_UNI_IS_LINEBREAK(ch) Py_UNICODE_ISLINEBREAK((Py_UNICODE)(ch)) ! #define SRE_UNI_IS_ALNUM(ch) Py_UNICODE_ISALNUM((Py_UNICODE)(ch)) #define SRE_UNI_IS_WORD(ch) (SRE_IS_ALNUM((ch)) || (ch) == '_') #endif From python-dev@python.org Sat Jul 1 18:51:06 2000 From: python-dev@python.org (Fredrik Lundh) Date: Sat, 1 Jul 2000 10:51:06 -0700 Subject: [Python-checkins] CVS: python/dist/src/Lib sre.py,1.17,1.18 sre_compile.py,1.18,1.19 sre_constants.py,1.12,1.13 sre_parse.py,1.18,1.19 Message-ID: <200007011751.KAA25902@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Lib In directory slayer.i.sourceforge.net:/tmp/cvs-serv25808/Lib Modified Files: sre.py sre_compile.py sre_constants.py sre_parse.py Log Message: today's SRE update: -- changed 1.6 to 2.0 in the file headers -- fixed ISALNUM macro for the unicode locale. this solution isn't perfect, but the best I can do with Python's current unicode database. Index: sre.py =================================================================== RCS file: /cvsroot/python/python/dist/src/Lib/sre.py,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -r1.17 -r1.18 *** sre.py 2000/06/30 13:55:14 1.17 --- sre.py 2000/07/01 17:50:59 1.18 *************** *** 7,11 **** # # Portions of this engine have been developed in cooperation with ! # CNRI. Hewlett-Packard provided funding for 1.6 integration and # other compatibility work. # --- 7,11 ---- # # Portions of this engine have been developed in cooperation with ! # CNRI. Hewlett-Packard provided funding for 2.0 integration and # other compatibility work. # Index: sre_compile.py =================================================================== RCS file: /cvsroot/python/python/dist/src/Lib/sre_compile.py,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -r1.18 -r1.19 *** sre_compile.py 2000/06/30 22:37:31 1.18 --- sre_compile.py 2000/07/01 17:50:59 1.19 *************** *** 7,11 **** # # Portions of this engine have been developed in cooperation with ! # CNRI. Hewlett-Packard provided funding for 1.6 integration and # other compatibility work. # --- 7,11 ---- # # Portions of this engine have been developed in cooperation with ! # CNRI. Hewlett-Packard provided funding for 2.0 integration and # other compatibility work. # Index: sre_constants.py =================================================================== RCS file: /cvsroot/python/python/dist/src/Lib/sre_constants.py,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -r1.12 -r1.13 *** sre_constants.py 2000/06/30 10:41:30 1.12 --- sre_constants.py 2000/07/01 17:50:59 1.13 *************** *** 8,12 **** # # Portions of this engine have been developed in cooperation with ! # CNRI. Hewlett-Packard provided funding for 1.6 integration and # other compatibility work. # --- 8,12 ---- # # Portions of this engine have been developed in cooperation with ! # CNRI. Hewlett-Packard provided funding for 2.0 integration and # other compatibility work. # Index: sre_parse.py =================================================================== RCS file: /cvsroot/python/python/dist/src/Lib/sre_parse.py,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -r1.18 -r1.19 *** sre_parse.py 2000/06/30 22:37:31 1.18 --- sre_parse.py 2000/07/01 17:50:59 1.19 *************** *** 7,11 **** # # Portions of this engine have been developed in cooperation with ! # CNRI. Hewlett-Packard provided funding for 1.6 integration and # other compatibility work. # --- 7,11 ---- # # Portions of this engine have been developed in cooperation with ! # CNRI. Hewlett-Packard provided funding for 2.0 integration and # other compatibility work. # From python-dev@python.org Sat Jul 1 20:17:46 2000 From: python-dev@python.org (Paul Prescod) Date: Sat, 1 Jul 2000 12:17:46 -0700 Subject: [Python-checkins] CVS: python/dist/src/Lib/test/output test_minidom,1.1,1.2 Message-ID: <200007011917.MAA10073@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Lib/test/output In directory slayer.i.sourceforge.net:/tmp/cvs-serv10064 Modified Files: test_minidom Log Message: Fixed test output Index: test_minidom =================================================================== RCS file: /cvsroot/python/python/dist/src/Lib/test/output/test_minidom,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** test_minidom 2000/07/01 14:50:21 1.1 --- test_minidom 2000/07/01 19:17:43 1.2 *************** *** 1,2 **** --- 1,3 ---- + test_minidom Test Succeeded testAAA Test Succeeded testAAB From python-dev@python.org Sat Jul 1 20:19:34 2000 From: python-dev@python.org (Paul Prescod) Date: Sat, 1 Jul 2000 12:19:34 -0700 Subject: [Python-checkins] CVS: python/dist/src/Lib/xml/sax saxutils.py,1.1,1.2 Message-ID: <200007011919.MAA10146@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Lib/xml/sax In directory slayer.i.sourceforge.net:/tmp/cvs-serv10136 Modified Files: saxutils.py Log Message: Removed unncessary dependency. Index: saxutils.py =================================================================== RCS file: /cvsroot/python/python/dist/src/Lib/xml/sax/saxutils.py,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** saxutils.py 2000/06/29 19:34:54 1.1 --- saxutils.py 2000/07/01 19:19:32 1.2 *************** *** 6,10 **** """ ! import types, string, sys, urllib import handler --- 6,10 ---- """ ! import types, string, sys import handler From python-dev@python.org Sat Jul 1 20:21:50 2000 From: python-dev@python.org (Paul Prescod) Date: Sat, 1 Jul 2000 12:21:50 -0700 Subject: [Python-checkins] CVS: python/dist/src/Lib/xml/dom minidom.py,1.2,1.3 Message-ID: <200007011921.MAA10240@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Lib/xml/dom In directory slayer.i.sourceforge.net:/tmp/cvs-serv10231 Modified Files: minidom.py Log Message: Misc fixes and improvements. Index: minidom.py =================================================================== RCS file: /cvsroot/python/python/dist/src/Lib/xml/dom/minidom.py,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** minidom.py 2000/07/01 04:58:47 1.2 --- minidom.py 2000/07/01 19:21:47 1.3 *************** *** 41,45 **** Node.allnodes[index]=repr( self.__dict__ ) if Node.debug==None: ! Node.debug=open( "debug4.out", "w" ) Node.debug.write( "create %s\n"%index ) --- 41,46 ---- Node.allnodes[index]=repr( self.__dict__ ) if Node.debug==None: ! Node.debug=StringIO() ! #open( "debug4.out", "w" ) Node.debug.write( "create %s\n"%index ) *************** *** 217,227 **** #FIXME: is it appropriate to return .value? def __getitem__( self, attname_or_tuple ): ! if type( attname_or_tuple ) == type( () ): return self._attrsNS[attname_or_tuple] else: return self._attrs[attname_or_tuple] ! def __setitem__( self, attname ): ! raise TypeError, "object does not support item assignment" def __delitem__( self, attname_or_tuple ): --- 218,239 ---- #FIXME: is it appropriate to return .value? def __getitem__( self, attname_or_tuple ): ! if type( attname_or_tuple ) == types.TupleType: return self._attrsNS[attname_or_tuple] else: return self._attrs[attname_or_tuple] ! # same as set ! def __setitem__( self, attname, value ): ! if type( value ) == types.StringType: ! node=Attr( attname ) ! node.value=value ! else: ! assert isinstance( value, Attr ) or type( value )==types.StringType ! node=value ! old=self._attrs.get( attname, None) ! if old: ! old.unlink() ! self._attrs[node.name]=node ! self._attrsNS[(node.namespaceURI,node.localName)]=node def __delitem__( self, attname_or_tuple ): From python-dev@python.org Sat Jul 1 21:38:30 2000 From: python-dev@python.org (Tim Peters) Date: Sat, 1 Jul 2000 13:38:30 -0700 Subject: [Python-checkins] CVS: python/dist/src/PCbuild readme.txt,1.9,1.10 Message-ID: <200007012038.NAA20714@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/PCbuild In directory slayer.i.sourceforge.net:/tmp/cvs-serv20693/python/dist/src/PCbuild Modified Files: readme.txt Log Message: Typo repair. Index: readme.txt =================================================================== RCS file: /cvsroot/python/python/dist/src/PCbuild/readme.txt,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -r1.9 -r1.10 *** readme.txt 2000/07/01 03:46:38 1.9 --- readme.txt 2000/07/01 20:38:27 1.10 *************** *** 92,96 **** ! YOUR OWN EXTENSION DDLs ----------------------- If you want to create your own extension module DLL, there's an example --- 92,96 ---- ! YOUR OWN EXTENSION DLLs ----------------------- If you want to create your own extension module DLL, there's an example From python-dev@python.org Sat Jul 1 21:57:05 2000 From: python-dev@python.org (Fred L. Drake) Date: Sat, 1 Jul 2000 13:57:05 -0700 Subject: [Python-checkins] CVS: python/dist/src/Lib/plat-win winreg.py,1.2,1.3 Message-ID: <200007012057.NAA21601@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Lib/plat-win In directory slayer.i.sourceforge.net:/tmp/cvs-serv21594/Lib/plat-win Modified Files: winreg.py Log Message: test(): Removed; regression test is in test.test_winreg2, not testreg. Index: winreg.py =================================================================== RCS file: /cvsroot/python/python/dist/src/Lib/plat-win/winreg.py,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** winreg.py 2000/06/30 20:31:39 1.2 --- winreg.py 2000/07/01 20:57:03 1.3 *************** *** 304,309 **** "REG_OPTION_CREATE_LINK"] - def test(): - import testreg #unusednames=_RegNotifyChangeKeyValueOptions+_RegRestoreKeyOptions+_RegCreateKeyExOptions --- 304,307 ---- From python-dev@python.org Sun Jul 2 00:49:16 2000 From: python-dev@python.org (Fredrik Lundh) Date: Sat, 1 Jul 2000 16:49:16 -0700 Subject: [Python-checkins] CVS: python/dist/src/Lib sre_parse.py,1.19,1.20 Message-ID: <200007012349.QAA15984@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Lib In directory slayer.i.sourceforge.net:/tmp/cvs-serv15852/Lib Modified Files: sre_parse.py Log Message: - fixed "{ in any other context" bug - minor comment touchups in the C module Index: sre_parse.py =================================================================== RCS file: /cvsroot/python/python/dist/src/Lib/sre_parse.py,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -r1.19 -r1.20 *** sre_parse.py 2000/07/01 17:50:59 1.19 --- sre_parse.py 2000/07/01 23:49:14 1.20 *************** *** 143,152 **** class Tokenizer: def __init__(self, string): - self.index = 0 self.string = string ! self.next = self.__next() def __next(self): if self.index >= len(self.string): ! return None char = self.string[self.index] if char[0] == "\\": --- 143,153 ---- class Tokenizer: def __init__(self, string): self.string = string ! self.index = 0 ! self.__next() def __next(self): if self.index >= len(self.string): ! self.next = None ! return char = self.string[self.index] if char[0] == "\\": *************** *** 157,175 **** char = char + c self.index = self.index + len(char) ! return char def match(self, char): if char == self.next: ! self.next = self.__next() ! return 1 ! return 0 ! def match_set(self, set): ! if self.next and self.next in set: ! self.next = self.__next() return 1 return 0 def get(self): this = self.next ! self.next = self.__next() return this def isident(char): --- 158,175 ---- char = char + c self.index = self.index + len(char) ! self.next = char def match(self, char): if char == self.next: ! self.__next() return 1 return 0 def get(self): this = self.next ! self.__next() return this + def tell(self): + return self.index, self.next + def seek(self, index): + self.index, self.next = index def isident(char): *************** *** 382,385 **** --- 382,386 ---- min, max = 1, MAXREPEAT elif this == "{": + here = source.tell() min, max = 0, MAXREPEAT lo = hi = "" *************** *** 392,396 **** hi = lo if not source.match("}"): ! raise error, "bogus range" if lo: min = int(lo) --- 393,399 ---- hi = lo if not source.match("}"): ! subpattern.append((LITERAL, ord(this))) ! source.seek(here) ! continue if lo: min = int(lo) From python-dev@python.org Sun Jul 2 00:49:16 2000 From: python-dev@python.org (Fredrik Lundh) Date: Sat, 1 Jul 2000 16:49:16 -0700 Subject: [Python-checkins] CVS: python/dist/src/Modules _sre.c,2.18,2.19 Message-ID: <200007012349.QAA15988@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Modules In directory slayer.i.sourceforge.net:/tmp/cvs-serv15852/Modules Modified Files: _sre.c Log Message: - fixed "{ in any other context" bug - minor comment touchups in the C module Index: _sre.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/_sre.c,v retrieving revision 2.18 retrieving revision 2.19 diff -C2 -r2.18 -r2.19 *** _sre.c 2000/07/01 17:50:59 2.18 --- _sre.c 2000/07/01 23:49:14 2.19 *************** *** 20,24 **** * 00-06-28 fl fixed findall (0.9.1) * 00-06-29 fl fixed split, added more scanner features (0.9.2) ! * 00-06-30 fl tuning, fast search (0.9.3) * 00-06-30 fl added assert (lookahead) primitives, etc (0.9.4) * --- 20,24 ---- * 00-06-28 fl fixed findall (0.9.1) * 00-06-29 fl fixed split, added more scanner features (0.9.2) ! * 00-06-30 fl added fast search optimization (0.9.3) * 00-06-30 fl added assert (lookahead) primitives, etc (0.9.4) * *************** *** 366,369 **** --- 366,370 ---- case SRE_OP_LITERAL: + /* args: */ if (ch == set[0]) return ok; *************** *** 372,375 **** --- 373,377 ---- case SRE_OP_RANGE: + /* args: */ if (set[0] <= ch && ch <= set[1]) return ok; *************** *** 378,381 **** --- 380,384 ---- case SRE_OP_CATEGORY: + /* args: */ if (sre_category(set[0], (int) ch)) return ok; From python-dev@python.org Sun Jul 2 13:00:09 2000 From: python-dev@python.org (Fredrik Lundh) Date: Sun, 2 Jul 2000 05:00:09 -0700 Subject: [Python-checkins] CVS: python/dist/src/Modules _sre.c,2.19,2.20 sre_constants.h,2.5,2.6 Message-ID: <200007021200.FAA11452@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Modules In directory slayer.i.sourceforge.net:/tmp/cvs-serv10442/Modules Modified Files: _sre.c sre_constants.h Log Message: -- use charset bitmaps where appropriate. this gives a 5-10% speedup for some tests, including the python tokenizer. -- added support for an optional charset anchor to the engine (currently unused by the code generator). -- removed workaround for array module bug. Index: _sre.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/_sre.c,v retrieving revision 2.19 retrieving revision 2.20 diff -C2 -r2.19 -r2.20 *** _sre.c 2000/07/01 23:49:14 2.19 --- _sre.c 2000/07/02 12:00:07 2.20 *************** *** 379,382 **** --- 379,389 ---- break; + case SRE_OP_CHARSET: + /* args: (16 bits per code word) */ + if (ch < 256 && (set[ch >> 4] & (1 << (ch & 15)))) + return ok; + set += 16; + break; + case SRE_OP_CATEGORY: /* args: */ *************** *** 953,979 **** SRE_CHAR* end = state->end; int status = 0; ! int prefix_len = 0; ! SRE_CODE* prefix; ! SRE_CODE* overlap; ! int literal = 0; if (pattern[0] == SRE_OP_INFO) { /* optimization info block */ ! /* args: <1=skip> <2=flags> <3=min> <4=max> <5=prefix> <6=data...> */ if (pattern[3] > 0) { /* adjust end point (but make sure we leave at least one ! character in there) */ end -= pattern[3]-1; if (end <= ptr) end = ptr+1; } - - literal = pattern[2]; - - prefix = pattern + 6; - prefix_len = pattern[5]; ! overlap = prefix + prefix_len - 1; pattern += 1 + pattern[1]; --- 960,989 ---- SRE_CHAR* end = state->end; int status = 0; ! int prefix_len; ! SRE_CODE* prefix = NULL; ! SRE_CODE* charset = NULL; ! SRE_CODE* overlap = NULL; ! int flags = 0; if (pattern[0] == SRE_OP_INFO) { /* optimization info block */ ! /* args: <1=skip> <2=flags> <3=min> <4=max> <5=prefix info> */ ! ! flags = pattern[2]; if (pattern[3] > 0) { /* adjust end point (but make sure we leave at least one ! character in there, so literal search will work) */ end -= pattern[3]-1; if (end <= ptr) end = ptr+1; } ! if (flags & SRE_INFO_PREFIX) { ! prefix_len = pattern[5]; ! prefix = pattern + 6; ! overlap = prefix + prefix_len - 1; ! } else if (flags & SRE_INFO_CHARSET) ! charset = pattern + 5; pattern += 1 + pattern[1]; *************** *** 981,985 **** #if defined(USE_FAST_SEARCH) ! if (prefix_len > 1) { /* pattern starts with a known prefix. use the overlap table to skip forward as fast as we possibly can */ --- 991,995 ---- #if defined(USE_FAST_SEARCH) ! if (prefix && overlap && prefix_len > 1) { /* pattern starts with a known prefix. use the overlap table to skip forward as fast as we possibly can */ *************** *** 999,1004 **** state->start = ptr - prefix_len + 1; state->ptr = ptr + 1; ! if (literal) ! return 1; /* all of it */ status = SRE_MATCH(state, pattern + 2*prefix_len); if (status != 0) --- 1009,1014 ---- state->start = ptr - prefix_len + 1; state->ptr = ptr + 1; ! if (flags & SRE_INFO_LITERAL) ! return 1; /* we got all of it */ status = SRE_MATCH(state, pattern + 2*prefix_len); if (status != 0) *************** *** 1017,1023 **** #endif ! if (pattern[0] == SRE_OP_LITERAL) { ! /* pattern starts with a literal character. this is used for ! short prefixes, and if fast search is disabled*/ SRE_CODE chr = pattern[1]; for (;;) { --- 1027,1033 ---- #endif ! if (pattern[0] == SRE_OP_LITERAL) { ! /* pattern starts with a literal character. this is used ! for short prefixes, and if fast search is disabled */ SRE_CODE chr = pattern[1]; for (;;) { *************** *** 1033,1036 **** --- 1043,1062 ---- break; } + #if 0 + } else if (charset) { + /* pattern starts with a character from a known set */ + for (;;) { + while (ptr < end && !SRE_MEMBER(charset, ptr[0])) + ptr++; + if (ptr == end) + return 0; + TRACE(("%8d: === SEARCH === charset\n", PTR(ptr))); + state->start = ptr; + state->ptr = ptr; + status = SRE_MATCH(state, pattern); + if (status != 0) + break; + } + #endif } else /* general case */ *************** *** 1045,1048 **** --- 1071,1075 ---- return status; } + #if !defined(SRE_RECURSIVE) Index: sre_constants.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/sre_constants.h,v retrieving revision 2.5 retrieving revision 2.6 diff -C2 -r2.5 -r2.6 *** sre_constants.h 2000/06/30 10:41:31 2.5 --- sre_constants.h 2000/07/02 12:00:07 2.6 *************** *** 21,41 **** #define SRE_OP_CALL 7 #define SRE_OP_CATEGORY 8 ! #define SRE_OP_GROUP 9 ! #define SRE_OP_GROUP_IGNORE 10 ! #define SRE_OP_IN 11 ! #define SRE_OP_IN_IGNORE 12 ! #define SRE_OP_INFO 13 ! #define SRE_OP_JUMP 14 ! #define SRE_OP_LITERAL 15 ! #define SRE_OP_LITERAL_IGNORE 16 ! #define SRE_OP_MARK 17 ! #define SRE_OP_MAX_REPEAT 18 ! #define SRE_OP_MAX_REPEAT_ONE 19 ! #define SRE_OP_MIN_REPEAT 20 ! #define SRE_OP_NOT_LITERAL 21 ! #define SRE_OP_NOT_LITERAL_IGNORE 22 ! #define SRE_OP_NEGATE 23 ! #define SRE_OP_RANGE 24 ! #define SRE_OP_REPEAT 25 #define SRE_AT_BEGINNING 0 #define SRE_AT_BEGINNING_LINE 1 --- 21,42 ---- #define SRE_OP_CALL 7 #define SRE_OP_CATEGORY 8 ! #define SRE_OP_CHARSET 9 ! #define SRE_OP_GROUP 10 ! #define SRE_OP_GROUP_IGNORE 11 ! #define SRE_OP_IN 12 ! #define SRE_OP_IN_IGNORE 13 ! #define SRE_OP_INFO 14 ! #define SRE_OP_JUMP 15 ! #define SRE_OP_LITERAL 16 ! #define SRE_OP_LITERAL_IGNORE 17 ! #define SRE_OP_MARK 18 ! #define SRE_OP_MAX_REPEAT 19 ! #define SRE_OP_MAX_REPEAT_ONE 20 ! #define SRE_OP_MIN_REPEAT 21 ! #define SRE_OP_NOT_LITERAL 22 ! #define SRE_OP_NOT_LITERAL_IGNORE 23 ! #define SRE_OP_NEGATE 24 ! #define SRE_OP_RANGE 25 ! #define SRE_OP_REPEAT 26 #define SRE_AT_BEGINNING 0 #define SRE_AT_BEGINNING_LINE 1 *************** *** 69,70 **** --- 70,74 ---- #define SRE_FLAG_UNICODE 32 #define SRE_FLAG_VERBOSE 64 + #define SRE_INFO_PREFIX 1 + #define SRE_INFO_LITERAL 2 + #define SRE_INFO_CHARSET 4 From python-dev@python.org Sun Jul 2 13:00:09 2000 From: python-dev@python.org (Fredrik Lundh) Date: Sun, 2 Jul 2000 05:00:09 -0700 Subject: [Python-checkins] CVS: python/dist/src/Lib sre_compile.py,1.19,1.20 sre_constants.py,1.13,1.14 sre_parse.py,1.20,1.21 Message-ID: <200007021200.FAA11448@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Lib In directory slayer.i.sourceforge.net:/tmp/cvs-serv10442/Lib Modified Files: sre_compile.py sre_constants.py sre_parse.py Log Message: -- use charset bitmaps where appropriate. this gives a 5-10% speedup for some tests, including the python tokenizer. -- added support for an optional charset anchor to the engine (currently unused by the code generator). -- removed workaround for array module bug. Index: sre_compile.py =================================================================== RCS file: /cvsroot/python/python/dist/src/Lib/sre_compile.py,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -r1.19 -r1.20 *** sre_compile.py 2000/07/01 17:50:59 1.19 --- sre_compile.py 2000/07/02 12:00:06 1.20 *************** *** 17,21 **** # find an array type code that matches the engine's code size ! for WORDSIZE in "BHil": if len(array.array(WORDSIZE, [0]).tostring()) == _sre.getcodesize(): break --- 17,21 ---- # find an array type code that matches the engine's code size ! for WORDSIZE in "Hil": if len(array.array(WORDSIZE, [0]).tostring()) == _sre.getcodesize(): break *************** *** 23,26 **** --- 23,85 ---- raise RuntimeError, "cannot find a useable array type" + MAXCODE = 65535 + + def _charset(charset, fixup): + # internal: optimize character set + out = [] + charmap = [0]*256 + try: + for op, av in charset: + if op is NEGATE: + out.append((op, av)) + elif op is LITERAL: + charmap[fixup(av)] = 1 + elif op is RANGE: + for i in range(fixup(av[0]), fixup(av[1])+1): + charmap[i] = 1 + elif op is CATEGORY: + # FIXME: could append to charmap tail + return charset # cannot compress + except IndexError: + # unicode + return charset + # compress character map + i = p = n = 0 + runs = [] + for c in charmap: + if c: + if n == 0: + p = i + n = n + 1 + elif n: + runs.append((p, n)) + n = 0 + i = i + 1 + if n: + runs.append((p, n)) + if len(runs) <= 2: + # use literal/range + for p, n in runs: + if n == 1: + out.append((LITERAL, p)) + else: + out.append((RANGE, (p, p+n-1))) + if len(out) < len(charset): + return out + else: + # use bitmap + data = [] + m = 1; v = 0 + for c in charmap: + if c: + v = v + m + m = m << 1 + if m > MAXCODE: + data.append(v) + m = 1; v = 0 + out.append((CHARSET, data)) + return out + return charset + def _compile(code, pattern, flags): # internal: compile a (sub)pattern *************** *** 42,46 **** fixup = lambda x: x skip = len(code); emit(0) ! for op, av in av: emit(OPCODES[op]) if op is NEGATE: --- 101,105 ---- fixup = lambda x: x skip = len(code); emit(0) ! for op, av in _charset(av, fixup): emit(OPCODES[op]) if op is NEGATE: *************** *** 51,54 **** --- 110,115 ---- emit(fixup(av[0])) emit(fixup(av[1])) + elif op is CHARSET: + code.extend(av) elif op is CATEGORY: if flags & SRE_FLAG_LOCALE: *************** *** 156,161 **** def _compile_info(code, pattern, flags): # internal: compile an info block. in the current version, ! # this contains min/max pattern width and a literal prefix, ! # if any lo, hi = pattern.getwidth() if lo == 0: --- 217,222 ---- def _compile_info(code, pattern, flags): # internal: compile an info block. in the current version, ! # this contains min/max pattern width, and an optional literal ! # prefix or a character map lo, hi = pattern.getwidth() if lo == 0: *************** *** 163,166 **** --- 224,228 ---- # look for a literal prefix prefix = [] + charset = [] # not used if not (flags & SRE_FLAG_IGNORECASE): for op, av in pattern.data: *************** *** 175,198 **** # literal flag mask = 0 ! if len(prefix) == len(pattern.data): ! mask = 1 emit(mask) # pattern length ! emit(lo) ! if hi < 32768: emit(hi) else: emit(0) # add literal prefix - emit(len(prefix)) if prefix: ! code.extend(prefix) ! # generate overlap table ! table = [-1] + ([0]*len(prefix)) ! for i in range(len(prefix)): ! table[i+1] = table[i]+1 ! while table[i+1] > 0 and prefix[i] != prefix[table[i+1]-1]: ! table[i+1] = table[table[i+1]-1]+1 ! code.extend(table[1:]) # don't store first entry code[skip] = len(code) - skip --- 237,274 ---- # literal flag mask = 0 ! if prefix: ! mask = SRE_INFO_PREFIX ! if len(prefix) == len(pattern.data): ! mask = mask + SRE_INFO_LITERAL ! elif charset: ! mask = mask + SRE_INFO_CHARSET emit(mask) # pattern length ! if lo < MAXCODE: ! emit(lo) ! else: ! emit(MAXCODE) ! prefix = prefix[:MAXCODE] ! if hi < MAXCODE: emit(hi) else: emit(0) # add literal prefix if prefix: ! emit(len(prefix)) ! if prefix: ! code.extend(prefix) ! # generate overlap table ! table = [-1] + ([0]*len(prefix)) ! for i in range(len(prefix)): ! table[i+1] = table[i]+1 ! while table[i+1] > 0 and prefix[i] != prefix[table[i+1]-1]: ! table[i+1] = table[table[i+1]-1]+1 ! code.extend(table[1:]) # don't store first entry ! elif charset: ! for char in charset: ! emit(OPCODES[LITERAL]) ! emit(char) ! emit(OPCODES[FAILURE]) code[skip] = len(code) - skip Index: sre_constants.py =================================================================== RCS file: /cvsroot/python/python/dist/src/Lib/sre_constants.py,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -r1.13 -r1.14 *** sre_constants.py 2000/07/01 17:50:59 1.13 --- sre_constants.py 2000/07/02 12:00:06 1.14 *************** *** 29,32 **** --- 29,33 ---- CALL = "call" CATEGORY = "category" + CHARSET = "charset" GROUP = "group" GROUP_IGNORE = "group_ignore" *************** *** 88,91 **** --- 89,93 ---- CALL, CATEGORY, + CHARSET, GROUP, GROUP_IGNORE, IN, IN_IGNORE, *************** *** 167,177 **** # flags ! SRE_FLAG_TEMPLATE = 1 ! SRE_FLAG_IGNORECASE = 2 ! SRE_FLAG_LOCALE = 4 ! SRE_FLAG_MULTILINE = 8 ! SRE_FLAG_DOTALL = 16 ! SRE_FLAG_UNICODE = 32 ! SRE_FLAG_VERBOSE = 64 if __name__ == "__main__": --- 169,184 ---- # flags ! SRE_FLAG_TEMPLATE = 1 # template mode (disable backtracking) ! SRE_FLAG_IGNORECASE = 2 # case insensitive ! SRE_FLAG_LOCALE = 4 # honour system locale ! SRE_FLAG_MULTILINE = 8 # treat target as multiline string ! SRE_FLAG_DOTALL = 16 # treat target as a single string ! SRE_FLAG_UNICODE = 32 # use unicode locale ! SRE_FLAG_VERBOSE = 64 # ignore whitespace and comments ! ! # flags for INFO primitive ! SRE_INFO_PREFIX = 1 # has prefix ! SRE_INFO_LITERAL = 2 # entire pattern is literal (given by prefix) ! SRE_INFO_CHARSET = 4 # pattern starts with character from given set if __name__ == "__main__": *************** *** 202,205 **** --- 209,213 ---- dump(f, ATCODES, "SRE") dump(f, CHCODES, "SRE") + f.write("#define SRE_FLAG_TEMPLATE %d\n" % SRE_FLAG_TEMPLATE) f.write("#define SRE_FLAG_IGNORECASE %d\n" % SRE_FLAG_IGNORECASE) *************** *** 209,212 **** --- 217,225 ---- f.write("#define SRE_FLAG_UNICODE %d\n" % SRE_FLAG_UNICODE) f.write("#define SRE_FLAG_VERBOSE %d\n" % SRE_FLAG_VERBOSE) + + f.write("#define SRE_INFO_PREFIX %d\n" % SRE_INFO_PREFIX) + f.write("#define SRE_INFO_LITERAL %d\n" % SRE_INFO_LITERAL) + f.write("#define SRE_INFO_CHARSET %d\n" % SRE_INFO_CHARSET) + f.close() print "done" Index: sre_parse.py =================================================================== RCS file: /cvsroot/python/python/dist/src/Lib/sre_parse.py,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -r1.20 -r1.21 *** sre_parse.py 2000/07/01 23:49:14 1.20 --- sre_parse.py 2000/07/02 12:00:06 1.21 *************** *** 17,25 **** from sre_constants import * ! # FIXME: should be 65535, but the arraymodule is still broken ! MAXREPEAT = 32767 ! # FIXME: might change in 2.0 final. but for now, this seems ! # to be the best way to be compatible with 1.5.2 CHARMASK = 0xff --- 17,24 ---- from sre_constants import * ! MAXREPEAT = 65535 ! # FIXME: the following might change in 2.0 final. but for now, this ! # seems to be the best way to be compatible with 1.5.2 CHARMASK = 0xff From python-dev@python.org Sun Jul 2 14:52:24 2000 From: python-dev@python.org (Fred L. Drake) Date: Sun, 2 Jul 2000 06:52:24 -0700 Subject: [Python-checkins] CVS: python/dist/src/Lib/xml __init__.py,1.2,1.3 Message-ID: <200007021352.GAA28307@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Lib/xml In directory slayer.i.sourceforge.net:/tmp/cvs-serv28300 Modified Files: __init__.py Log Message: Typo (mine): Garsholm --> Garshol Noted by Rob Hooft . Index: __init__.py =================================================================== RCS file: /cvsroot/python/python/dist/src/Lib/xml/__init__.py,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** __init__.py 2000/07/01 04:58:46 1.2 --- __init__.py 2000/07/02 13:52:21 1.3 *************** *** 9,13 **** sax -- The Simple API for XML, developed by XML-Dev, led by David ! Megginson and ported to Python by Lars Marius Garsholm. This supports the SAX 2 API. """ --- 9,13 ---- sax -- The Simple API for XML, developed by XML-Dev, led by David ! Megginson and ported to Python by Lars Marius Garshol. This supports the SAX 2 API. """ From python-dev@python.org Sun Jul 2 18:33:30 2000 From: python-dev@python.org (Fredrik Lundh) Date: Sun, 2 Jul 2000 10:33:30 -0700 Subject: [Python-checkins] CVS: python/dist/src/Modules _sre.c,2.20,2.21 sre.h,2.10,2.11 sre_constants.h,2.6,2.7 Message-ID: <200007021733.KAA31666@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Modules In directory slayer.i.sourceforge.net:/tmp/cvs-serv31347/Modules Modified Files: _sre.c sre.h sre_constants.h Log Message: - actually enabled charset anchors in the engine (still not used by the code generator) - changed max repeat value in engine (to match earlier array fix) - added experimental "which part matched?" mechanism to sre; see http://hem.passagen.se/eff/2000_07_01_bot-archive.htm#416954 or python-dev for details. Index: _sre.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/_sre.c,v retrieving revision 2.20 retrieving revision 2.21 diff -C2 -r2.20 -r2.21 *** _sre.c 2000/07/02 12:00:07 2.20 --- _sre.c 2000/07/02 17:33:27 2.21 *************** *** 22,25 **** --- 22,26 ---- * 00-06-30 fl added fast search optimization (0.9.3) * 00-06-30 fl added assert (lookahead) primitives, etc (0.9.4) + * 00-07-02 fl added charset optimizations, etc (0.9.5) * * Copyright (c) 1997-2000 by Secret Labs AB. All rights reserved. *************** *** 32,36 **** #ifndef SRE_RECURSIVE ! char copyright[] = " SRE 0.9.4 Copyright (c) 1997-2000 by Secret Labs AB "; #include "Python.h" --- 33,37 ---- #ifndef SRE_RECURSIVE ! char copyright[] = " SRE 0.9.5 Copyright (c) 1997-2000 by Secret Labs AB "; #include "Python.h" *************** *** 588,591 **** --- 589,600 ---- break; + case SRE_OP_INDEX: + /* set index */ + /* args: */ + TRACE(("%8d: set index %d\n", PTR(ptr), pattern[0])); + state->index = pattern[0]; + pattern++; + break; + case SRE_OP_JUMP: case SRE_OP_INFO: *************** *** 811,815 **** points to the stack */ ! while (pattern[2] == 32767 || count < (int) pattern[2]) { state->stackbase = stack; i = SRE_MATCH(state, pattern + 3); --- 820,824 ---- points to the stack */ ! while (pattern[2] == 65535 || count < (int) pattern[2]) { state->stackbase = stack; i = SRE_MATCH(state, pattern + 3); *************** *** 981,988 **** --- 990,999 ---- if (flags & SRE_INFO_PREFIX) { + /* pattern starts with a known prefix */ prefix_len = pattern[5]; prefix = pattern + 6; overlap = prefix + prefix_len - 1; } else if (flags & SRE_INFO_CHARSET) + /* pattern starts with a character from a known set */ charset = pattern + 5; *************** *** 1043,1047 **** break; } - #if 0 } else if (charset) { /* pattern starts with a character from a known set */ --- 1054,1057 ---- *************** *** 1058,1062 **** break; } - #endif } else /* general case */ --- 1068,1071 ---- *************** *** 1205,1208 **** --- 1214,1219 ---- state->mark[i] = NULL; + state->index = -1; + state->stack = NULL; state->stackbase = 0; *************** *** 1287,1290 **** --- 1298,1303 ---- match->mark[j+2] = match->mark[j+3] = -1; /* undefined */ + match->index = state->index; + return (PyObject*) match; *************** *** 1887,1890 **** --- 1900,1912 ---- if (!strcmp(name, "endpos")) return Py_BuildValue("i", 0); /* FIXME */ + + if (!strcmp(name, "index")) { + /* experimental */ + if (self->index < 0) { + Py_INCREF(Py_None); + return Py_None; + } else + return Py_BuildValue("i", self->index); + } PyErr_SetString(PyExc_AttributeError, name); Index: sre.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/sre.h,v retrieving revision 2.10 retrieving revision 2.11 diff -C2 -r2.10 -r2.11 *** sre.h 2000/06/29 18:03:25 2.10 --- sre.h 2000/07/02 17:33:27 2.11 *************** *** 34,37 **** --- 34,38 ---- PyObject* string; /* link to the target string */ PatternObject* pattern; /* link to the regex (pattern) object */ + int index; /* last index marker seen by the engine (-1 if none) */ int groups; /* number of groups (start/end marks) */ int mark[2]; *************** *** 58,61 **** --- 59,63 ---- int charsize; /* registers */ + int index; int lastmark; void* mark[SRE_MARK_SIZE]; Index: sre_constants.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/sre_constants.h,v retrieving revision 2.6 retrieving revision 2.7 diff -C2 -r2.6 -r2.7 *** sre_constants.h 2000/07/02 12:00:07 2.6 --- sre_constants.h 2000/07/02 17:33:27 2.7 *************** *** 24,42 **** #define SRE_OP_GROUP 10 #define SRE_OP_GROUP_IGNORE 11 ! #define SRE_OP_IN 12 ! #define SRE_OP_IN_IGNORE 13 ! #define SRE_OP_INFO 14 ! #define SRE_OP_JUMP 15 ! #define SRE_OP_LITERAL 16 ! #define SRE_OP_LITERAL_IGNORE 17 ! #define SRE_OP_MARK 18 ! #define SRE_OP_MAX_REPEAT 19 ! #define SRE_OP_MAX_REPEAT_ONE 20 ! #define SRE_OP_MIN_REPEAT 21 ! #define SRE_OP_NOT_LITERAL 22 ! #define SRE_OP_NOT_LITERAL_IGNORE 23 ! #define SRE_OP_NEGATE 24 ! #define SRE_OP_RANGE 25 ! #define SRE_OP_REPEAT 26 #define SRE_AT_BEGINNING 0 #define SRE_AT_BEGINNING_LINE 1 --- 24,43 ---- #define SRE_OP_GROUP 10 #define SRE_OP_GROUP_IGNORE 11 ! #define SRE_OP_INDEX 12 ! #define SRE_OP_IN 13 ! #define SRE_OP_IN_IGNORE 14 ! #define SRE_OP_INFO 15 ! #define SRE_OP_JUMP 16 ! #define SRE_OP_LITERAL 17 ! #define SRE_OP_LITERAL_IGNORE 18 ! #define SRE_OP_MARK 19 ! #define SRE_OP_MAX_REPEAT 20 ! #define SRE_OP_MAX_REPEAT_ONE 21 ! #define SRE_OP_MIN_REPEAT 22 ! #define SRE_OP_NOT_LITERAL 23 ! #define SRE_OP_NOT_LITERAL_IGNORE 24 ! #define SRE_OP_NEGATE 25 ! #define SRE_OP_RANGE 26 ! #define SRE_OP_REPEAT 27 #define SRE_AT_BEGINNING 0 #define SRE_AT_BEGINNING_LINE 1 From python-dev@python.org Sun Jul 2 18:33:30 2000 From: python-dev@python.org (Fredrik Lundh) Date: Sun, 2 Jul 2000 10:33:30 -0700 Subject: [Python-checkins] CVS: python/dist/src/Lib sre.py,1.18,1.19 sre_compile.py,1.20,1.21 sre_constants.py,1.14,1.15 sre_parse.py,1.21,1.22 Message-ID: <200007021733.KAA31658@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Lib In directory slayer.i.sourceforge.net:/tmp/cvs-serv31347/Lib Modified Files: sre.py sre_compile.py sre_constants.py sre_parse.py Log Message: - actually enabled charset anchors in the engine (still not used by the code generator) - changed max repeat value in engine (to match earlier array fix) - added experimental "which part matched?" mechanism to sre; see http://hem.passagen.se/eff/2000_07_01_bot-archive.htm#416954 or python-dev for details. Index: sre.py =================================================================== RCS file: /cvsroot/python/python/dist/src/Lib/sre.py,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -r1.18 -r1.19 *** sre.py 2000/07/01 17:50:59 1.18 --- sre.py 2000/07/02 17:33:27 1.19 *************** *** 156,157 **** --- 156,188 ---- copy_reg.pickle(type(_compile("")), _pickle, _compile) + + # -------------------------------------------------------------------- + # experimental stuff (see python-dev discussions for details) + + class Scanner: + def __init__(self, lexicon): + self.lexicon = lexicon + p = [] + for phrase, action in lexicon: + p.append("(?:%s)(?P#%d)" % (phrase, len(p))) + self.scanner = sre.compile("|".join(p)) + def scan(self, string): + result = [] + append = result.append + match = self.scanner.match + i = 0 + while 1: + m = match(string, i) + if not m: + break + j = m.end() + if i == j: + break + action = self.lexicon[m.index][1] + if callable(action): + self.match = match + action = action(self, m.group()) + if action is not None: + append(action) + i = j + return result, string[i:] Index: sre_compile.py =================================================================== RCS file: /cvsroot/python/python/dist/src/Lib/sre_compile.py,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -r1.20 -r1.21 *** sre_compile.py 2000/07/02 12:00:06 1.20 --- sre_compile.py 2000/07/02 17:33:27 1.21 *************** *** 209,213 **** emit(OPCODES[op]) emit(av-1) ! elif op is MARK: emit(OPCODES[op]) emit(av) --- 209,213 ---- emit(OPCODES[op]) emit(av-1) ! elif op in (MARK, INDEX): emit(OPCODES[op]) emit(av) Index: sre_constants.py =================================================================== RCS file: /cvsroot/python/python/dist/src/Lib/sre_constants.py,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -r1.14 -r1.15 *** sre_constants.py 2000/07/02 12:00:06 1.14 --- sre_constants.py 2000/07/02 17:33:27 1.15 *************** *** 34,37 **** --- 34,38 ---- IN = "in" IN_IGNORE = "in_ignore" + INDEX = "index" INFO = "info" JUMP = "jump" *************** *** 91,94 **** --- 92,96 ---- CHARSET, GROUP, GROUP_IGNORE, + INDEX, IN, IN_IGNORE, INFO, Index: sre_parse.py =================================================================== RCS file: /cvsroot/python/python/dist/src/Lib/sre_parse.py,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -r1.21 -r1.22 *** sre_parse.py 2000/07/02 12:00:06 1.21 --- sre_parse.py 2000/07/02 17:33:27 1.22 *************** *** 452,455 **** --- 452,472 ---- raise error, "unknown group name" subpattern.append((GROUP, gid)) + elif source.match("#"): + index = "" + while 1: + char = source.get() + if char is None: + raise error, "unterminated index" + if char == ")": + break + index = index + char + try: + index = int(index) + if index < 0 or index > MAXREPEAT: + raise ValueError + except ValueError: + raise error, "illegal index" + subpattern.append((INDEX, index)) + continue else: char = source.get() From python-dev@python.org Sun Jul 2 21:17:11 2000 From: python-dev@python.org (Tim Peters) Date: Sun, 2 Jul 2000 13:17:11 -0700 Subject: [Python-checkins] CVS: python/dist/src/Modules mathmodule.c,2.47,2.48 Message-ID: <200007022017.NAA25954@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Modules In directory slayer.i.sourceforge.net:/tmp/cvs-serv25919/python/dist/src/modules Modified Files: mathmodule.c Log Message: Repair docs for math.frexp (they were wrong). Reported on c.l.py by Kirill Simonov. Index: mathmodule.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/mathmodule.c,v retrieving revision 2.47 retrieving revision 2.48 diff -C2 -r2.47 -r2.48 *** mathmodule.c 2000/06/30 23:58:05 2.47 --- mathmodule.c 2000/07/02 20:17:08 2.48 *************** *** 172,176 **** "frexp(x)\n\ \n\ ! Return the matissa and exponent for x. The mantissa is positive."; --- 172,178 ---- "frexp(x)\n\ \n\ ! Return the matissa and exponent of x, as pair (m, e).\n\ ! m is a float and e is an int, such that x = m * 2.**e.\n\ ! If x is 0, m and e are both 0. Else 0.5 <= abs(m) < 1.0."; From python-dev@python.org Sun Jul 2 23:25:42 2000 From: python-dev@python.org (Fredrik Lundh) Date: Sun, 2 Jul 2000 15:25:42 -0700 Subject: [Python-checkins] CVS: python/dist/src/Lib sre_compile.py,1.21,1.22 sre_parse.py,1.22,1.23 Message-ID: <200007022225.PAA13755@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Lib In directory slayer.i.sourceforge.net:/tmp/cvs-serv13488/Lib Modified Files: sre_compile.py sre_parse.py Log Message: - experimental: added two new attributes to the match object: "lastgroup" is the name of the last matched capturing group, "lastindex" is the index of the same group. if no group was matched, both attributes are set to None. the (?P#) feature will be removed in the next relase. Index: sre_compile.py =================================================================== RCS file: /cvsroot/python/python/dist/src/Lib/sre_compile.py,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -r1.21 -r1.22 *** sre_compile.py 2000/07/02 17:33:27 1.21 --- sre_compile.py 2000/07/02 22:25:39 1.22 *************** *** 299,305 **** "sorry, but this version only supports 100 named groups" return _sre.compile( pattern, flags, array.array(WORDSIZE, code).tostring(), ! p.pattern.groups-1, p.pattern.groupdict ) --- 299,311 ---- "sorry, but this version only supports 100 named groups" + # map in either direction + groupindex = p.pattern.groupdict + indexgroup = [None] * p.pattern.groups + for k, i in groupindex.items(): + indexgroup[i] = k + return _sre.compile( pattern, flags, array.array(WORDSIZE, code).tostring(), ! p.pattern.groups-1, groupindex, indexgroup ) Index: sre_parse.py =================================================================== RCS file: /cvsroot/python/python/dist/src/Lib/sre_parse.py,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -r1.22 -r1.23 *** sre_parse.py 2000/07/02 17:33:27 1.22 --- sre_parse.py 2000/07/02 22:25:39 1.23 *************** *** 516,519 **** --- 516,521 ---- while 1: p = _parse(source, state) + if group is not None: + p.append((INDEX, group)) if source.match(")"): if b: From python-dev@python.org Sun Jul 2 23:25:42 2000 From: python-dev@python.org (Fredrik Lundh) Date: Sun, 2 Jul 2000 15:25:42 -0700 Subject: [Python-checkins] CVS: python/dist/src/Modules _sre.c,2.21,2.22 sre.h,2.11,2.12 Message-ID: <200007022225.PAA13760@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Modules In directory slayer.i.sourceforge.net:/tmp/cvs-serv13488/Modules Modified Files: _sre.c sre.h Log Message: - experimental: added two new attributes to the match object: "lastgroup" is the name of the last matched capturing group, "lastindex" is the index of the same group. if no group was matched, both attributes are set to None. the (?P#) feature will be removed in the next relase. Index: _sre.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/_sre.c,v retrieving revision 2.21 retrieving revision 2.22 diff -C2 -r2.21 -r2.22 *** _sre.c 2000/07/02 17:33:27 2.21 --- _sre.c 2000/07/02 22:25:39 2.22 *************** *** 1105,1111 **** int groups = 0; PyObject* groupindex = NULL; ! if (!PyArg_ParseTuple(args, "OiO!|iO", &pattern, &flags, &PyString_Type, &code, ! &groups, &groupindex)) return NULL; --- 1105,1112 ---- int groups = 0; PyObject* groupindex = NULL; ! PyObject* indexgroup = NULL; ! if (!PyArg_ParseTuple(args, "OiO!|iOO", &pattern, &flags, &PyString_Type, &code, ! &groups, &groupindex, &indexgroup)) return NULL; *************** *** 1128,1131 **** --- 1129,1135 ---- self->groupindex = groupindex; + Py_XINCREF(indexgroup); + self->indexgroup = indexgroup; + return (PyObject*) self; } *************** *** 1884,1888 **** PyErr_Clear(); ! /* attributes */ if (!strcmp(name, "string")) { Py_INCREF(self->string); --- 1888,1913 ---- PyErr_Clear(); ! if (!strcmp(name, "lastindex")) { ! /* experimental */ ! if (self->index >= 0) ! return Py_BuildValue("i", self->index); ! Py_INCREF(Py_None); ! return Py_None; ! } ! ! if (!strcmp(name, "lastgroup")) { ! /* experimental */ ! if (self->pattern->indexgroup) { ! PyObject* result = PySequence_GetItem( ! self->pattern->indexgroup, self->index ! ); ! if (result) ! return result; ! PyErr_Clear(); ! } ! Py_INCREF(Py_None); ! return Py_None; ! } ! if (!strcmp(name, "string")) { Py_INCREF(self->string); *************** *** 1900,1912 **** if (!strcmp(name, "endpos")) return Py_BuildValue("i", 0); /* FIXME */ - - if (!strcmp(name, "index")) { - /* experimental */ - if (self->index < 0) { - Py_INCREF(Py_None); - return Py_None; - } else - return Py_BuildValue("i", self->index); - } PyErr_SetString(PyExc_AttributeError, name); --- 1925,1928 ---- Index: sre.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/sre.h,v retrieving revision 2.11 retrieving revision 2.12 diff -C2 -r2.11 -r2.12 *** sre.h 2000/07/02 17:33:27 2.11 --- sre.h 2000/07/02 22:25:39 2.12 *************** *** 22,25 **** --- 22,26 ---- int groups; PyObject* groupindex; + PyObject* indexgroup; /* compatibility */ PyObject* pattern; /* pattern source (or None) */ From python-dev@python.org Mon Jul 3 00:00:00 2000 From: python-dev@python.org (Fredrik Lundh) Date: Sun, 2 Jul 2000 16:00:00 -0700 Subject: [Python-checkins] CVS: python/dist/src/Lib sre.py,1.19,1.20 Message-ID: <200007022300.QAA15786@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Lib In directory slayer.i.sourceforge.net:/tmp/cvs-serv15713/Lib Modified Files: sre.py Log Message: - changed sre.Scanner to use lastindex instead of index. Index: sre.py =================================================================== RCS file: /cvsroot/python/python/dist/src/Lib/sre.py,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -r1.19 -r1.20 *** sre.py 2000/07/02 17:33:27 1.19 --- sre.py 2000/07/02 22:59:57 1.20 *************** *** 166,170 **** for phrase, action in lexicon: p.append("(?:%s)(?P#%d)" % (phrase, len(p))) ! self.scanner = sre.compile("|".join(p)) def scan(self, string): result = [] --- 166,170 ---- for phrase, action in lexicon: p.append("(?:%s)(?P#%d)" % (phrase, len(p))) ! self.scanner = _compile("|".join(p)) def scan(self, string): result = [] *************** *** 179,183 **** if i == j: break ! action = self.lexicon[m.index][1] if callable(action): self.match = match --- 179,183 ---- if i == j: break ! action = self.lexicon[m.lastindex][1] if callable(action): self.match = match From python-dev@python.org Mon Jul 3 00:18:46 2000 From: python-dev@python.org (Tim Peters) Date: Sun, 2 Jul 2000 16:18:46 -0700 Subject: [Python-checkins] CVS: python/dist/src/PC/example_nt example.dsp,1.2,1.3 example.dsw,1.1,1.2 readme.txt,1.6,1.7 example.mak,1.3,NONE Message-ID: <200007022318.QAA23342@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/PC/example_nt In directory slayer.i.sourceforge.net:/tmp/cvs-serv23043/python/dist/src/PC/example_nt Modified Files: example.dsp example.dsw readme.txt Removed Files: example.mak Log Message: The example_nt directory was old enough to vote. Frank Stajano pointed out some of the problems he had following the instructions, and I stumbled into the others: MSVC has changed in several respects, Python has changed the directories into which it builds its own Windows outputs, and we grew the unusual scheme of appending "_d" to the names of debug-mode output files. This should all work with VC6 + CVS Python now. Some other Windows geek please confirm! And the less you know, the better <0.5 wink>. Explanations and examples for versions of MSVC before 6, and versions of Python before 2.0b1, have been removed, because they're too different and so confuse life. This last step I OK'ed with Guido first (indeed, 'twas his idea!). Index: example.dsp =================================================================== RCS file: /cvsroot/python/python/dist/src/PC/example_nt/example.dsp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** example.dsp 1997/12/11 04:06:04 1.2 --- example.dsp 2000/07/02 23:18:42 1.3 *************** *** 1,4 **** # Microsoft Developer Studio Project File - Name="example" - Package Owner=<4> ! # Microsoft Developer Studio Generated Build File, Format Version 5.00 # ** DO NOT EDIT ** --- 1,4 ---- # Microsoft Developer Studio Project File - Name="example" - Package Owner=<4> ! # Microsoft Developer Studio Generated Build File, Format Version 6.00 # ** DO NOT EDIT ** *************** *** 18,27 **** !MESSAGE Possible choices for configuration are: !MESSAGE ! !MESSAGE "example - Win32 Release" (based on\ ! "Win32 (x86) Dynamic-Link Library") !MESSAGE "example - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") !MESSAGE # Begin Project # PROP Scc_ProjName "" # PROP Scc_LocalPath "" --- 18,27 ---- !MESSAGE Possible choices for configuration are: !MESSAGE ! !MESSAGE "example - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") !MESSAGE "example - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") !MESSAGE # Begin Project + # PROP AllowPerConfigDependencies 0 # PROP Scc_ProjName "" # PROP Scc_LocalPath "" *************** *** 71,75 **** # PROP Target_Dir "" # ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /c ! # ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\Include" /I "..\PC" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c # ADD BASE MTL /nologo /D "_DEBUG" /win32 # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 --- 71,75 ---- # PROP Target_Dir "" # ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /c ! # ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "..\Include" /I "..\PC" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c # ADD BASE MTL /nologo /D "_DEBUG" /win32 # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 Index: example.dsw =================================================================== RCS file: /cvsroot/python/python/dist/src/PC/example_nt/example.dsw,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** example.dsw 1997/12/11 03:43:29 1.1 --- example.dsw 2000/07/02 23:18:43 1.2 *************** *** 1,8 **** ! Microsoft Developer Studio Workspace File, Format Version 5.00 # WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! ############################################################################### ! Project: "example"=".\example.dsp" - Package Owner=<4> Package=<5> --- 1,8 ---- ! Microsoft Developer Studio Workspace File, Format Version 6.00 # WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! ############################################################################### ! Project: "example"=.\example.dsp - Package Owner=<4> Package=<5> Index: readme.txt =================================================================== RCS file: /cvsroot/python/python/dist/src/PC/example_nt/readme.txt,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** readme.txt 1997/12/11 04:01:25 1.6 --- readme.txt 2000/07/02 23:18:43 1.7 *************** *** 2,98 **** ======================================= ! This directory contains everything you need to build a Python ! extension module using Microsoft VC++ ("Developer Studio") version 4.x ! or 5.x, except for the Python distribution. It has been tested with ! VC++ 4.2 on Python 1.5a3, and with VC++ 5.0 on Python 1.5b2. ! ! The "example_nt" subdirectory should be an immediate subdirectory of ! the Python source directory -- a direct sibling of Include and PC, in ! particular, which are referenced as "..\Include" and "..\PC". In ! other words, it should *not* be used "as is". Copy or move it up one ! level or you will regret it! (This is done to keep all the PC ! specific files inside the PC subdirectory of the distribution, where ! they belong.) ! ! When using the VC++ 4.x project (makefile), it is assumed that the ! build results of Python are in the directory ..\vc40. In particular, ! the python15.lib file is referred to as "..\vc40\python15.lib". If ! you have problems with this file, the best thing to do is to delete it ! from the project and add it again. ! ! When using the VC++ 5.x project (workspace), the build results of ! Python are assumed to be in ..\PCbuild. Since the provided VC++ 5.x ! project and workspace files have a different structure (to support ! separate "release" and "debug" builds), the example project and ! workspace match this structure. ! ! In order to use the example project from VC++ 4.x, use the "File->Open ! Workspace..." dialog (*not* the "File->Open..." dialog!). Change the ! pattern to "*.mak" and select the file "example.mak". Now choose ! "File->Save All" and the othe project files will be created. ! From VC+ 5.x, do the same except don't change the pattern, and select ! the example.dsw workspace file. In order to check that everything is set up right, try building: - choose "Build->Build example.dll". This creates all intermediate and - result files in a subdirectory which is called either Debug or Release - depending on which configuration you have chosen. - - Once the build has succeeded, test the resulting DLL. In a DOS - command window, chdir to that directory. You should now be able to - repeat the following session "(C>" is the DOS prompt, ">>>" is the - Python prompt): - - C> ..\..\vc40\python.exe - >>> import example - >>> example.foo() - Hello, world - >>> - - When using VC++ 5.x, issue these commands: - - C> ..\..\PCbuild\Release\python.exe - >>> import example - >>> example.foo() - Hello, world - >>> - ! Creating the project ! -------------------- ! There are two ways to use this example to create a project for your ! own module. First, choose a name ("spam" is always a winner :-) and ! create a directory for it. Copy your C sources into it. Note that ! the module source file name does not necessarily have to match the ! module name, but the "init" function name should match the module name ! -- i.e. you can only import a module "spam" if its init function is ! called "initspam()", and it should call Py_InitModule with the string ! "spam" as its first argument. By convention, it lives in a file called "spam.c" or "spammodule.c". The output file should be called ! "spam.dll" or "spam.pyd" (the latter is supported to avoid confusion ! with a system library "spam.dll" to which your module could be a ! Python interface). Now your options are: ! 1) Clone example.mak. Start by copying example_nt\example.mak to ! spam\spam.mak. Do a global edit on spam.mak, replacing all ! occurrences of the string "example" by "spam", and all occurrences of ! "DEP_CPP_EXAMP" by something like "DEP_CPP_SPAM". You can now use ! this makefile to create a project file by opening it as a workspace ! (you have to change the pattern to *.mak first). (When using VC++ ! 5.x, you can clone example.dsp and example.dsw in a similar way.) 2) Create a brand new project; instructions are below. ! In both cases, copy example_nt\example.def to spam\spam.def, and edit ! spam\spam.def so its second line contains the string "initspam". If ! you created a new project yourself, add the file spam.def to the ! project now. (This is an annoying little file with only two lines. ! An alternative approach is to forget about the .def file, and add the ! option "/export:initspam" somewhere to the Link settings, by manually ! editing the "Project Options" box). You are now all set to build your extension, unless it requires other --- 2,114 ---- ======================================= ! This directory contains everything needed (except for the Python ! distribution!) to build a Python extension module using Microsoft VC++ ! ("Developer Studio") version 6. It has been tested with VC++ 6.0 on Python ! 2.0b1. You can also use earlier versions of VC to build Python extensions, ! but the sample VC project file (example.dsw in this directory) is in VC 6 ! format. ! COPY THIS DIRECTORY! ! -------------------- ! This "example_nt" directory is a subdirectory of the PC directory, in order ! to keep all the PC-specific files under the same directory. However, the ! example_nt directory can't actually be used from this location. You first ! need to copy or move it up one level, so that example_nt is a direct ! sibling of the PC\ and Include\ directories. Do all your work from within ! this new location -- sorry, but you'll be sorry if you don't. ! ! OPEN THE PROJECT ! ---------------- ! From VC 6.x, use the ! File -> Open Workspace... ! dialog (*not* the "File -> Open..." dialog!). Navigate to and select the ! file "example.dsw". Click Open. + BUILD THE EXAMPLE DLL + --------------------- In order to check that everything is set up right, try building: ! 1. Select a configuration. This step is optional. Do ! Build -> Select Active Configuration... ! and select either "example - Win32 Release" or "example - Win32 Debug". ! If you skip this step, you'll use the Debug configuration by default. ! ! 2. Build the DLL. Do ! Build -> Build example_d.dll ! in Debug mode, or ! Build -> Build example.dll ! in Release mode. ! This creates all intermediate and result files in a subdirectory which ! is called either Debug or Release, depending on which configuration you ! picked in the preceding step. ! ! TESTING THE DEBUG-MODE DLL ! -------------------------- ! Once the Debug build has succeeded, bring up a DOS box, and cd to ! example_nt\Debug. You should now be able to repeat the following session ! ("C>" is the DOS prompt, ">>>" is the Python prompt) (note that various ! debug output from Python may not match this screen dump exactly): ! ! C>..\..\PCbuild\python_d ! Adding parser accelerators ... ! Done. ! Python 2.0b1 (#0, Jul 1 2000, 11:29:37) [MSC 32 bit (Intel)] on win32 ! Copyright 1991-1995 Stichting Mathematisch Centrum, Amsterdam ! Copyright 1995-2000 Corporation for National Research Initiatives (CNRI) ! >>> import example ! [8830 refs] ! >>> example.foo() ! Hello, world ! [8830 refs] ! >>> ! TESTING THE RELEASE-MODE DLL ! ---------------------------- ! Once the Release build has succeeded, bring up a DOS box, and cd to ! example_nt\Release. You should now be able to repeat the following session ! ("C>" is the DOS prompt, ">>>" is the Python prompt): ! ! C>..\..\PCbuild\python ! Python 2.0b1 (#0, Jul 1 2000, 11:28:35) [MSC 32 bit (Intel)] on win32 ! Copyright 1991-1995 Stichting Mathematisch Centrum, Amsterdam ! Copyright 1995-2000 Corporation for National Research Initiatives (CNRI) ! >>> import example ! >>> example.foo() ! Hello, world ! >>> ! ! Congratulations! You've successfully built your first Python extension ! module. ! ! CREATING YOUR OWN PROJECT ! ------------------------- ! Choose a name ("spam" is always a winner :-) and create a directory for ! it. Copy your C sources into it. Note that the module source file name ! does not necessarily have to match the module name, but the "init" function ! name should match the module name -- i.e. you can only import a module ! "spam" if its init function is called "initspam()", and it should call ! Py_InitModule with the string "spam" as its first argument (use the minimal ! example.c in this directory as a guide). By convention, it lives in a file called "spam.c" or "spammodule.c". The output file should be called ! "spam.dll" or "spam.pyd" (the latter is supported to avoid confusion with a ! system library "spam.dll" to which your module could be a Python interface) ! in Release mode, or spam_d.dll or spam_d.pyd in Debug mode. Now your options are: ! 1) Copy example.dsw and example.dsp, rename them to spam.*, and edit them ! by hand. + or + 2) Create a brand new project; instructions are below. ! In either case, copy example_nt\example.def to spam\spam.def, and edit the ! new spam.def so its second line contains the string "initspam". If you ! created a new project yourself, add the file spam.def to the project now. ! (This is an annoying little file with only two lines. An alternative ! approach is to forget about the .def file, and add the option ! "/export:initspam" somewhere to the Link settings, by manually editing the ! "Project Options" box). You are now all set to build your extension, unless it requires other *************** *** 101,148 **** ! Creating a brand new project ---------------------------- ! ! If you don't feel comfortable with editing Makefiles or project and ! workspace files, you can create a brand new project from scratch ! easily. ! ! Use the "File->New..." dialog to create a new Project Workspace. ! Select Dynamic-Link Library, enter the name ("spam"), and make sure ! the "Location" is set to the spam directory you have created (which ! should be a direct subdirectory of the Python build tree). Select ! Win32 as the platform (in my version, this is the only choice). Click ! "Create". ! ! Now open the "Build->Settings..." dialog. (Impressive, isn't it? :-) ! You only need to change a few settings. Make sure you have both the ! Debug and the Release configuration selected when you make the first ! change. Select the "C/C++" tab. Choose the "Preprocessor" category ! in the popup menu at the top. Type the following text in the entry ! box labeled "Addditional include directories:" ! ! ..\Include,..\PC ! ! Next, for both configurations, select the "Link" tab, choose the ! "General" category, and add "python15.lib" to the end of the ! "Object/library modules" box. ! ! Then, separately for the Release and Debug configurations, choose the ! "Input" category in the Link tab, and enter "..\PCbuild\Release" or ! "..\PCbuild\Debug", respectively, in the "Additional library path" ! box. ! ! Finally, you must change the run-time library. This must also be done ! separately for the Release and Debug configurations. Choose the "Code ! Generation" category in the C/C++ tab. In the box labeled "Use ! run-time library", choose "Multithreaded DLL" for the Release ! configuration, and "Debug Multithreaded DLL" for the Debug ! configuration. That's all. ! ! You should now first create the file spam.def as instructed in the ! previous section. ! ! Now chose the "Insert->Files into Project..." dialog. Set the pattern ! to *.* and select both spam.c and spam.def and click OK. (Inserting ! them one by one is fine too.) ! --- 117,165 ---- ! CREATING A BRAND NEW PROJECT ---------------------------- ! Use the ! File -> New... -> Projects ! dialog to create a new Project Workspace. Select "Win32 Dynamic-Link ! Library", enter the name ("spam"), and make sure the "Location" is set to ! the spam directory you have created (which should be a direct subdirectory ! of the Python build tree, a sibling of Inclue and PC). Select Win32 as the ! platform (in my version, this is the only choice). Make sure the "Create ! new workspace" radio button is selected. Click OK. ! ! Now open the ! Project -> Settings... ! dialog. (Impressive, isn't it? :-) You only need to change a few ! settings. Make sure "All Configurations" is selected from the "Settings ! for:" dropdown list. Select the "C/C++" tab. Choose the "Preprocessor" ! category in the popup menu at the top. Type the following text in the ! entry box labeled "Addditional include directories:" ! ! ..\Include,..\PC ! ! Then, choose the "Input" category in the Link tab, and enter ! ..\PCbuild ! in the "Additional library path:" box. ! ! Now you need to add some mode-specific settings: ! ! Select "Win32 Release" in the "Settings for:" dropdown list. Click the ! "Link" tab, choose the "Input" Category, and append "python20.lib" to the ! list in the "Object/library modules:" box. ! ! Select "Win32 Debug" in the "Settings for:" dropdown list, and append ! "python20_d.lib" to the list in the "Object/library modules:" box. Then ! click on the C/C++ tab, select "Code Generation" from the "Category:" ! dropdown list, and select "Debug Multithreaded DLL" from the "Use run-time ! library:" dropdown list. ! ! Select "Win32 Release" again from the "Settings for:" dropdown list. ! Select "Multithreaded DLL" from the "Use run-time library:" dropdown list. ! ! That's all . ! ! You should now create the file spam.def as instructed in the previous ! section. Then chose the ! Insert -> Files into Project... ! dialog. Set the pattern to *.* and select both spam.c and spam.def and ! click OK. (Inserting them one by one is fine too.) From python-dev@python.org Mon Jul 3 00:21:51 2000 From: python-dev@python.org (Tim Peters) Date: Sun, 2 Jul 2000 16:21:51 -0700 Subject: [Python-checkins] CVS: python/dist/src/PC/example_nt example.dsp,1.3,1.4 Message-ID: <200007022321.QAA23494@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/PC/example_nt In directory slayer.i.sourceforge.net:/tmp/cvs-serv23461/python/dist/src/PC/example_nt Modified Files: example.dsp Log Message: Checked in a wrong version. Index: example.dsp =================================================================== RCS file: /cvsroot/python/python/dist/src/PC/example_nt/example.dsp,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** example.dsp 2000/07/02 23:18:42 1.3 --- example.dsp 2000/07/02 23:21:49 1.4 *************** *** 54,58 **** LINK32=link.exe # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 ! # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib python15.lib /nologo /subsystem:windows /dll /machine:I386 /libpath:"..\PCbuild\Release" /export:initexample # SUBTRACT LINK32 /pdb:none --- 54,58 ---- LINK32=link.exe # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 ! # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib python20.lib /nologo /subsystem:windows /dll /machine:I386 /libpath:"..\PCbuild" /export:initexample # SUBTRACT LINK32 /pdb:none *************** *** 81,85 **** LINK32=link.exe # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 ! # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib python15.lib /nologo /subsystem:windows /dll /debug /machine:I386 /libpath:"..\PCbuild\Debug" /export:initexample # SUBTRACT LINK32 /pdb:none --- 81,85 ---- LINK32=link.exe # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 ! # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib python20_d.lib /nologo /subsystem:windows /dll /debug /machine:I386 /out:".\Debug/example_d.dll" /libpath:"..\PCbuild" /export:initexample # SUBTRACT LINK32 /pdb:none From python-dev@python.org Mon Jul 3 07:38:19 2000 From: python-dev@python.org (Fred L. Drake) Date: Sun, 2 Jul 2000 23:38:19 -0700 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libmath.tex,1.21,1.22 Message-ID: <200007030638.XAA22944@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Doc/lib In directory slayer.i.sourceforge.net:/tmp/cvs-serv22936/lib Modified Files: libmath.tex Log Message: Tim-blessed documentation for math.frexp(). Index: libmath.tex =================================================================== RCS file: /cvsroot/python/python/dist/src/Doc/lib/libmath.tex,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -r1.21 -r1.22 *** libmath.tex 2000/05/18 05:07:38 1.21 --- libmath.tex 2000/07/03 06:38:17 1.22 *************** *** 65,74 **** \begin{funcdesc}{frexp}{x} ! Convert a floating-point number to fractional and integral ! components. If \var{x} is zero, returns \code{(0.0, 0)}, otherwise ! returns \code{(\var{frac}, \var{exp})} such that \code{\var{frac} * ! 2**\var{exp}} will equal \var{x}. \var{exp} will be an integer, and ! the absolute value of \var{frac} will be in the range [0.5, 1.0) ! (\var{frac} will share the sign of \var{x}). \end{funcdesc} --- 65,74 ---- \begin{funcdesc}{frexp}{x} ! % Blessed by Tim. ! Return the mantissa and exponent of \var{x} as the pair ! \code{(\var{m}, \var{e})}. \var{m} is a float and \var{e} is an ! integer such that \code{\var{x} == \var{m} * 2**\var{e}}. ! If \var{x} is zero, returns \code{(0.0, 0)}, otherwise ! \code{0.5 <= abs(\var{m}) < 1}. \end{funcdesc} From python-dev@python.org Mon Jul 3 08:23:16 2000 From: python-dev@python.org (Fred L. Drake) Date: Mon, 3 Jul 2000 00:23:16 -0700 Subject: [Python-checkins] CVS: python/dist/src/Lib string.py,1.49,1.50 Message-ID: <200007030723.AAA31664@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Lib In directory slayer.i.sourceforge.net:/tmp/cvs-serv31657 Modified Files: string.py Log Message: Martin von Löwis : This patch delegates more string functions to string object methods, uses the varargs delegation syntax, and stops using stringold. Closes SourceForge patch #100712. Index: string.py =================================================================== RCS file: /cvsroot/python/python/dist/src/Lib/string.py,v retrieving revision 1.49 retrieving revision 1.50 diff -C2 -r1.49 -r1.50 *** string.py 2000/04/05 20:11:18 1.49 --- string.py 2000/07/03 07:23:13 1.50 *************** *** 126,132 **** joinfields = join - # for a little bit of speed - _apply = apply - # Find substring, raise exception if not found def index(s, *args): --- 126,129 ---- *************** *** 136,140 **** """ ! return _apply(s.index, args) # Find last substring, raise exception if not found --- 133,137 ---- """ ! return s.index(*args) # Find last substring, raise exception if not found *************** *** 145,149 **** """ ! return _apply(s.rindex, args) # Count non-overlapping occurrences of substring --- 142,146 ---- """ ! return s.rindex(*args) # Count non-overlapping occurrences of substring *************** *** 156,160 **** """ ! return _apply(s.count, args) # Find substring, return -1 if not found --- 153,157 ---- """ ! return s.count(*args) # Find substring, return -1 if not found *************** *** 169,173 **** """ ! return _apply(s.find, args) # Find last substring, return -1 if not found --- 166,170 ---- """ ! return s.find(*args) # Find last substring, return -1 if not found *************** *** 182,186 **** """ ! return _apply(s.rfind, args) # for a bit of speed --- 179,183 ---- """ ! return s.rfind(*args) # for a bit of speed *************** *** 240,246 **** """ ! n = width - len(s) ! if n <= 0: return s ! return s + ' '*n # Right-justify a string --- 237,241 ---- """ ! return s.ljust(width) # Right-justify a string *************** *** 253,259 **** """ ! n = width - len(s) ! if n <= 0: return s ! return ' '*n + s # Center a string --- 248,252 ---- """ ! return s.rjust(width) # Center a string *************** *** 266,276 **** """ ! n = width - len(s) ! if n <= 0: return s ! half = n/2 ! if n%2 and width%2: ! # This ensures that center(center(s, i), j) = center(s, j) ! half = half+1 ! return ' '*half + s + ' '*(n-half) # Zero-fill a number, e.g., (12, 3) --> '012' and (-3, 3) --> '-03' --- 259,263 ---- """ ! return s.center(width) # Zero-fill a number, e.g., (12, 3) --> '012' and (-3, 3) --> '-03' *************** *** 303,315 **** """ ! res = line = '' ! for c in s: ! if c == '\t': ! c = ' '*(tabsize - len(line) % tabsize) ! line = line + c ! if c == '\n': ! res = res + line ! line = '' ! return res + line # Character translation through look-up table. --- 290,294 ---- """ ! return s.expandtabs(tabsize) # Character translation through look-up table. *************** *** 380,393 **** return s.replace(old, new, maxsplit) - - # XXX: transitional - # - # If string objects do not have methods, then we need to use the old string.py - # library, which uses strop for many more things than just the few outlined - # below. - try: - ''.upper - except AttributeError: - from stringold import * # Try importing optional built-in module "strop" -- if it exists, --- 359,362 ---- From python-dev@python.org Mon Jul 3 09:18:49 2000 From: python-dev@python.org (Fred L. Drake) Date: Mon, 3 Jul 2000 01:18:49 -0700 Subject: [Python-checkins] CVS: python/dist/src/Lib filecmp.py,1.5,1.6 Message-ID: <200007030818.BAA08449@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Lib In directory slayer.i.sourceforge.net:/tmp/cvs-serv8435 Modified Files: filecmp.py Log Message: cmpfiles(): Added shallow and use_statcache parameters, with same meanings and defaults as for filecmp.cmp(). Updated docstring accordingly, and formatted it more like others in the standard library. Index: filecmp.py =================================================================== RCS file: /cvsroot/python/python/dist/src/Lib/filecmp.py,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** filecmp.py 2000/06/29 14:13:28 1.5 --- filecmp.py 2000/07/03 08:18:47 1.6 *************** *** 17,21 **** BUFSIZE=8*1024 ! def cmp(f1, f2, shallow=1,use_statcache=0): """Compare two files. --- 17,21 ---- BUFSIZE=8*1024 ! def cmp(f1, f2, shallow=1, use_statcache=0): """Compare two files. *************** *** 268,291 **** ! # Compare common files in two directories. ! # Return: ! # - files that compare equal ! # - files that compare different ! # - funny cases (can't stat etc.) ! # ! def cmpfiles(a, b, common): """Compare common files in two directories. ! cmpfiles(a,b,common) ! A and B are directory names ! COMMON is a list of file names ! returns a tuple of three lists: files that compare equal files that are different ! filenames that aren't regular files.""" res = ([], [], []) for x in common: ! res[_cmp(os.path.join(a, x), os.path.join(b, x))].append(x) return res --- 268,290 ---- ! def cmpfiles(a, b, common, shallow=1, use_statcache=0): """Compare common files in two directories. + + a, b -- directory names + common -- list of file names found in both directories + shallow -- if true, do comparison based solely on stat() information + use_statcache -- if true, use statcache.stat() instead of os.stat() ! Returns a tuple of three lists: files that compare equal files that are different ! filenames that aren't regular files. + """ res = ([], [], []) for x in common: ! ax = os.path.join(a, x) ! bx = os.path.join(b, x) ! res[_cmp(ax, bx, shallow, use_statcache)].append(x) return res From python-dev@python.org Mon Jul 3 09:24:52 2000 From: python-dev@python.org (Fred L. Drake) Date: Mon, 3 Jul 2000 01:24:52 -0700 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libfilecmp.tex,1.1,1.2 Message-ID: <200007030824.BAA09132@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Doc/lib In directory slayer.i.sourceforge.net:/tmp/cvs-serv9125/lib Modified Files: libfilecmp.tex Log Message: Moshe Zadka : Substantial updates to reflect Moshe's Gordon's enhancements to the module. Additional changes from Fred to reflect his changes to the module as well. Index: libfilecmp.tex =================================================================== RCS file: /cvsroot/python/python/dist/src/Doc/lib/libfilecmp.tex,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** libfilecmp.tex 1999/10/29 17:23:15 1.1 --- libfilecmp.tex 2000/07/03 08:24:49 1.2 *************** *** 1,4 **** \section{\module{filecmp} --- ! File Comparisons} \declaremodule{standard}{filecmp} --- 1,4 ---- \section{\module{filecmp} --- ! File and Directory Comparisons} \declaremodule{standard}{filecmp} *************** *** 6,22 **** \modulesynopsis{Compare files efficiently.} - The \module{filecmp} module defines a function to compare files, taking all - sort of short-cuts to make it a highly efficient operation. The \module{filecmp} module defines the following function: \begin{funcdesc}{cmp}{f1, f2\optional{, shallow\optional{, use_statcache}}} ! Compare the files named \var{f1} and \var{f2}, returning \code{1} ! if they seem equal, \code{0} otherwise. Unless \var{shallow} is given and is false, files with identical ! \function{os.stat()} signatures are taken to be equal. If \var{use_statcache} is given and is true, ! \function{statcache.stat()} will be called rather then \var{os.stat()}. Files that were compared using this function will not be compared again --- 6,24 ---- \modulesynopsis{Compare files efficiently.} + The \module{filecmp} module defines functions to compare files and directories, + with various optional time/correctness trade-offs. + The \module{filecmp} module defines the following function: \begin{funcdesc}{cmp}{f1, f2\optional{, shallow\optional{, use_statcache}}} ! Compare the files named \var{f1} and \var{f2}, returning \code{1} if ! they seem equal, \code{0} otherwise. Unless \var{shallow} is given and is false, files with identical ! \function{os.stat()} signatures are taken to be equal. If \var{use_statcache} is given and is true, ! \function{statcache.stat()} will be called rather then ! \function{os.stat()}; the default is to use \function{os.stat()}. Files that were compared using this function will not be compared again *************** *** 26,33 **** cache. ! Note that no external programs are called from this module giving it portability and efficiency. \end{funcdesc} Example: --- 28,49 ---- cache. ! Note that no external programs are called from this function, giving it portability and efficiency. \end{funcdesc} + \begin{funcdesc}{cmpfiles}{dir1, dir2, common\optional{, + shallow\optional{, use_statcache}}} + Returns three lists of file names: \var{match}, \var{mismatch}, + \var{errors}. \var{match} contains the list of files match in both + directories, \var{mismatch} includes the names of those that don't, + and \var{errros} lists the names of files which could not be + compared. Files may be listed in \var{errors} because the user may + lack permission to read them or many other reasons, but always that + the comparison could not be done for some reason. + + The \var{shallow} and \var{use_statcache} parameters have the same + meanings and default values as for \function{filecmp.cmp()}. + \end{funcdesc} + Example: *************** *** 39,40 **** --- 55,138 ---- 0 \end{verbatim} + + + \subsection{The \protect\class{dircmp} class \label{dircmp-objects}} + + \begin{classdesc}{dircmp}{a, b\optional{, ignore\optional{, hide}}} + Construct a new directory comparison object, to compare the + directories \var{a} and \var{b}. \var{ignore} is a list of names to + ignore, and defaults to \code{['RCS', 'CVS', 'tags']}. \var{hide} is a + list of names to hid, and defaults to \code{[os.curdir, os.pardir]}. + \end{classdesc} + + \begin{methoddesc}[dircmp]{report}{} + Print (to \code{sys.stdout}) a comparison between \var{a} and \var{b}. + \end{methoddesc} + + \begin{methoddesc}[dircmp]{report_partial_closure}{} + Print a comparison between \var{a} and \var{b} and common immediate + subdirctories. + \end{methoddesc} + + \begin{methoddesc}[dircmp]{report_full_closure}{} + Print a comparison between \var{a} and \var{b} and common + subdirctories (recursively). + \end{methoddesc} + + \begin{memberdesc}[dircmp]{left_list} + Files and subdirectories in \var{a}, filtered by \var{hide} and + \var{ignore}. + \end{memberdesc} + + \begin{memberdesc}[dircmp]{right_list} + Files and subdirectories in \var{b}, filtered by \var{hide} and + \var{ignore}. + \end{memberdesc} + + \begin{memberdesc}[dircmp]{common} + Files and subdirectories in both \var{a} and \var{b}. + \end{memberdesc} + + \begin{memberdesc}[dircmp]{left_only} + Files and subdirectories only in \var{a}. + \end{memberdesc} + + \begin{memberdesc}[dircmp]{right_only} + Files and subdirectories only in \var{b}. + \end{memberdesc} + + \begin{memberdesc}[dircmp]{common_dirs} + Subdirectories in both \var{a} and \var{b}. + \end{memberdesc} + + \begin{memberdesc}[dircmp]{common_files} + Files in both \var{a} and \var{b} + \end{memberdesc} + + \begin{memberdesc}[dircmp]{common_funny} + Names in both \var{a} and \var{b}, such that the type differs between + the directories, or names for which \function{os.stat()} reports an + error. + \end{memberdesc} + + \begin{memberdesc}[dircmp]{same_files} + Files which are identical in both \var{a} and \var{b}. + \end{memberdesc} + + \begin{memberdesc}[dircmp]{diff_files} + Files which are in both \var{a} and \var{b}, whose contents differ. + \end{memberdesc} + + \begin{memberdesc}[dircmp]{funny_files} + Files which are in both \var{a} and \var{b}, but could not be + compared. + \end{memberdesc} + + \begin{memberdesc}[dircmp]{subdirs} + A dictionary mapping names in \member{common_dirs} to + \class{dircmp} objects. + \end{memberdesc} + + Note that via \method{__getattr__()} hooks, all attributes are + computed lazilly, so there is no speed penalty if only those + attributes which are lightweight to compute are used. From python-dev@python.org Mon Jul 3 10:56:26 2000 From: python-dev@python.org (Fred L. Drake) Date: Mon, 3 Jul 2000 02:56:26 -0700 Subject: [Python-checkins] CVS: python/dist/src/Lib shlex.py,1.7,1.8 Message-ID: <200007030956.CAA25001@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Lib In directory slayer.i.sourceforge.net:/tmp/cvs-serv24985/Lib Modified Files: shlex.py Log Message: Eric S. Raymond : This patch implements relative-path semantics for the "source" facility resembling those of cpp(1), documents the change, and improves the shlex test main to make it easier to test this feature. Along the way, it fixes a name error in the existing docs. [Additional documentation markup changes for consistency by FLD.] Index: shlex.py =================================================================== RCS file: /cvsroot/python/python/dist/src/Lib/shlex.py,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -r1.7 -r1.8 *** shlex.py 2000/05/01 20:14:12 1.7 --- shlex.py 2000/07/03 09:56:23 1.8 *************** *** 4,9 **** --- 4,11 ---- # Input stacking and error message cleanup added by ESR, March 2000 + import os.path import sys + class shlex: "A lexical analyzer class for simple shell-like syntaxes." *************** *** 27,31 **** self.source = None if self.debug: ! print 'shlex: reading from %s, line %d' % (self.instream,self.lineno) def push_token(self, tok): --- 29,34 ---- self.source = None if self.debug: ! print 'shlex: reading from %s, line %d' \ ! % (self.instream, self.lineno) def push_token(self, tok): *************** *** 48,52 **** while raw == self.source: (newfile, newstream) = self.sourcehook(self.read_token()) ! self.filestack = [(self.infile,self.instream,self.lineno)] + self.filestack self.infile = newfile self.instream = newstream --- 51,55 ---- while raw == self.source: (newfile, newstream) = self.sourcehook(self.read_token()) ! self.filestack.insert(0, (self.infile, self.instream, self.lineno)) self.infile = newfile self.instream = newstream *************** *** 64,68 **** self.filestack = self.filestack[1:] if self.debug: ! print 'shlex: popping to %s, line %d' % (self.instream, self.lineno) self.state = ' ' raw = self.get_token() --- 67,72 ---- self.filestack = self.filestack[1:] if self.debug: ! print 'shlex: popping to %s, line %d' \ ! % (self.instream, self.lineno) self.state = ' ' raw = self.get_token() *************** *** 83,87 **** self.lineno = self.lineno + 1 if self.debug >= 3: ! print "shlex: in state " + repr(self.state) + " I see character: " + repr(nextchar) if self.state == None: self.token = ''; # past end of file --- 87,92 ---- self.lineno = self.lineno + 1 if self.debug >= 3: ! print "shlex: in state", repr(self.state), \ ! "I see character:", repr(nextchar) if self.state == None: self.token = ''; # past end of file *************** *** 157,160 **** --- 162,168 ---- if newfile[0] == '"': newfile = newfile[1:-1] + # This implements cpp-like semantics for relative-path inclusion. + if type(self.infile) == type("") and not os.path.isabs(newfile): + newfile = os.path.join(os.path.dirname(self.infile), newfile) return (newfile, open(newfile, "r")) *************** *** 167,177 **** return "\"%s\", line %d: " % (infile, lineno) - if __name__ == '__main__': ! lexer = shlex() while 1: tt = lexer.get_token() ! print "Token: " + repr(tt) ! if not tt: break - --- 175,189 ---- return "\"%s\", line %d: " % (infile, lineno) ! if __name__ == '__main__': ! if len(sys.argv) == 1: ! lexer = shlex() ! else: ! file = sys.argv[1] ! lexer = shlex(open(file), file) while 1: tt = lexer.get_token() ! if tt: ! print "Token: " + repr(tt) ! else: break From python-dev@python.org Mon Jul 3 10:56:25 2000 From: python-dev@python.org (Fred L. Drake) Date: Mon, 3 Jul 2000 02:56:25 -0700 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libshlex.tex,1.7,1.8 Message-ID: <200007030956.CAA24997@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Doc/lib In directory slayer.i.sourceforge.net:/tmp/cvs-serv24985/Doc/lib Modified Files: libshlex.tex Log Message: Eric S. Raymond : This patch implements relative-path semantics for the "source" facility resembling those of cpp(1), documents the change, and improves the shlex test main to make it easier to test this feature. Along the way, it fixes a name error in the existing docs. [Additional documentation markup changes for consistency by FLD.] Index: libshlex.tex =================================================================== RCS file: /cvsroot/python/python/dist/src/Doc/lib/libshlex.tex,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -r1.7 -r1.8 *** libshlex.tex 2000/05/01 20:14:47 1.7 --- libshlex.tex 2000/07/03 09:56:23 1.8 *************** *** 14,18 **** Python applications. ! \begin{classdesc}{shlex}{\optional{stream}, \optional{file}} A \class{shlex} instance or subclass instance is a lexical analyzer object. The initialization argument, if present, specifies where to --- 14,18 ---- Python applications. ! \begin{classdesc}{shlex}{\optional{stream\optional{, file}}} A \class{shlex} instance or subclass instance is a lexical analyzer object. The initialization argument, if present, specifies where to *************** *** 36,39 **** --- 36,40 ---- A \class{shlex} instance has the following methods: + \begin{methoddesc}{get_token}{} Return a token. If tokens have been stacked using *************** *** 53,85 **** \end{methoddesc} ! \begin{methoddesc}{openhook}{filename} ! When shlex detects a source request (see \member{source} below) ! this method is given the following token as argument, and expected to ! return a tuple consisting of a filename and an opened stream object. ! ! Normally, this method just strips any quotes off the argument and ! treats it as a filename, calling \code{open()} on it. It is exposed so that ! you can use it to implement directory search paths, addition of ! file extensions, and other namespace hacks. There is no corresponding `close' hook, but a shlex instance will call ! the \code{close()} method of the sourced input stream when it returns EOF. \end{methoddesc} ! \begin{methoddesc}{error_leader}{\optional{file}, \optional{line}} This method generates an error message leader in the format of a ! Unix C compiler error label; the format is '"\%s", line \%d: ', ! where the \%s is replaced with the name of the current source file and ! the \%d with the current input line number (the optional arguments ! can be used to override these). ! ! This convenience is provided to encourage shlex users to generate ! error messages in the standard, parseable format understood by Emacs ! and other Unix tools. \end{methoddesc} Instances of \class{shlex} subclasses have some public instance ! variables which either control lexical analysis or can be used ! for debugging: \begin{memberdesc}{commenters} --- 54,96 ---- \end{methoddesc} ! \begin{methoddesc}{sourcehook}{filename} ! When \class{shlex} detects a source request (see ! \member{source} below) this method is given the following token as ! argument, and expected to return a tuple consisting of a filename and ! an open file-like object. ! ! Normally, this method first strips any quotes off the argument. If ! the result is an absolute pathname, or there was no previous source ! request in effect, or the previous source was a stream ! (e.g. \code{sys.stdin}), the result is left alone. Otherwise, if the ! result is a relative pathname, the directory part of the name of the ! file immediately before it on the source inclusion stack is prepended ! (this behavior is like the way the C preprocessor handles ! \code{\#include "file.h"}). The result of the manipulations is treated ! as a filename, and returned as the first component of the tuple, with ! \function{open()} called on it to yield the second component. + This hook is exposed so that you can use it to implement directory + search paths, addition of file extensions, and other namespace hacks. There is no corresponding `close' hook, but a shlex instance will call ! the \method{close()} method of the sourced input stream when it ! returns \EOF. \end{methoddesc} ! \begin{methoddesc}{error_leader}{\optional{file\optional{, line}}} This method generates an error message leader in the format of a ! \UNIX{} C compiler error label; the format is '"\%s", line \%d: ', ! where the \samp{\%s} is replaced with the name of the current source ! file and the \samp{\%d} with the current input line number (the ! optional arguments can be used to override these). ! ! This convenience is provided to encourage \module{shlex} users to ! generate error messages in the standard, parseable format understood ! by Emacs and other \UNIX{} tools. \end{methoddesc} Instances of \class{shlex} subclasses have some public instance ! variables which either control lexical analysis or can be used for ! debugging: \begin{memberdesc}{commenters} *************** *** 91,95 **** \begin{memberdesc}{wordchars} The string of characters that will accumulate into multi-character ! tokens. By default, includes all \ASCII{} alphanumerics and underscore. \end{memberdesc} --- 102,106 ---- \begin{memberdesc}{wordchars} The string of characters that will accumulate into multi-character ! tokens. By default, includes all \ASCII{} alphanumerics and underscore. \end{memberdesc} *************** *** 115,136 **** \begin{memberdesc}{instream} ! The input stream from which this shlex instance is reading characters. \end{memberdesc} \begin{memberdesc}{source} ! This member is None by default. If you assign a string to it, that ! string will be recognized as a lexical-level inclusion request similar ! to the `source' keyword in various shells. That is, the immediately ! following token will opened as a filename and input taken from that ! stream until EOF, at which point the \code{close()} method of that ! stream will be called and the input source will again become the ! original input stream. Source requests may be stacked any number of ! levels deep. \end{memberdesc} \begin{memberdesc}{debug} ! If this member is numeric and 1 or more, a shlex instance will print ! verbose progress output on its behavior. If you need to use this, ! you can read the module source code to learn the details. \end{memberdesc} --- 126,149 ---- \begin{memberdesc}{instream} ! The input stream from which this \class{shlex} instance is reading ! characters. \end{memberdesc} \begin{memberdesc}{source} ! This member is \code{None} by default. If you assign a string to it, ! that string will be recognized as a lexical-level inclusion request ! similar to the \samp{source} keyword in various shells. That is, the ! immediately following token will opened as a filename and input taken ! from that stream until \EOF, at which point the \method{close()} ! method of that stream will be called and the input source will again ! become the original input stream. Source requests may be stacked any ! number of levels deep. \end{memberdesc} \begin{memberdesc}{debug} ! If this member is numeric and \code{1} or more, a \class{shlex} ! instance will print verbose progress output on its behavior. If you ! need to use this, you can read the module source code to learn the ! details. \end{memberdesc} From python-dev@python.org Mon Jul 3 10:57:55 2000 From: python-dev@python.org (M.-A. Lemburg) Date: Mon, 3 Jul 2000 02:57:55 -0700 Subject: [Python-checkins] CVS: python/dist/src/Objects object.c,2.80,2.81 Message-ID: <200007030957.CAA25291@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Objects In directory slayer.i.sourceforge.net:/tmp/cvs-serv25267/Objects Modified Files: object.c Log Message: If auto-conversion fails, the Unicode codecs will return NULL. This is now checked and the error passed on to the caller. Index: object.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Objects/object.c,v retrieving revision 2.80 retrieving revision 2.81 diff -C2 -r2.80 -r2.81 *** object.c 2000/07/01 14:31:09 2.80 --- object.c 2000/07/03 09:57:53 2.81 *************** *** 269,276 **** PyObject* str; str = PyUnicode_AsEncodedString(res, NULL, NULL); ! if (str) { ! Py_DECREF(res); res = str; ! } } if (!PyString_Check(res)) { --- 269,277 ---- PyObject* str; str = PyUnicode_AsEncodedString(res, NULL, NULL); ! Py_DECREF(res); ! if (str) res = str; ! else ! return NULL; } if (!PyString_Check(res)) { *************** *** 311,322 **** if (res == NULL) return NULL; ! if (PyUnicode_Check(res)) { ! PyObject* str; ! str = PyUnicode_AsEncodedString(res, NULL, NULL); ! if (str) { ! Py_DECREF(res); ! res = str; ! } ! } if (!PyString_Check(res)) { PyErr_Format(PyExc_TypeError, --- 312,324 ---- if (res == NULL) return NULL; ! if (PyUnicode_Check(res)) { ! PyObject* str; ! str = PyUnicode_AsEncodedString(res, NULL, NULL); ! Py_DECREF(res); ! if (str) ! res = str; ! else ! return NULL; ! } if (!PyString_Check(res)) { PyErr_Format(PyExc_TypeError, From python-dev@python.org Mon Jul 3 11:52:16 2000 From: python-dev@python.org (M.-A. Lemburg) Date: Mon, 3 Jul 2000 03:52:16 -0700 Subject: [Python-checkins] CVS: python/dist/src/Include unicodeobject.h,2.10,2.11 Message-ID: <200007031052.DAA08285@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Include In directory slayer.i.sourceforge.net:/tmp/cvs-serv8276/Include Modified Files: unicodeobject.h Log Message: Added new Py_UNICODE_ISALPHA() and Py_UNICODE_ISALNUM() macros which are true for alphabetic and alphanumeric characters resp. The macros are currently implemented using the existing is* tables but will have to be updated to meet the Unicode standard definitions (add tables for non-cased letters and letter modifiers). Index: unicodeobject.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/unicodeobject.h,v retrieving revision 2.10 retrieving revision 2.11 diff -C2 -r2.10 -r2.11 *** unicodeobject.h 2000/06/18 22:22:27 2.10 --- unicodeobject.h 2000/07/03 10:52:13 2.11 *************** *** 161,164 **** --- 161,175 ---- #endif + #define Py_UNICODE_ISALPHA(ch) \ + (Py_UNICODE_ISLOWER(ch) || \ + Py_UNICODE_ISUPPER(ch) || \ + Py_UNICODE_ISTITLE(ch)) + + #define Py_UNICODE_ISALNUM(ch) \ + (Py_UNICODE_ISALPHA(ch) || \ + Py_UNICODE_ISDECIMAL(ch) || \ + Py_UNICODE_ISDIGIT(ch) || \ + Py_UNICODE_ISNUMERIC(ch)) + #define Py_UNICODE_COPY(target, source, length)\ (memcpy((target), (source), (length)*sizeof(Py_UNICODE))) From python-dev@python.org Mon Jul 3 14:38:12 2000 From: python-dev@python.org (Fred L. Drake) Date: Mon, 3 Jul 2000 06:38:12 -0700 Subject: [Python-checkins] CVS: python/dist/src/Doc/api api.tex,1.71,1.72 Message-ID: <200007031338.GAA12404@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Doc/api In directory slayer.i.sourceforge.net:/tmp/cvs-serv12392/api Modified Files: api.tex Log Message: Marc-Andre Lemburg : Update the API docs for the new macros Py_UNICODE_ISALPHA() and Py_UNICODE_ISALNUM(). Index: api.tex =================================================================== RCS file: /cvsroot/python/python/dist/src/Doc/api/api.tex,v retrieving revision 1.71 retrieving revision 1.72 diff -C2 -r1.71 -r1.72 *** api.tex 2000/06/30 15:52:39 1.71 --- api.tex 2000/07/03 13:38:10 1.72 *************** *** 1994,1998 **** \begin{cfuncdesc}{int}{Py_UNICODE_ISUPPER}{Py_UNICODE ch} ! Returns 1/0 depending on whether \var{ch} is a uppercase character. \end{cfuncdesc} --- 1994,1998 ---- \begin{cfuncdesc}{int}{Py_UNICODE_ISUPPER}{Py_UNICODE ch} ! Returns 1/0 depending on whether \var{ch} is an uppercase character. \end{cfuncdesc} *************** *** 2015,2018 **** --- 2015,2026 ---- \begin{cfuncdesc}{int}{Py_UNICODE_ISNUMERIC}{Py_UNICODE ch} Returns 1/0 depending on whether \var{ch} is a numeric character. + \end{cfuncdesc} + + \begin{cfuncdesc}{int}{Py_UNICODE_ISALPHA}{Py_UNICODE ch} + Returns 1/0 depending on whether \var{ch} is an alphabetic character. + \end{cfuncdesc} + + \begin{cfuncdesc}{int}{Py_UNICODE_ISALNUM}{Py_UNICODE ch} + Returns 1/0 depending on whether \var{ch} is an alphanumeric character. \end{cfuncdesc} From python-dev@python.org Mon Jul 3 14:44:28 2000 From: python-dev@python.org (Fred L. Drake) Date: Mon, 3 Jul 2000 06:44:28 -0700 Subject: [Python-checkins] CVS: python/dist/src/Lib pty.py,1.4,1.5 Message-ID: <200007031344.GAA12804@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Lib In directory slayer.i.sourceforge.net:/tmp/cvs-serv12796 Modified Files: pty.py Log Message: Fix bug #379, reported by Phillip Porch : openpty(): Fallback code when os.openpty() does not exist attempted to call _slave_open(), which should have been slave_open(). This bug only showed on platforms which do not provide a working openpty() in the C library. Index: pty.py =================================================================== RCS file: /cvsroot/python/python/dist/src/Lib/pty.py,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** pty.py 2000/06/28 16:40:38 1.4 --- pty.py 2000/07/03 13:44:25 1.5 *************** *** 26,30 **** pass master_fd, slave_name = _open_terminal() ! slave_fd = _slave_open(slave_name) return master_fd, slave_fd --- 26,30 ---- pass master_fd, slave_name = _open_terminal() ! slave_fd = slave_open(slave_name) return master_fd, slave_fd From python-dev@python.org Mon Jul 3 15:32:07 2000 From: python-dev@python.org (Fred L. Drake) Date: Mon, 3 Jul 2000 07:32:07 -0700 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libsgmllib.tex,1.18,1.19 Message-ID: <200007031432.HAA22037@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Doc/lib In directory slayer.i.sourceforge.net:/tmp/cvs-serv22029/lib Modified Files: libsgmllib.tex Log Message: get_starttag_text(): Document this method. Index: libsgmllib.tex =================================================================== RCS file: /cvsroot/python/python/dist/src/Doc/lib/libsgmllib.tex,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -r1.18 -r1.19 *** libsgmllib.tex 1999/04/22 18:25:32 1.18 --- libsgmllib.tex 2000/07/03 14:32:04 1.19 *************** *** 71,74 **** --- 71,82 ---- \end{methoddesc} + \begin{methoddesc}{get_starttag_text}{} + Return the text of the most recently opened start tag. This should + not normally be needed for structured processing, but may be useful in + dealing with HTML ``as deployed'' or for re-generating input with + minimal changes (whitespace between attributes can be preserved, + etc.). + \end{methoddesc} + \begin{methoddesc}{handle_starttag}{tag, method, attributes} This method is called to handle start tags for which either a From python-dev@python.org Mon Jul 3 17:37:45 2000 From: python-dev@python.org (Fred L. Drake) Date: Mon, 3 Jul 2000 09:37:45 -0700 Subject: [Python-checkins] CVS: python/dist/src/Lib/test test_minidom.py,1.1,1.2 Message-ID: <200007031637.JAA10323@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Lib/test In directory slayer.i.sourceforge.net:/tmp/cvs-serv10312/test Modified Files: test_minidom.py Log Message: Compute the name of the test file so that it can be found both when this test is run as a script and when imported via the regression test framework. Problem reported by Phillip Porch . Index: test_minidom.py =================================================================== RCS file: /cvsroot/python/python/dist/src/Lib/test/test_minidom.py,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** test_minidom.py 2000/07/01 14:50:21 1.1 --- test_minidom.py 2000/07/03 16:37:42 1.2 *************** *** 1,6 **** from xml.dom.minidom import parse, Node, Document, parseString ! import traceback, sys ! tstfile="test.xml" Node._debug=1 --- 1,16 ---- + # test for xml.dom.minidom + from xml.dom.minidom import parse, Node, Document, parseString ! ! import os.path ! import sys ! import traceback ! if __name__ == "__main__": ! base = sys.argv[0] ! else: ! base = __file__ ! tstfile = os.path.join(os.path.dirname(base), "test.xml") ! del base Node._debug=1 From python-dev@python.org Mon Jul 3 19:07:45 2000 From: python-dev@python.org (Fred L. Drake) Date: Mon, 3 Jul 2000 11:07:45 -0700 Subject: [Python-checkins] CVS: python/dist/src/Modules parsermodule.c,2.41,2.42 Message-ID: <200007031807.LAA28166@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Modules In directory slayer.i.sourceforge.net:/tmp/cvs-serv28159 Modified Files: parsermodule.c Log Message: Andrew Kuchling : Typo in string literal: execpt --> except Index: parsermodule.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/parsermodule.c,v retrieving revision 2.41 retrieving revision 2.42 diff -C2 -r2.41 -r2.42 *** parsermodule.c 2000/06/30 23:58:05 2.41 --- parsermodule.c 2000/07/03 18:07:43 2.42 *************** *** 1652,1656 **** && validate_suite(CHILD(tree, nch - 1))); else { ! const char* name = "execpt"; char buffer[60]; if (TYPE(CHILD(tree, nch - 3)) != except_clause) --- 1652,1656 ---- && validate_suite(CHILD(tree, nch - 1))); else { ! const char* name = "except"; char buffer[60]; if (TYPE(CHILD(tree, nch - 3)) != except_clause) From python-dev@python.org Mon Jul 3 19:11:59 2000 From: python-dev@python.org (Fred L. Drake) Date: Mon, 3 Jul 2000 11:11:59 -0700 Subject: [Python-checkins] CVS: python/dist/src/Modules mathmodule.c,2.48,2.49 Message-ID: <200007031811.LAA28478@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Modules In directory slayer.i.sourceforge.net:/tmp/cvs-serv28471 Modified Files: mathmodule.c Log Message: ANSI-fication, remove Py_PROTO, etc. Revise math_1(), math_2(), stub-generating macros, and function tables to use PyArg_ParseTuple() and properly provide the function name for error message generation. Fix pow() docstring for MPW 3.1; had said "power" instead of "pow". Index: mathmodule.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/mathmodule.c,v retrieving revision 2.48 retrieving revision 2.49 diff -C2 -r2.48 -r2.49 *** mathmodule.c 2000/07/02 20:17:08 2.48 --- mathmodule.c 2000/07/03 18:11:56 2.49 *************** *** 17,24 **** #ifndef _MSC_VER #ifndef __STDC__ ! extern double fmod Py_PROTO((double, double)); ! extern double frexp Py_PROTO((double, int *)); ! extern double ldexp Py_PROTO((double, int)); ! extern double modf Py_PROTO((double, double *)); #endif /* __STDC__ */ #endif /* _MSC_VER */ --- 17,24 ---- #ifndef _MSC_VER #ifndef __STDC__ ! extern double fmod (double, double); ! extern double frexp (double, int *); ! extern double ldexp (double, int); ! extern double modf (double, double *); #endif /* __STDC__ */ #endif /* _MSC_VER */ *************** *** 52,61 **** static PyObject * ! math_1(args, func) ! PyObject *args; ! double (*func) Py_FPROTO((double)); { double x; ! if (! PyArg_Parse(args, "d", &x)) return NULL; errno = 0; --- 52,59 ---- static PyObject * ! math_1(PyObject *args, double (*func) (double), char *argsfmt) { double x; ! if (! PyArg_ParseTuple(args, argsfmt, &x)) return NULL; errno = 0; *************** *** 71,80 **** static PyObject * ! math_2(args, func) ! PyObject *args; ! double (*func) Py_FPROTO((double, double)); { double x, y; ! if (! PyArg_Parse(args, "(dd)", &x, &y)) return NULL; errno = 0; --- 69,76 ---- static PyObject * ! math_2(PyObject *args, double (*func) (double, double), char *argsfmt) { double x, y; ! if (! PyArg_ParseTuple(args, argsfmt, &x, &y)) return NULL; errno = 0; *************** *** 89,163 **** } ! #define FUNC1(stubname, func, docstring_name, docstring) \ ! static PyObject * stubname(self, args) PyObject *self, *args; { \ ! return math_1(args, func); \ }\ ! static char docstring_name [] = docstring; ! #define FUNC2(stubname, func, docstring_name, docstring) \ ! static PyObject * stubname(self, args) PyObject *self, *args; { \ ! return math_2(args, func); \ }\ ! static char docstring_name [] = docstring; ! FUNC1(math_acos, acos, math_acos_doc, "acos(x)\n\nReturn the arc cosine of x.") ! FUNC1(math_asin, asin, math_asin_doc, "asin(x)\n\nReturn the arc sine of x.") ! FUNC1(math_atan, atan, math_atan_doc, "atan(x)\n\nReturn the arc tangent of x.") ! FUNC2(math_atan2, atan2, math_atan2_doc, "atan2(y, x)\n\nReturn atan(y/x).") ! FUNC1(math_ceil, ceil, math_ceil_doc, "ceil(x)\n\nReturn the ceiling of x as a real.") ! FUNC1(math_cos, cos, math_cos_doc, "cos(x)\n\nReturn the cosine of x.") ! FUNC1(math_cosh, cosh, math_cosh_doc, "cosh(x)\n\nReturn the hyperbolic cosine of x.") ! FUNC1(math_exp, exp, math_exp_doc, "exp(x)\n\nReturn e raised to the power of x.") ! FUNC1(math_fabs, fabs, math_fabs_doc, "fabs(x)\n\nReturn the absolute value of the real x.") ! FUNC1(math_floor, floor, math_floor_doc, "floor(x)\n\nReturn the floor of x as a real.") ! FUNC2(math_fmod, fmod, math_fmod_doc, "fmod(x,y)\n\nReturn x % y.") ! FUNC2(math_hypot, hypot, math_hypot_doc, "hypot(x,y)\n\nReturn the Euclidean distance, sqrt(x*x + y*y).") ! FUNC1(math_log, log, math_log_doc, "log(x)\n\nReturn the natural logarithm of x.") ! FUNC1(math_log10, log10, math_log10_doc, "log10(x)\n\nReturn the base-10 logarithm of x.") #ifdef MPW_3_1 /* This hack is needed for MPW 3.1 but not for 3.2 ... */ ! FUNC2(math_pow, power, math_pow_doc, ! "power(x,y)\n\nReturn x**y.") #else ! FUNC2(math_pow, pow, math_pow_doc, "pow(x,y)\n\nReturn x**y.") #endif #ifdef HAVE_RINT ! FUNC1(math_rint, rint, math_rint_doc, "rint(x)\n\nReturn the integer nearest to x as a real.") #endif ! FUNC1(math_sin, sin, math_sin_doc, "sin(x)\n\nReturn the sine of x.") ! FUNC1(math_sinh, sinh, math_sinh_doc, "sinh(x)\n\nReturn the hyperbolic sine of x.") ! FUNC1(math_sqrt, sqrt, math_sqrt_doc, "sqrt(x)\n\nReturn the square root of x.") ! FUNC1(math_tan, tan, math_tan_doc, "tan(x)\n\nReturn the tangent of x.") ! FUNC1(math_tanh, tanh, math_tanh_doc, "tanh(x)\n\nReturn the hyperbolic tangent of x.") static PyObject * ! math_frexp(self, args) ! PyObject *self; ! PyObject *args; { double x; int i; ! if (! PyArg_Parse(args, "d", &x)) return NULL; errno = 0; --- 85,157 ---- } ! #define FUNC1(funcname, func, docstring) \ ! static PyObject * math_##funcname(PyObject *self, PyObject *args) { \ ! return math_1(args, func, "d:" #funcname); \ }\ ! static char math_##funcname##_doc [] = docstring; ! #define FUNC2(funcname, func, docstring) \ ! static PyObject * math_##funcname(PyObject *self, PyObject *args) { \ ! return math_2(args, func, "dd:" #funcname); \ }\ ! static char math_##funcname##_doc [] = docstring; ! FUNC1(acos, acos, "acos(x)\n\nReturn the arc cosine of x.") ! FUNC1(asin, asin, "asin(x)\n\nReturn the arc sine of x.") ! FUNC1(atan, atan, "atan(x)\n\nReturn the arc tangent of x.") ! FUNC2(atan2, atan2, "atan2(y, x)\n\nReturn atan(y/x).") ! FUNC1(ceil, ceil, "ceil(x)\n\nReturn the ceiling of x as a real.") ! FUNC1(cos, cos, "cos(x)\n\nReturn the cosine of x.") ! FUNC1(cosh, cosh, "cosh(x)\n\nReturn the hyperbolic cosine of x.") ! FUNC1(exp, exp, "exp(x)\n\nReturn e raised to the power of x.") ! FUNC1(fabs, fabs, "fabs(x)\n\nReturn the absolute value of the real x.") ! FUNC1(floor, floor, "floor(x)\n\nReturn the floor of x as a real.") ! FUNC2(fmod, fmod, "fmod(x,y)\n\nReturn x % y.") ! FUNC2(hypot, hypot, "hypot(x,y)\n\nReturn the Euclidean distance, sqrt(x*x + y*y).") ! FUNC1(log, log, "log(x)\n\nReturn the natural logarithm of x.") ! FUNC1(log10, log10, "log10(x)\n\nReturn the base-10 logarithm of x.") #ifdef MPW_3_1 /* This hack is needed for MPW 3.1 but not for 3.2 ... */ ! FUNC2(pow, power, ! "pow(x,y)\n\nReturn x**y.") #else ! FUNC2(pow, pow, "pow(x,y)\n\nReturn x**y.") #endif #ifdef HAVE_RINT ! FUNC1(rint, rint, "rint(x)\n\nReturn the integer nearest to x as a real.") #endif ! FUNC1(sin, sin, "sin(x)\n\nReturn the sine of x.") ! FUNC1(sinh, sinh, "sinh(x)\n\nReturn the hyperbolic sine of x.") ! FUNC1(sqrt, sqrt, "sqrt(x)\n\nReturn the square root of x.") ! FUNC1(tan, tan, "tan(x)\n\nReturn the tangent of x.") ! FUNC1(tanh, tanh, "tanh(x)\n\nReturn the hyperbolic tangent of x.") static PyObject * ! math_frexp(PyObject *self, PyObject *args) { double x; int i; ! if (! PyArg_ParseTuple(args, "d:frexp", &x)) return NULL; errno = 0; *************** *** 178,188 **** static PyObject * ! math_ldexp(self, args) ! PyObject *self; ! PyObject *args; { double x; int exp; ! if (! PyArg_Parse(args, "(di)", &x, &exp)) return NULL; errno = 0; --- 172,180 ---- static PyObject * ! math_ldexp(PyObject *self, PyObject *args) { double x; int exp; ! if (! PyArg_ParseTuple(args, "di:ldexp", &x, &exp)) return NULL; errno = 0; *************** *** 204,221 **** static PyObject * ! math_modf(self, args) ! PyObject *self; ! PyObject *args; { double x, y; ! if (! PyArg_Parse(args, "d", &x)) return NULL; errno = 0; #ifdef MPW /* MPW C modf expects pointer to extended as second argument */ ! { ! extended e; ! x = modf(x, &e); ! y = e; ! } #else x = modf(x, &y); --- 196,211 ---- static PyObject * ! math_modf(PyObject *self, PyObject *args) { double x, y; ! if (! PyArg_ParseTuple(args, "d:modf", &x)) return NULL; errno = 0; #ifdef MPW /* MPW C modf expects pointer to extended as second argument */ ! { ! extended e; ! x = modf(x, &e); ! y = e; ! } #else x = modf(x, &y); *************** *** 235,264 **** static PyMethodDef math_methods[] = { ! {"acos", math_acos, 0, math_acos_doc}, ! {"asin", math_asin, 0, math_asin_doc}, ! {"atan", math_atan, 0, math_atan_doc}, ! {"atan2", math_atan2, 0, math_atan2_doc}, ! {"ceil", math_ceil, 0, math_ceil_doc}, ! {"cos", math_cos, 0, math_cos_doc}, ! {"cosh", math_cosh, 0, math_cosh_doc}, ! {"exp", math_exp, 0, math_exp_doc}, ! {"fabs", math_fabs, 0, math_fabs_doc}, ! {"floor", math_floor, 0, math_floor_doc}, ! {"fmod", math_fmod, 0, math_fmod_doc}, ! {"frexp", math_frexp, 0, math_frexp_doc}, ! {"hypot", math_hypot, 0, math_hypot_doc}, ! {"ldexp", math_ldexp, 0, math_ldexp_doc}, ! {"log", math_log, 0, math_log_doc}, ! {"log10", math_log10, 0, math_log10_doc}, ! {"modf", math_modf, 0, math_modf_doc}, ! {"pow", math_pow, 0, math_pow_doc}, #ifdef HAVE_RINT ! {"rint", math_rint, 0, math_rint_doc}, #endif ! {"sin", math_sin, 0, math_sin_doc}, ! {"sinh", math_sinh, 0, math_sinh_doc}, ! {"sqrt", math_sqrt, 0, math_sqrt_doc}, ! {"tan", math_tan, 0, math_tan_doc}, ! {"tanh", math_tanh, 0, math_tanh_doc}, {NULL, NULL} /* sentinel */ }; --- 225,254 ---- static PyMethodDef math_methods[] = { ! {"acos", math_acos, METH_VARARGS, math_acos_doc}, ! {"asin", math_asin, METH_VARARGS, math_asin_doc}, ! {"atan", math_atan, METH_VARARGS, math_atan_doc}, ! {"atan2", math_atan2, METH_VARARGS, math_atan2_doc}, ! {"ceil", math_ceil, METH_VARARGS, math_ceil_doc}, ! {"cos", math_cos, METH_VARARGS, math_cos_doc}, ! {"cosh", math_cosh, METH_VARARGS, math_cosh_doc}, ! {"exp", math_exp, METH_VARARGS, math_exp_doc}, ! {"fabs", math_fabs, METH_VARARGS, math_fabs_doc}, ! {"floor", math_floor, METH_VARARGS, math_floor_doc}, ! {"fmod", math_fmod, METH_VARARGS, math_fmod_doc}, ! {"frexp", math_frexp, METH_VARARGS, math_frexp_doc}, ! {"hypot", math_hypot, METH_VARARGS, math_hypot_doc}, ! {"ldexp", math_ldexp, METH_VARARGS, math_ldexp_doc}, ! {"log", math_log, METH_VARARGS, math_log_doc}, ! {"log10", math_log10, METH_VARARGS, math_log10_doc}, ! {"modf", math_modf, METH_VARARGS, math_modf_doc}, ! {"pow", math_pow, METH_VARARGS, math_pow_doc}, #ifdef HAVE_RINT ! {"rint", math_rint, METH_VARARGS, math_rint_doc}, #endif ! {"sin", math_sin, METH_VARARGS, math_sin_doc}, ! {"sinh", math_sinh, METH_VARARGS, math_sinh_doc}, ! {"sqrt", math_sqrt, METH_VARARGS, math_sqrt_doc}, ! {"tan", math_tan, METH_VARARGS, math_tan_doc}, ! {"tanh", math_tanh, METH_VARARGS, math_tanh_doc}, {NULL, NULL} /* sentinel */ }; From python-dev@python.org Mon Jul 3 19:44:24 2000 From: python-dev@python.org (Fredrik Lundh) Date: Mon, 3 Jul 2000 11:44:24 -0700 Subject: [Python-checkins] CVS: python/dist/src/Lib/test test_sre.py,1.2,1.3 Message-ID: <200007031844.LAA30938@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Lib/test In directory slayer.i.sourceforge.net:/tmp/cvs-serv30343/Lib/test Modified Files: test_sre.py Log Message: - added lookbehind support (?<=pattern), (?a)|(?Pb))(?Pc)?') ! assert pat.match('a').group(1, 2, 3) == ('a', None, None) ! assert pat.match('b').group('a1', 'b2', 'c3') == (None, 'b', None) ! assert pat.match('ac').group(1, 'b2', 3) == ('a', None, 'c') except AssertionError: raise TestFailed, "match .group() method" --- 202,213 ---- try: # A single group ! m = sre.match('(a)', 'a') ! assert m.group(0) == 'a' ; assert m.group(0) == 'a' assert m.group(1) == 'a' ; assert m.group(1, 1) == ('a', 'a') pat = sre.compile('(?:(?Pa)|(?Pb))(?Pc)?') ! assert pat.match('a').group(1, 2, 3) == ('a', None, None) ! assert pat.match('b').group('a1', 'b2', 'c3') == (None, 'b', None) ! assert pat.match('ac').group(1, 'b2', 3) == ('a', None, 'c') except AssertionError: raise TestFailed, "match .group() method" *************** *** 253,260 **** assert sre.L == sre.LOCALE assert sre.M == sre.MULTILINE ! assert sre.S == sre.DOTALL ! assert sre.X == sre.VERBOSE ! assert sre.T == sre.TEMPLATE ! assert sre.U == sre.UNICODE except AssertionError: raise TestFailed, 're module constants' --- 253,260 ---- assert sre.L == sre.LOCALE assert sre.M == sre.MULTILINE ! assert sre.S == sre.DOTALL ! assert sre.X == sre.VERBOSE ! assert sre.T == sre.TEMPLATE ! assert sre.U == sre.UNICODE except AssertionError: raise TestFailed, 're module constants' *************** *** 273,277 **** # To save time, only run the first and last 10 tests #tests = tests[:10] + tests[-10:] ! pass for t in tests: --- 273,277 ---- # To save time, only run the first and last 10 tests #tests = tests[:10] + tests[-10:] ! pass for t in tests: *************** *** 281,285 **** pattern, s, outcome, repl, expected = t elif len(t)==3: ! pattern, s, outcome = t else: raise ValueError, ('Test tuples should have 3 or 5 fields',t) --- 281,285 ---- pattern, s, outcome, repl, expected = t elif len(t)==3: ! pattern, s, outcome = t else: raise ValueError, ('Test tuples should have 3 or 5 fields',t) *************** *** 289,293 **** except sre.error: if outcome==SYNTAX_ERROR: pass # Expected a syntax error ! else: print '=== Syntax error:', t except KeyboardInterrupt: raise KeyboardInterrupt --- 289,293 ---- except sre.error: if outcome==SYNTAX_ERROR: pass # Expected a syntax error ! else: print '=== Syntax error:', t except KeyboardInterrupt: raise KeyboardInterrupt *************** *** 357,361 **** # break (because it won't match at the end or start of a # string), so we'll ignore patterns that feature it. ! if pattern[:2]!='\\B' and pattern[-2:]!='\\B': obj=sre.compile(pattern) --- 357,361 ---- # break (because it won't match at the end or start of a # string), so we'll ignore patterns that feature it. ! if pattern[:2]!='\\B' and pattern[-2:]!='\\B': obj=sre.compile(pattern) From python-dev@python.org Mon Jul 3 19:44:24 2000 From: python-dev@python.org (Fredrik Lundh) Date: Mon, 3 Jul 2000 11:44:24 -0700 Subject: [Python-checkins] CVS: python/dist/src/Lib sre_compile.py,1.22,1.23 sre_parse.py,1.23,1.24 Message-ID: <200007031844.LAA30930@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Lib In directory slayer.i.sourceforge.net:/tmp/cvs-serv30343/Lib Modified Files: sre_compile.py sre_parse.py Log Message: - added lookbehind support (?<=pattern), (?= 0: ! emit(0) # look ahead ! else: ! lo, hi = av[1].getwidth() ! if lo != hi: ! raise error, "look-behind requires fixed-width pattern" ! emit(lo) # look behind ! _compile(code, av[1], flags) ! emit(OPCODES[SUCCESS]) ! code[skip] = len(code) - skip ! elif op is CALL: emit(OPCODES[op]) skip = len(code); emit(0) *************** *** 306,311 **** return _sre.compile( ! pattern, flags, ! array.array(WORDSIZE, code).tostring(), ! p.pattern.groups-1, groupindex, indexgroup ) --- 311,316 ---- return _sre.compile( ! pattern, flags, code, ! p.pattern.groups-1, ! groupindex, indexgroup ) Index: sre_parse.py =================================================================== RCS file: /cvsroot/python/python/dist/src/Lib/sre_parse.py,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -r1.23 -r1.24 *** sre_parse.py 2000/07/02 22:25:39 1.23 --- sre_parse.py 2000/07/03 18:44:21 1.24 *************** *** 483,489 **** break source.get() ! elif source.next in ("=", "!"): # lookahead assertions char = source.get() b = [] while 1: --- 483,495 ---- break source.get() ! elif source.next in ("=", "!", "<"): # lookahead assertions char = source.get() + dir = 1 + if char == "<": + if source.next not in ("=", "!"): + raise error, "syntax error" + dir = -1 # lookbehind + char = source.get() b = [] while 1: *************** *** 494,500 **** p = _branch(state, b) if char == "=": ! subpattern.append((ASSERT, p)) else: ! subpattern.append((ASSERT_NOT, p)) break elif source.match("|"): --- 500,506 ---- p = _branch(state, b) if char == "=": ! subpattern.append((ASSERT, (dir, p))) else: ! subpattern.append((ASSERT_NOT, (dir, p))) break elif source.match("|"): From python-dev@python.org Mon Jul 3 19:44:24 2000 From: python-dev@python.org (Fredrik Lundh) Date: Mon, 3 Jul 2000 11:44:24 -0700 Subject: [Python-checkins] CVS: python/dist/src/Modules _sre.c,2.22,2.23 sre.h,2.12,2.13 Message-ID: <200007031844.LAA30940@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Modules In directory slayer.i.sourceforge.net:/tmp/cvs-serv30343/Modules Modified Files: _sre.c sre.h Log Message: - added lookbehind support (?<=pattern), (? */ TRACE(("%8d: set index %d\n", PTR(ptr), pattern[0])); ! state->index = pattern[0]; pattern++; break; --- 586,590 ---- /* args: */ TRACE(("%8d: set index %d\n", PTR(ptr), pattern[0])); ! state->lastindex = pattern[0]; pattern++; break; *************** *** 607,614 **** case SRE_OP_ASSERT: /* assert subpattern */ ! /* args: */ ! TRACE(("%8d: assert subpattern\n", PTR(ptr))); ! state->ptr = ptr; ! i = SRE_MATCH(state, pattern + 1); if (i < 0) return i; --- 600,609 ---- case SRE_OP_ASSERT: /* assert subpattern */ ! /* args: */ ! TRACE(("%8d: assert subpattern %d\n", PTR(ptr), pattern[1])); ! state->ptr = ptr - pattern[1]; ! if (state->ptr < state->beginning) ! goto failure; ! i = SRE_MATCH(state, pattern + 2); if (i < 0) return i; *************** *** 621,627 **** /* assert not subpattern */ /* args: */ ! TRACE(("%8d: assert not subpattern\n", PTR(ptr))); ! state->ptr = ptr; ! i = SRE_MATCH(state, pattern + 1); if (i < 0) return i; --- 616,624 ---- /* assert not subpattern */ /* args: */ ! TRACE(("%8d: assert not subpattern %d\n", PTR(ptr), pattern[1])); ! state->ptr = ptr - pattern[1]; ! if (state->ptr < state->beginning) ! goto failure; ! i = SRE_MATCH(state, pattern + 2); if (i < 0) return i; *************** *** 1099,1102 **** --- 1096,1100 ---- PatternObject* self; + int i, n; PyObject* pattern; *************** *** 1106,1119 **** PyObject* groupindex = NULL; PyObject* indexgroup = NULL; ! if (!PyArg_ParseTuple(args, "OiO!|iOO", &pattern, &flags, ! &PyString_Type, &code, &groups, &groupindex, &indexgroup)) return NULL; ! self = PyObject_NEW(PatternObject, &Pattern_Type); ! if (self == NULL) return NULL; Py_INCREF(pattern); self->pattern = pattern; --- 1104,1133 ---- PyObject* groupindex = NULL; PyObject* indexgroup = NULL; ! if (!PyArg_ParseTuple(args, "OiO|iOO", &pattern, &flags, &code, &groups, &groupindex, &indexgroup)) return NULL; ! code = PySequence_Fast(code, "code argument must be a sequence"); ! if (!code) ! return NULL; + n = PySequence_Length(code); + + self = PyObject_NEW_VAR(PatternObject, &Pattern_Type, 100*n); + if (!self) { + Py_DECREF(code); return NULL; + } + + for (i = 0; i < n; i++) { + PyObject *o = PySequence_Fast_GET_ITEM(code, i); + self->code[i] = (SRE_CODE) PyInt_AsLong(o); + } + + Py_DECREF(code); + if (PyErr_Occurred()) + return NULL; + Py_INCREF(pattern); self->pattern = pattern; *************** *** 1121,1127 **** self->flags = flags; - Py_INCREF(code); - self->code = code; - self->groups = groups; --- 1135,1138 ---- *************** *** 1218,1222 **** state->mark[i] = NULL; ! state->index = -1; state->stack = NULL; --- 1229,1233 ---- state->mark[i] = NULL; ! state->lastindex = -1; state->stack = NULL; *************** *** 1275,1280 **** /* create match object (with room for extra group marks) */ ! match = PyObject_NEW_VAR(MatchObject, &Match_Type, 2*pattern->groups); ! if (match == NULL) return NULL; --- 1286,1292 ---- /* create match object (with room for extra group marks) */ ! match = PyObject_NEW_VAR(MatchObject, &Match_Type, ! 2*(pattern->groups+1)); ! if (!match) return NULL; *************** *** 1301,1306 **** } else match->mark[j+2] = match->mark[j+3] = -1; /* undefined */ ! match->index = state->index; return (PyObject*) match; --- 1313,1321 ---- } else match->mark[j+2] = match->mark[j+3] = -1; /* undefined */ + + match->lastindex = state->lastindex; ! match->pos = ((char*) state->start - base) / n; ! match->endpos = ((char*) state->end - base) / n; return (PyObject*) match; *************** *** 1330,1339 **** /* create match object (with room for extra group marks) */ self = PyObject_NEW(ScannerObject, &Scanner_Type); ! if (self == NULL) return NULL; string = state_init(&self->state, pattern, args); if (!string) { ! PyObject_DEL(self); return NULL; } --- 1345,1354 ---- /* create match object (with room for extra group marks) */ self = PyObject_NEW(ScannerObject, &Scanner_Type); ! if (!self) return NULL; string = state_init(&self->state, pattern, args); if (!string) { ! PyObject_Del(self); return NULL; } *************** *** 1351,1358 **** pattern_dealloc(PatternObject* self) { - Py_XDECREF(self->code); Py_XDECREF(self->pattern); Py_XDECREF(self->groupindex); ! PyMem_DEL(self); } --- 1366,1372 ---- pattern_dealloc(PatternObject* self) { Py_XDECREF(self->pattern); Py_XDECREF(self->groupindex); ! PyObject_DEL(self); } *************** *** 1615,1622 **** statichere PyTypeObject Pattern_Type = { PyObject_HEAD_INIT(NULL) ! 0, "SRE_Pattern", sizeof(PatternObject), 0, (destructor)pattern_dealloc, /*tp_dealloc*/ 0, /*tp_print*/ ! (getattrfunc)pattern_getattr, /*tp_getattr*/ }; --- 1629,1637 ---- statichere PyTypeObject Pattern_Type = { PyObject_HEAD_INIT(NULL) ! 0, "SRE_Pattern", ! sizeof(PatternObject), sizeof(SRE_CODE), (destructor)pattern_dealloc, /*tp_dealloc*/ 0, /*tp_print*/ ! (getattrfunc)pattern_getattr /*tp_getattr*/ }; *************** *** 1629,1633 **** Py_XDECREF(self->string); Py_DECREF(self->pattern); ! PyMem_DEL(self); } --- 1644,1648 ---- Py_XDECREF(self->string); Py_DECREF(self->pattern); ! PyObject_DEL(self); } *************** *** 1644,1648 **** } ! if (self->string == Py_None || self->mark[index+index] < 0) { /* return default value if the string or group is undefined */ Py_INCREF(def); --- 1659,1665 ---- } ! index *= 2; ! ! if (self->string == Py_None || self->mark[index] < 0) { /* return default value if the string or group is undefined */ Py_INCREF(def); *************** *** 1651,1655 **** return PySequence_GetSlice( ! self->string, self->mark[index+index], self->mark[index+index+1] ); } --- 1668,1672 ---- return PySequence_GetSlice( ! self->string, self->mark[index], self->mark[index+1] ); } *************** *** 1658,1672 **** match_getindex(MatchObject* self, PyObject* index) { ! if (!PyInt_Check(index) && self->pattern->groupindex != NULL) { ! /* FIXME: resource leak? */ ! index = PyObject_GetItem(self->pattern->groupindex, index); ! if (!index) ! return -1; ! } if (PyInt_Check(index)) return (int) PyInt_AS_LONG(index); ! return -1; } --- 1675,1696 ---- match_getindex(MatchObject* self, PyObject* index) { ! int i; if (PyInt_Check(index)) return (int) PyInt_AS_LONG(index); + + i = -1; + + if (self->pattern->groupindex) { + index = PyObject_GetItem(self->pattern->groupindex, index); + if (index) { + if (PyInt_Check(index)) + i = (int) PyInt_AS_LONG(index); + Py_DECREF(index); + } else + PyErr_Clear(); + } ! return i; } *************** *** 1890,1895 **** if (!strcmp(name, "lastindex")) { /* experimental */ ! if (self->index >= 0) ! return Py_BuildValue("i", self->index); Py_INCREF(Py_None); return Py_None; --- 1914,1919 ---- if (!strcmp(name, "lastindex")) { /* experimental */ ! if (self->lastindex >= 0) ! return Py_BuildValue("i", self->lastindex); Py_INCREF(Py_None); return Py_None; *************** *** 1898,1904 **** if (!strcmp(name, "lastgroup")) { /* experimental */ ! if (self->pattern->indexgroup) { PyObject* result = PySequence_GetItem( ! self->pattern->indexgroup, self->index ); if (result) --- 1922,1928 ---- if (!strcmp(name, "lastgroup")) { /* experimental */ ! if (self->pattern->indexgroup && self->lastindex >= 0) { PyObject* result = PySequence_GetItem( ! self->pattern->indexgroup, self->lastindex ); if (result) *************** *** 1921,1928 **** if (!strcmp(name, "pos")) ! return Py_BuildValue("i", 0); /* FIXME */ if (!strcmp(name, "endpos")) ! return Py_BuildValue("i", 0); /* FIXME */ PyErr_SetString(PyExc_AttributeError, name); --- 1945,1952 ---- if (!strcmp(name, "pos")) ! return Py_BuildValue("i", self->pos); if (!strcmp(name, "endpos")) ! return Py_BuildValue("i", self->endpos); PyErr_SetString(PyExc_AttributeError, name); *************** *** 1936,1944 **** PyObject_HEAD_INIT(NULL) 0, "SRE_Match", ! sizeof(MatchObject), /* size of basic object */ ! sizeof(int), /* space for group item */ (destructor)match_dealloc, /*tp_dealloc*/ 0, /*tp_print*/ ! (getattrfunc)match_getattr, /*tp_getattr*/ }; --- 1960,1967 ---- PyObject_HEAD_INIT(NULL) 0, "SRE_Match", ! sizeof(MatchObject), sizeof(int), (destructor)match_dealloc, /*tp_dealloc*/ 0, /*tp_print*/ ! (getattrfunc)match_getattr /*tp_getattr*/ }; *************** *** 1952,1956 **** Py_DECREF(self->string); Py_DECREF(self->pattern); ! PyMem_DEL(self); } --- 1975,1979 ---- Py_DECREF(self->string); Py_DECREF(self->pattern); ! PyObject_DEL(self); } *************** *** 2042,2047 **** PyObject_HEAD_INIT(NULL) 0, "SRE_Scanner", ! sizeof(ScannerObject), /* size of basic object */ ! 0, (destructor)scanner_dealloc, /*tp_dealloc*/ 0, /*tp_print*/ --- 2065,2069 ---- PyObject_HEAD_INIT(NULL) 0, "SRE_Scanner", ! sizeof(ScannerObject), 0, (destructor)scanner_dealloc, /*tp_dealloc*/ 0, /*tp_print*/ Index: sre.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/sre.h,v retrieving revision 2.12 retrieving revision 2.13 diff -C2 -r2.12 -r2.13 *** sre.h 2000/07/02 22:25:39 2.12 --- sre.h 2000/07/03 18:44:21 2.13 *************** *** 18,23 **** typedef struct { ! PyObject_HEAD ! PyObject* code; /* link to the code string object */ int groups; PyObject* groupindex; --- 18,22 ---- typedef struct { ! PyObject_VAR_HEAD int groups; PyObject* groupindex; *************** *** 26,41 **** PyObject* pattern; /* pattern source (or None) */ int flags; /* flags used when compiling pattern source */ } PatternObject; ! #define PatternObject_GetCode(o)\ ! ((void*) PyString_AS_STRING(((PatternObject*)(o))->code)) typedef struct { ! PyObject_HEAD PyObject* string; /* link to the target string */ PatternObject* pattern; /* link to the regex (pattern) object */ ! int index; /* last index marker seen by the engine (-1 if none) */ int groups; /* number of groups (start/end marks) */ ! int mark[2]; } MatchObject; --- 25,42 ---- PyObject* pattern; /* pattern source (or None) */ int flags; /* flags used when compiling pattern source */ + /* pattern code */ + SRE_CODE code[1]; } PatternObject; ! #define PatternObject_GetCode(o) (((PatternObject*)(o))->code) typedef struct { ! PyObject_VAR_HEAD PyObject* string; /* link to the target string */ PatternObject* pattern; /* link to the regex (pattern) object */ ! int pos, endpos; /* current target slice */ ! int lastindex; /* last index marker seen by the engine (-1 if none) */ int groups; /* number of groups (start/end marks) */ ! int mark[1]; } MatchObject; *************** *** 60,64 **** int charsize; /* registers */ ! int index; int lastmark; void* mark[SRE_MARK_SIZE]; --- 61,65 ---- int charsize; /* registers */ ! int lastindex; int lastmark; void* mark[SRE_MARK_SIZE]; From python-dev@python.org Mon Jul 3 19:53:21 2000 From: python-dev@python.org (Fredrik Lundh) Date: Mon, 3 Jul 2000 20:53:21 +0200 Subject: [Python-checkins] CVS: python/dist/src/Lib/test test_sre.py,1.2,1.3 References: <200007031844.LAA30938@slayer.i.sourceforge.net> Message-ID: <00f301bfe51f$f84e6f60$f2a6b5d4@hagrid> > - cleaned up a various of potential leaks, api abuses, > and other minors in the engine module. hmm. I wonder what that was supposed to mean... guess it's time for a break. From python-dev@python.org Mon Jul 3 22:31:51 2000 From: python-dev@python.org (Fredrik Lundh) Date: Mon, 3 Jul 2000 14:31:51 -0700 Subject: [Python-checkins] CVS: python/dist/src/Lib sre_compile.py,1.23,1.24 sre_constants.py,1.15,1.16 sre_parse.py,1.24,1.25 Message-ID: <200007032131.OAA28633@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Lib In directory slayer.i.sourceforge.net:/tmp/cvs-serv28299/Lib Modified Files: sre_compile.py sre_constants.py sre_parse.py Log Message: - fixed grouping error bug - changed "group" operator to "groupref" Index: sre_compile.py =================================================================== RCS file: /cvsroot/python/python/dist/src/Lib/sre_compile.py,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -r1.23 -r1.24 *** sre_compile.py 2000/07/03 18:44:21 1.23 --- sre_compile.py 2000/07/03 21:31:48 1.24 *************** *** 149,164 **** emit(av[0]) emit(av[1]) _compile(code, av[2], flags) emit(OPCODES[SUCCESS]) code[skip] = len(code) - skip elif op is SUBPATTERN: ! group = av[0] ! if group: emit(OPCODES[MARK]) ! emit((group-1)*2) _compile(code, av[1], flags) ! if group: emit(OPCODES[MARK]) ! emit((group-1)*2+1) elif op in (SUCCESS, FAILURE): emit(OPCODES[op]) --- 149,171 ---- emit(av[0]) emit(av[1]) + mark = MAXCODE + if av[2][0][0] == SUBPATTERN: + # repeated subpattern + gid, foo = av[2][0][1] + if gid: + mark = (gid-1)*2 + emit(mark) _compile(code, av[2], flags) emit(OPCODES[SUCCESS]) code[skip] = len(code) - skip elif op is SUBPATTERN: ! gid = av[0] ! if gid: emit(OPCODES[MARK]) ! emit((gid-1)*2) _compile(code, av[1], flags) ! if gid: emit(OPCODES[MARK]) ! emit((gid-1)*2+1) elif op in (SUCCESS, FAILURE): emit(OPCODES[op]) *************** *** 208,212 **** else: emit(CHCODES[av]) ! elif op is GROUP: if flags & SRE_FLAG_IGNORECASE: emit(OPCODES[OP_IGNORE[op]]) --- 215,219 ---- else: emit(CHCODES[av]) ! elif op is GROUPREF: if flags & SRE_FLAG_IGNORECASE: emit(OPCODES[OP_IGNORE[op]]) Index: sre_constants.py =================================================================== RCS file: /cvsroot/python/python/dist/src/Lib/sre_constants.py,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -r1.15 -r1.16 *** sre_constants.py 2000/07/02 17:33:27 1.15 --- sre_constants.py 2000/07/03 21:31:48 1.16 *************** *** 30,35 **** CATEGORY = "category" CHARSET = "charset" ! GROUP = "group" ! GROUP_IGNORE = "group_ignore" IN = "in" IN_IGNORE = "in_ignore" --- 30,35 ---- CATEGORY = "category" CHARSET = "charset" ! GROUPREF = "groupref" ! GROUPREF_IGNORE = "groupref_ignore" IN = "in" IN_IGNORE = "in_ignore" *************** *** 91,95 **** CATEGORY, CHARSET, ! GROUP, GROUP_IGNORE, INDEX, IN, IN_IGNORE, --- 91,95 ---- CATEGORY, CHARSET, ! GROUPREF, GROUPREF_IGNORE, INDEX, IN, IN_IGNORE, *************** *** 137,141 **** # replacement operations for "ignore case" mode OP_IGNORE = { ! GROUP: GROUP_IGNORE, IN: IN_IGNORE, LITERAL: LITERAL_IGNORE, --- 137,141 ---- # replacement operations for "ignore case" mode OP_IGNORE = { ! GROUPREF: GROUPREF_IGNORE, IN: IN_IGNORE, LITERAL: LITERAL_IGNORE, Index: sre_parse.py =================================================================== RCS file: /cvsroot/python/python/dist/src/Lib/sre_parse.py,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -r1.24 -r1.25 *** sre_parse.py 2000/07/03 18:44:21 1.24 --- sre_parse.py 2000/07/03 21:31:48 1.25 *************** *** 242,246 **** if (not source.next or not _group(escape + source.next, state.groups)): ! return GROUP, group escape = escape + source.get() elif source.next in OCTDIGITS: --- 242,246 ---- if (not source.next or not _group(escape + source.next, state.groups)): ! return GROUPREF, group escape = escape + source.get() elif source.next in OCTDIGITS: *************** *** 451,455 **** if gid is None: raise error, "unknown group name" ! subpattern.append((GROUP, gid)) elif source.match("#"): index = "" --- 451,455 ---- if gid is None: raise error, "unknown group name" ! subpattern.append((GROUPREF, gid)) elif source.match("#"): index = "" From python-dev@python.org Mon Jul 3 22:31:51 2000 From: python-dev@python.org (Fredrik Lundh) Date: Mon, 3 Jul 2000 14:31:51 -0700 Subject: [Python-checkins] CVS: python/dist/src/Lib/test/output test_sre,1.5,1.6 Message-ID: <200007032131.OAA28638@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Lib/test/output In directory slayer.i.sourceforge.net:/tmp/cvs-serv28299/Lib/test/output Modified Files: test_sre Log Message: - fixed grouping error bug - changed "group" operator to "groupref" Index: test_sre =================================================================== RCS file: /cvsroot/python/python/dist/src/Lib/test/output/test_sre,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** test_sre 2000/06/30 18:39:20 1.5 --- test_sre 2000/07/03 21:31:48 1.6 *************** *** 2,7 **** === Failed incorrectly ('^(.+)?B', 'AB', 0, 'g1', 'A') === Failed incorrectly ('(a+)+\\1', 'aa', 0, 'found+"-"+g1', 'aa-a') - === grouping error ('([^/]*/)*sub1/', 'd:msgs/tdir/sub1/trial/away.cpp', 0, 'found+"-"+g1', 'd:msgs/tdir/sub1/-tdir/') 'd:msgs/tdir/sub1/-trial/' should be 'd:msgs/tdir/sub1/-tdir/' - === grouping error ('([abc])*bcd', 'abcd', 0, 'found+"-"+g1', 'abcd-a') 'abcd-c' should be 'abcd-a' - === grouping error ('(?i)([abc])*bcd', 'ABCD', 0, 'found+"-"+g1', 'ABCD-A') 'ABCD-C' should be 'ABCD-A' === Failed incorrectly ('^(.+)?B', 'AB', 0, 'g1', 'A') --- 2,4 ---- From python-dev@python.org Mon Jul 3 22:31:51 2000 From: python-dev@python.org (Fredrik Lundh) Date: Mon, 3 Jul 2000 14:31:51 -0700 Subject: [Python-checkins] CVS: python/dist/src/Modules _sre.c,2.23,2.24 sre.h,2.13,2.14 Message-ID: <200007032131.OAA28639@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Modules In directory slayer.i.sourceforge.net:/tmp/cvs-serv28299/Modules Modified Files: _sre.c sre.h Log Message: - fixed grouping error bug - changed "group" operator to "groupref" Index: _sre.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/_sre.c,v retrieving revision 2.23 retrieving revision 2.24 diff -C2 -r2.23 -r2.24 *** _sre.c 2000/07/03 18:44:21 2.23 --- _sre.c 2000/07/03 21:31:48 2.24 *************** *** 407,410 **** --- 407,411 ---- int lastmark; int i, count; + SRE_STACK* sp; /* FIXME: this is a hack! */ *************** *** 572,577 **** /* args: */ TRACE(("%8d: set mark %d\n", PTR(ptr), pattern[0])); ! if (state->lastmark < pattern[0]) ! state->lastmark = pattern[0]; if (!mark) { mark = mark_copy; --- 573,578 ---- /* args: */ TRACE(("%8d: set mark %d\n", PTR(ptr), pattern[0])); ! if (state->lastmark < pattern[0]+1) ! state->lastmark = pattern[0]+1; if (!mark) { mark = mark_copy; *************** *** 781,788 **** case SRE_OP_MAX_REPEAT: ! /* match repeated sequence (maximizing regexp). repeated ! group should end with a MAX_UNTIL code */ ! ! /* args: */ TRACE(("%8d: max repeat (%d %d)\n", PTR(ptr), --- 782,787 ---- case SRE_OP_MAX_REPEAT: ! /* match repeated sequence (maximizing regexp) */ ! /* args: <1=min> <2=max> <3=save> <4=item> */ TRACE(("%8d: max repeat (%d %d)\n", PTR(ptr), *************** *** 794,798 **** /* match minimum number of items */ while (count < (int) pattern[1]) { ! i = SRE_MATCH(state, pattern + 3); if (i < 0) return i; --- 793,797 ---- /* match minimum number of items */ while (count < (int) pattern[1]) { ! i = SRE_MATCH(state, pattern + 4); if (i < 0) return i; *************** *** 818,823 **** while (pattern[2] == 65535 || count < (int) pattern[2]) { state->stackbase = stack; ! i = SRE_MATCH(state, pattern + 3); state->stackbase = stackbase; /* rewind */ if (i < 0) --- 817,827 ---- while (pattern[2] == 65535 || count < (int) pattern[2]) { + void *mark0, *mark1; + if (pattern[3] != 65535) { + mark0 = state->mark[pattern[3]]; + mark1 = state->mark[pattern[3]+1]; + } state->stackbase = stack; ! i = SRE_MATCH(state, pattern + 4); state->stackbase = stackbase; /* rewind */ if (i < 0) *************** *** 838,843 **** } TRACE(("%8d: stack[%d] = %d\n", PTR(ptr), stack, PTR(ptr))); ! state->stack[stack].ptr = ptr; ! state->stack[stack].pattern = pattern + pattern[0]; stack++; /* move forward */ --- 842,853 ---- } TRACE(("%8d: stack[%d] = %d\n", PTR(ptr), stack, PTR(ptr))); ! sp = state->stack + stack; ! sp->ptr = ptr; ! sp->pattern = pattern + pattern[0]; ! sp->mark = pattern[3]; ! if (pattern[3] != 65535) { ! sp->mark0 = mark0; ! sp->mark1 = mark1; ! } stack++; /* move forward */ *************** *** 856,859 **** --- 866,871 ---- case SRE_OP_MIN_REPEAT: /* match repeated sequence (minimizing regexp) */ + /* args: <1=min> <2=max> <3=save> <4=item> */ + TRACE(("%8d: min repeat %d %d\n", PTR(ptr), pattern[1], pattern[2])); *************** *** 862,866 **** /* match minimum number of items */ while (count < (int) pattern[1]) { ! i = SRE_MATCH(state, pattern + 3); if (i < 0) return i; --- 874,878 ---- /* match minimum number of items */ while (count < (int) pattern[1]) { ! i = SRE_MATCH(state, pattern + 4); if (i < 0) return i; *************** *** 878,882 **** } state->ptr = ptr; /* backtrack */ ! i = SRE_MATCH(state, pattern + 3); if (i < 0) return i; --- 890,894 ---- } state->ptr = ptr; /* backtrack */ ! i = SRE_MATCH(state, pattern + 4); if (i < 0) return i; *************** *** 941,953 **** failure: if (stack-- > stackbase) { ! ptr = state->stack[stack].ptr; ! pattern = state->stack[stack].pattern; TRACE(("%8d: retry (%d)\n", PTR(ptr), stack)); goto retry; } - TRACE(("%8d: leave (failure)\n", PTR(ptr))); - state->stackbase = stackbase; state->lastmark = lastmark; if (mark) memcpy(state->mark, mark, state->lastmark*sizeof(void*)); --- 953,970 ---- failure: + TRACE(("%8d: leave (failure)\n", PTR(ptr))); if (stack-- > stackbase) { ! sp = state->stack + stack; ! ptr = sp->ptr; ! pattern = sp->pattern; ! if (sp->mark != 65535) { ! state->mark[sp->mark] = sp->mark0; ! state->mark[sp->mark+1] = sp->mark1; ! } TRACE(("%8d: retry (%d)\n", PTR(ptr), stack)); goto retry; } state->lastmark = lastmark; + state->stackbase = stackbase; if (mark) memcpy(state->mark, mark, state->lastmark*sizeof(void*)); Index: sre.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/sre.h,v retrieving revision 2.13 retrieving revision 2.14 diff -C2 -r2.13 -r2.14 *** sre.h 2000/07/03 18:44:21 2.13 --- sre.h 2000/07/03 21:31:48 2.14 *************** *** 47,50 **** --- 47,53 ---- SRE_CODE* pattern; void* ptr; + int mark; + void* mark0; + void* mark1; } SRE_STACK; From python-dev@python.org Mon Jul 3 22:37:29 2000 From: python-dev@python.org (Jack Jansen) Date: Mon, 3 Jul 2000 14:37:29 -0700 Subject: [Python-checkins] CVS: python/dist/src/Modules timemodule.c,2.88,2.89 Message-ID: <200007032137.OAA29077@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Modules In directory slayer.i.sourceforge.net:/tmp/cvs-serv28917 Modified Files: timemodule.c Log Message: Mac only: two epoch problem workarounds are no longer needed for GUSI >= 2.0.5. One still is:-( Index: timemodule.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/timemodule.c,v retrieving revision 2.88 retrieving revision 2.89 diff -C2 -r2.88 -r2.89 *** timemodule.c 2000/06/30 23:58:05 2.88 --- timemodule.c 2000/07/03 21:37:27 2.89 *************** *** 260,264 **** struct tm *p; errno = 0; ! #if defined(macintosh) && defined(USE_GUSI2) when = when + GUSI_TO_MSL_EPOCH; #endif --- 260,264 ---- struct tm *p; errno = 0; ! #if defined(macintosh) && defined(USE_GUSI204) when = when + GUSI_TO_MSL_EPOCH; #endif *************** *** 475,479 **** return NULL; tt = (time_t)dt; ! #if defined(macintosh) && defined(USE_GUSI2) tt = tt + GUSI_TO_MSL_EPOCH; #endif --- 475,479 ---- return NULL; tt = (time_t)dt; ! #if defined(macintosh) && defined(USE_GUSI204) tt = tt + GUSI_TO_MSL_EPOCH; #endif From python-dev@python.org Mon Jul 3 22:39:49 2000 From: python-dev@python.org (Jack Jansen) Date: Mon, 3 Jul 2000 14:39:49 -0700 Subject: [Python-checkins] CVS: python/dist/src/Parser myreadline.c,2.20,2.21 Message-ID: <200007032139.OAA29267@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Parser In directory slayer.i.sourceforge.net:/tmp/cvs-serv29235/Parser Modified Files: myreadline.c Log Message: Include limits.h if we have it. Index: myreadline.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Parser/myreadline.c,v retrieving revision 2.20 retrieving revision 2.21 diff -C2 -r2.20 -r2.21 *** myreadline.c 2000/06/30 23:58:05 2.20 --- myreadline.c 2000/07/03 21:39:47 2.21 *************** *** 20,23 **** --- 20,26 ---- #include "Python.h" + #ifdef HAVE_LIMITS_H + #include + #endif int (*PyOS_InputHook)() = NULL; From python-dev@python.org Mon Jul 3 22:39:49 2000 From: python-dev@python.org (Jack Jansen) Date: Mon, 3 Jul 2000 14:39:49 -0700 Subject: [Python-checkins] CVS: python/dist/src/Python bltinmodule.c,2.165,2.166 codecs.c,2.8,2.9 compile.c,2.112,2.113 modsupport.c,2.45,2.46 Message-ID: <200007032139.OAA29276@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Python In directory slayer.i.sourceforge.net:/tmp/cvs-serv29235/Python Modified Files: bltinmodule.c codecs.c compile.c modsupport.c Log Message: Include limits.h if we have it. Index: bltinmodule.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/bltinmodule.c,v retrieving revision 2.165 retrieving revision 2.166 diff -C2 -r2.165 -r2.166 *** bltinmodule.c 2000/06/30 23:58:05 2.165 --- bltinmodule.c 2000/07/03 21:39:47 2.166 *************** *** 24,27 **** --- 24,30 ---- #include #endif + #ifdef HAVE_LIMITS_H + #include + #endif /* Forward */ Index: codecs.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/codecs.c,v retrieving revision 2.8 retrieving revision 2.9 diff -C2 -r2.8 -r2.9 *** codecs.c 2000/06/29 14:50:15 2.8 --- codecs.c 2000/07/03 21:39:47 2.9 *************** *** 11,14 **** --- 11,17 ---- #include "Python.h" #include + #ifdef HAVE_LIMITS_H + #include + #endif /* --- Globals ------------------------------------------------------------ */ Index: compile.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/compile.c,v retrieving revision 2.112 retrieving revision 2.113 diff -C2 -r2.112 -r2.113 *** compile.c 2000/06/30 23:58:06 2.112 --- compile.c 2000/07/03 21:39:47 2.113 *************** *** 34,37 **** --- 34,40 ---- #include + #ifdef HAVE_LIMITS_H + #include + #endif /* Three symbols from graminit.h are also defined in Python.h, with Index: modsupport.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Python/modsupport.c,v retrieving revision 2.45 retrieving revision 2.46 diff -C2 -r2.45 -r2.46 *** modsupport.c 2000/06/30 23:58:06 2.45 --- modsupport.c 2000/07/03 21:39:47 2.46 *************** *** 12,15 **** --- 12,18 ---- #include "Python.h" + #ifdef HAVE_LIMITS_H + #include + #endif #ifdef MPW /* MPW pushes 'extended' for float and double types with varargs */ From python-dev@python.org Mon Jul 3 23:41:40 2000 From: python-dev@python.org (Tim Peters) Date: Mon, 3 Jul 2000 15:41:40 -0700 Subject: [Python-checkins] CVS: python/dist/src/Modules mathmodule.c,2.49,2.50 Message-ID: <200007032241.PAA06739@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Modules In directory slayer.i.sourceforge.net:/tmp/cvs-serv6711/python/dist/src/modules Modified Files: mathmodule.c Log Message: Typo repair in docstring -- my fault. Index: mathmodule.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/mathmodule.c,v retrieving revision 2.49 retrieving revision 2.50 diff -C2 -r2.49 -r2.50 *** mathmodule.c 2000/07/03 18:11:56 2.49 --- mathmodule.c 2000/07/03 22:41:34 2.50 *************** *** 166,170 **** "frexp(x)\n\ \n\ ! Return the matissa and exponent of x, as pair (m, e).\n\ m is a float and e is an int, such that x = m * 2.**e.\n\ If x is 0, m and e are both 0. Else 0.5 <= abs(m) < 1.0."; --- 166,170 ---- "frexp(x)\n\ \n\ ! Return the mantissa and exponent of x, as pair (m, e).\n\ m is a float and e is an int, such that x = m * 2.**e.\n\ If x is 0, m and e are both 0. Else 0.5 <= abs(m) < 1.0."; From python-dev@python.org Tue Jul 4 00:51:19 2000 From: python-dev@python.org (Tim Peters) Date: Mon, 3 Jul 2000 16:51:19 -0700 Subject: [Python-checkins] CVS: python/dist/src/PC import_nt.c,1.12,1.13 Message-ID: <200007032351.QAA16724@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/PC In directory slayer.i.sourceforge.net:/tmp/cvs-serv16659/python/dist/src/PC Modified Files: import_nt.c Log Message: Squash signed-vs-unsigned warning. Also edits to bring into line with Python coding stds (max line length, C-style comments). Index: import_nt.c =================================================================== RCS file: /cvsroot/python/python/dist/src/PC/import_nt.c,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -r1.12 -r1.13 *** import_nt.c 2000/06/28 22:20:06 1.12 --- import_nt.c 2000/07/03 23:51:17 1.13 *************** *** 9,19 **** #include "Python.h" #include "osdefs.h" #include #include "importdl.h" ! #include "malloc.h" // for alloca ! extern const char *PyWin_DLLVersionString; // a string loaded from the DLL at startup. ! FILE *PyWin_FindRegisteredModule( const char *moduleName, struct filedescr **ppFileDesc, char *pathBuf, int pathLen) { char *moduleKey; --- 9,24 ---- #include "Python.h" #include "osdefs.h" + #include #include #include "importdl.h" ! #include "malloc.h" /* for alloca */ ! /* a string loaded from the DLL at startup */ ! extern const char *PyWin_DLLVersionString; ! FILE *PyWin_FindRegisteredModule(const char *moduleName, ! struct filedescr **ppFileDesc, ! char *pathBuf, ! int pathLen) { char *moduleKey; *************** *** 21,25 **** const char keySuffix[] = "\\Modules\\"; #ifdef _DEBUG ! // In debugging builds, we _must_ have the debug version registered. const char debugString[] = "\\Debug"; #else --- 26,32 ---- const char keySuffix[] = "\\Modules\\"; #ifdef _DEBUG ! /* In debugging builds, we _must_ have the debug version ! * registered. ! */ const char debugString[] = "\\Debug"; #else *************** *** 32,53 **** long regStat; ! // Calculate the size for the sprintf buffer. ! // Get the size of the chars only, plus 1 NULL. ! size_t bufSize = sizeof(keyPrefix)-1 + strlen(PyWin_DLLVersionString) + sizeof(keySuffix) + strlen(moduleName) + sizeof(debugString) - 1; ! // alloca == no free required, but memory only local to fn, also no heap fragmentation! moduleKey = alloca(bufSize); ! sprintf(moduleKey, "Software\\Python\\PythonCore\\%s\\Modules\\%s%s", PyWin_DLLVersionString, moduleName, debugString); modNameSize = pathLen; regStat = RegQueryValue(keyBase, moduleKey, pathBuf, &modNameSize); ! if (regStat!=ERROR_SUCCESS) return NULL; ! // use the file extension to locate the type entry. for (fdp = _PyImport_Filetab; fdp->suffix != NULL; fdp++) { size_t extLen = strlen(fdp->suffix); ! if (modNameSize>extLen && strnicmp(pathBuf+(modNameSize-extLen-1),fdp->suffix,extLen)==0) break; } ! if (fdp->suffix==NULL) return NULL; fp = fopen(pathBuf, fdp->mode); --- 39,73 ---- long regStat; ! /* Calculate the size for the sprintf buffer. ! * Get the size of the chars only, plus 1 NULL. ! */ ! size_t bufSize = sizeof(keyPrefix)-1 + ! strlen(PyWin_DLLVersionString) + ! sizeof(keySuffix) + ! strlen(moduleName) + ! sizeof(debugString) - 1; ! /* alloca == no free required, but memory only local to fn, ! * also no heap fragmentation! ! */ moduleKey = alloca(bufSize); ! sprintf(moduleKey, ! "Software\\Python\\PythonCore\\%s\\Modules\\%s%s", ! PyWin_DLLVersionString, moduleName, debugString); modNameSize = pathLen; regStat = RegQueryValue(keyBase, moduleKey, pathBuf, &modNameSize); ! if (regStat != ERROR_SUCCESS) return NULL; ! /* use the file extension to locate the type entry. */ for (fdp = _PyImport_Filetab; fdp->suffix != NULL; fdp++) { size_t extLen = strlen(fdp->suffix); ! assert(modNameSize >= 0); /* else cast to size_t is wrong */ ! if ((size_t)modNameSize > extLen && ! strnicmp(pathBuf + ((size_t)modNameSize-extLen-1), ! fdp->suffix, ! extLen) == 0) break; } ! if (fdp->suffix == NULL) return NULL; fp = fopen(pathBuf, fdp->mode); *************** *** 56,58 **** return fp; } - --- 76,77 ---- From python-dev@python.org Tue Jul 4 04:38:13 2000 From: python-dev@python.org (Paul Prescod) Date: Mon, 3 Jul 2000 20:38:13 -0700 Subject: [Python-checkins] CVS: python/dist/src/Lib/test test_winreg.py,1.4,1.5 Message-ID: <200007040338.UAA21090@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Lib/test In directory slayer.i.sourceforge.net:/tmp/cvs-serv20965 Modified Files: test_winreg.py Log Message: Removed some tabs. Index: test_winreg.py =================================================================== RCS file: /cvsroot/python/python/dist/src/Lib/test/test_winreg.py,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** test_winreg.py 2000/06/29 19:42:00 1.4 --- test_winreg.py 2000/07/04 03:38:10 1.5 *************** *** 43,58 **** CloseKey(sub_key) try: ! QueryInfoKey(int_sub_key) ! raise RuntimeError, "It appears the CloseKey() function does not close the actual key!" except EnvironmentError: ! pass # ... and close that key that way :-) int_key = int(key) key.Close() try: ! QueryInfoKey(int_key) ! raise RuntimeError, "It appears the key.Close() function does not close the actual key!" except EnvironmentError: ! pass def ReadTestData(root_key): --- 43,58 ---- CloseKey(sub_key) try: ! QueryInfoKey(int_sub_key) ! raise RuntimeError, "It appears the CloseKey() function does not close the actual key!" except EnvironmentError: ! pass # ... and close that key that way :-) int_key = int(key) key.Close() try: ! QueryInfoKey(int_key) ! raise RuntimeError, "It appears the key.Close() function does not close the actual key!" except EnvironmentError: ! pass def ReadTestData(root_key): From python-dev@python.org Tue Jul 4 04:39:35 2000 From: python-dev@python.org (Paul Prescod) Date: Mon, 3 Jul 2000 20:39:35 -0700 Subject: [Python-checkins] CVS: python/dist/src/Lib/xml/dom minidom.py,1.3,1.4 pulldom.py,1.2,1.3 Message-ID: <200007040339.UAA21167@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Lib/xml/dom In directory slayer.i.sourceforge.net:/tmp/cvs-serv21106/dom Modified Files: minidom.py pulldom.py Log Message: Used original SAX handling form. Index: minidom.py =================================================================== RCS file: /cvsroot/python/python/dist/src/Lib/xml/dom/minidom.py,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** minidom.py 2000/07/01 19:21:47 1.3 --- minidom.py 2000/07/04 03:39:33 1.4 *************** *** 42,46 **** if Node.debug==None: Node.debug=StringIO() ! #open( "debug4.out", "w" ) Node.debug.write( "create %s\n"%index ) --- 42,46 ---- if Node.debug==None: Node.debug=StringIO() ! #open( "debug4.out", "w" ) Node.debug.write( "create %s\n"%index ) *************** *** 231,235 **** assert isinstance( value, Attr ) or type( value )==types.StringType node=value ! old=self._attrs.get( attname, None) if old: old.unlink() --- 231,235 ---- assert isinstance( value, Attr ) or type( value )==types.StringType node=value ! old=self._attrs.get( attname, None) if old: old.unlink() Index: pulldom.py =================================================================== RCS file: /cvsroot/python/python/dist/src/Lib/xml/dom/pulldom.py,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** pulldom.py 2000/07/01 04:58:47 1.2 --- pulldom.py 2000/07/04 03:39:33 1.3 *************** *** 23,27 **** def setDocumentLocator( self, locator ): pass ! def startElement( self, tagName , attrs ): if not hasattr( self, "curNode" ): # FIXME: hack! --- 23,27 ---- def setDocumentLocator( self, locator ): pass ! def startElement( self, name, tagName , attrs ): if not hasattr( self, "curNode" ): # FIXME: hack! *************** *** 43,47 **** #self.events.append( (START_ELEMENT, node) ) ! def endElement( self, name ): node = self.curNode self.lastEvent[1]=[(END_ELEMENT, node), None ] --- 43,47 ---- #self.events.append( (START_ELEMENT, node) ) ! def endElement( self, name, tagName ): node = self.curNode self.lastEvent[1]=[(END_ELEMENT, node), None ] From python-dev@python.org Tue Jul 4 04:39:35 2000 From: python-dev@python.org (Paul Prescod) Date: Mon, 3 Jul 2000 20:39:35 -0700 Subject: [Python-checkins] CVS: python/dist/src/Lib/xml/sax expatreader.py,1.1,1.2 Message-ID: <200007040339.UAA21171@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Lib/xml/sax In directory slayer.i.sourceforge.net:/tmp/cvs-serv21106/sax Modified Files: expatreader.py Log Message: Used original SAX handling form. Index: expatreader.py =================================================================== RCS file: /cvsroot/python/python/dist/src/Lib/xml/sax/expatreader.py,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** expatreader.py 2000/06/29 19:34:54 1.1 --- expatreader.py 2000/07/04 03:39:33 1.2 *************** *** 102,107 **** else: self._parser = pyexpat.ParserCreate() ! self._parser.StartElementHandler = self._cont_handler.startElement ! self._parser.EndElementHandler = self._cont_handler.endElement self._parser.ProcessingInstructionHandler = \ --- 102,107 ---- else: self._parser = pyexpat.ParserCreate() ! self._parser.StartElementHandler = self.start_element ! self._parser.EndElementHandler = self.end_element self._parser.ProcessingInstructionHandler = \ *************** *** 134,156 **** return self._parser.GetBase() - # internal methods - # event handlers - def start_element(self, name, attrs): ! self._cont_handler.startElement(name, xmlreader.AttributesImpl(attrs, attrs)) def end_element(self, name): ! self._cont_handler.endElement(name) def start_element_ns(self, name, attrs): pair = split(name) if len(pair) == 1: ! tup = (None, name, None) else: ! tup = pair+[None] # prefix is not implemented yet! ! self._cont_handler.startElement(tup, xmlreader.AttributesImpl(attrs, None)) --- 134,153 ---- return self._parser.GetBase() # event handlers def start_element(self, name, attrs): ! self._cont_handler.startElement(name, name, xmlreader.AttributesImpl(attrs, attrs)) def end_element(self, name): ! self._cont_handler.endElement( name, name ) def start_element_ns(self, name, attrs): pair = split(name) if len(pair) == 1: ! tup = (None, name ) else: ! tup = pair ! self._cont_handler.startElement(tup, None, xmlreader.AttributesImpl(attrs, None)) *************** *** 162,170 **** name = pair+[None] # prefix is not implemented yet! ! self._cont_handler.endElement(name) def processing_instruction(self, target, data): self._cont_handler.processingInstruction(target, data) def character_data(self, data): self._cont_handler.characters(data) --- 159,169 ---- name = pair+[None] # prefix is not implemented yet! ! self._cont_handler.endElement(name, None) + # this is not used def processing_instruction(self, target, data): self._cont_handler.processingInstruction(target, data) + # this is not used def character_data(self, data): self._cont_handler.characters(data) From python-dev@python.org Tue Jul 4 05:15:55 2000 From: python-dev@python.org (Fred L. Drake) Date: Mon, 3 Jul 2000 21:15:55 -0700 Subject: [Python-checkins] CVS: python/dist/src Makefile.in,1.90,1.91 Message-ID: <200007040415.VAA29247@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src In directory slayer.i.sourceforge.net:/tmp/cvs-serv29240 Modified Files: Makefile.in Log Message: libinstall: For the first bytecode compilation pass, use -tt instead of -t. This ensures that each installation from source is checked for compliance. This is needed to make sure .py files in the various Lib/plat-foo/ directories are tested even if the core developers do not have access to the corresponding platforms. Index: Makefile.in =================================================================== RCS file: /cvsroot/python/python/dist/src/Makefile.in,v retrieving revision 1.90 retrieving revision 1.91 diff -C2 -r1.90 -r1.91 *** Makefile.in 2000/07/01 00:13:10 1.90 --- Makefile.in 2000/07/04 04:15:53 1.91 *************** *** 329,333 **** done PYTHONPATH=$(LIBDEST) \ ! ./python$(EXE) -t $(LIBDEST)/compileall.py $(LIBDEST) PYTHONPATH=$(LIBDEST) \ ./python$(EXE) -O $(LIBDEST)/compileall.py $(LIBDEST) --- 329,333 ---- done PYTHONPATH=$(LIBDEST) \ ! ./python$(EXE) -tt $(LIBDEST)/compileall.py $(LIBDEST) PYTHONPATH=$(LIBDEST) \ ./python$(EXE) -O $(LIBDEST)/compileall.py $(LIBDEST) From python-dev@python.org Tue Jul 4 08:10:08 2000 From: python-dev@python.org (Vladimir Marangozov) Date: Tue, 4 Jul 2000 09:10:08 +0200 (CEST) Subject: [Python-checkins] CVS: python/dist/src/Python bltinmodule.c,2.165,2.166 codecs.c,2.8,2.9 compile.c,2.112,2.113 modsupport.c,2.45 In-Reply-To: <200007032139.OAA29276@slayer.i.sourceforge.net> from "Jack Jansen" at Jul 03, 2000 02:39:49 PM Message-ID: <200007040710.JAA16635@python.inrialpes.fr> This HAVE_LIMITS_H define spans over several files already. Why not putting it in Python.h and cleanup the rest? Jack Jansen wrote: > > Update of /cvsroot/python/python/dist/src/Python > In directory slayer.i.sourceforge.net:/tmp/cvs-serv29235/Python > > Modified Files: > bltinmodule.c codecs.c compile.c modsupport.c > Log Message: > Include limits.h if we have it. > > > Index: bltinmodule.c > =================================================================== > RCS file: /cvsroot/python/python/dist/src/Python/bltinmodule.c,v > retrieving revision 2.165 > retrieving revision 2.166 > diff -C2 -r2.165 -r2.166 > *** bltinmodule.c 2000/06/30 23:58:05 2.165 > --- bltinmodule.c 2000/07/03 21:39:47 2.166 > *************** > *** 24,27 **** > --- 24,30 ---- > #include > #endif > + #ifdef HAVE_LIMITS_H > + #include > + #endif > > /* Forward */ > > Index: codecs.c > =================================================================== > RCS file: /cvsroot/python/python/dist/src/Python/codecs.c,v > retrieving revision 2.8 > retrieving revision 2.9 > diff -C2 -r2.8 -r2.9 > *** codecs.c 2000/06/29 14:50:15 2.8 > --- codecs.c 2000/07/03 21:39:47 2.9 > *************** > *** 11,14 **** > --- 11,17 ---- > #include "Python.h" > #include > + #ifdef HAVE_LIMITS_H > + #include > + #endif > > /* --- Globals ------------------------------------------------------------ */ > > Index: compile.c > =================================================================== > RCS file: /cvsroot/python/python/dist/src/Python/compile.c,v > retrieving revision 2.112 > retrieving revision 2.113 > diff -C2 -r2.112 -r2.113 > *** compile.c 2000/06/30 23:58:06 2.112 > --- compile.c 2000/07/03 21:39:47 2.113 > *************** > *** 34,37 **** > --- 34,40 ---- > > #include > + #ifdef HAVE_LIMITS_H > + #include > + #endif > > /* Three symbols from graminit.h are also defined in Python.h, with > > Index: modsupport.c > =================================================================== > RCS file: /cvsroot/python/python/dist/src/Python/modsupport.c,v > retrieving revision 2.45 > retrieving revision 2.46 > diff -C2 -r2.45 -r2.46 > *** modsupport.c 2000/06/30 23:58:06 2.45 > --- modsupport.c 2000/07/03 21:39:47 2.46 > *************** > *** 12,15 **** > --- 12,18 ---- > > #include "Python.h" > + #ifdef HAVE_LIMITS_H > + #include > + #endif > > #ifdef MPW /* MPW pushes 'extended' for float and double types with varargs */ > > > _______________________________________________ > Python-checkins mailing list > Python-checkins@python.org > http://www.python.org/mailman/listinfo/python-checkins > -- Vladimir MARANGOZOV | Vladimir.Marangozov@inrialpes.fr http://sirac.inrialpes.fr/~marangoz | tel:(+33-4)76615277 fax:76615252 From python-dev@python.org Tue Jul 4 10:51:10 2000 From: python-dev@python.org (M.-A. Lemburg) Date: Tue, 4 Jul 2000 02:51:10 -0700 Subject: [Python-checkins] CVS: python/dist/src/Objects unicodeobject.c,2.33,2.34 Message-ID: <200007040951.CAA16669@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Objects In directory slayer.i.sourceforge.net:/tmp/cvs-serv16660/Objects Modified Files: unicodeobject.c Log Message: Bill Tutt: Make unicode_compare a true UTF-16 compare function (includes support for surrogates). Index: unicodeobject.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Objects/unicodeobject.c,v retrieving revision 2.33 retrieving revision 2.34 diff -C2 -r2.33 -r2.34 *** unicodeobject.c 2000/06/30 14:58:20 2.33 --- unicodeobject.c 2000/07/04 09:51:07 2.34 *************** *** 3046,3053 **** --- 3046,3066 ---- } + /* speedy UTF-16 code point order comparison */ + /* gleaned from: */ + /* http://www-4.ibm.com/software/developer/library/utf16.html?dwzone=unicode */ + + static unsigned short utf16Fixup[32] = + { + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0x2000, 0xf800, 0xf800, 0xf800, 0xf800 + }; + static int unicode_compare(PyUnicodeObject *str1, PyUnicodeObject *str2) { int len1, len2; + Py_UNICODE *s1 = str1->str; Py_UNICODE *s2 = str2->str; *************** *** 3055,3065 **** len1 = str1->length; len2 = str2->length; ! while (len1 > 0 && len2 > 0) { ! int cmp = (*s1++) - (*s2++); ! if (cmp) ! /* This should make Christian happy! */ ! return (cmp < 0) ? -1 : (cmp != 0); ! len1--, len2--; } --- 3068,3088 ---- len1 = str1->length; len2 = str2->length; ! while (len1 > 0 && len2 > 0) { ! unsigned short c1, c2; /* 16 bits */ ! int diff; /* 32 bits */ ! ! c1 = *s1++; ! c2 = *s2++; ! if (c1 > (1<<11) * 26) ! c1 += utf16Fixup[c1>>11]; ! if (c2 > (1<<11) * 26) ! c2 += utf16Fixup[c2>>11]; ! ! /* now c1 and c2 are in UTF-32-compatible order */ ! diff = (int)c1 - (int)c2; ! if (diff) ! return (diff < 0) ? -1 : (diff != 0); ! len1--; len2--; } From python-dev@python.org Tue Jul 4 15:17:36 2000 From: python-dev@python.org (M.-A. Lemburg) Date: Tue, 4 Jul 2000 07:17:36 -0700 Subject: [Python-checkins] CVS: python/dist/src/Modules signalmodule.c,2.43,2.44 Message-ID: <200007041417.HAA12986@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Modules In directory slayer.i.sourceforge.net:/tmp/cvs-serv12979/Modules Modified Files: signalmodule.c Log Message: Fixed symbol search for defining NSIG. It now also checks _NSIG which some C libs define (e.g. glibc). Added a fallback default value for NSIG which hopefully provides enough room for signal slots. Index: signalmodule.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/signalmodule.c,v retrieving revision 2.43 retrieving revision 2.44 diff -C2 -r2.43 -r2.44 *** signalmodule.c 2000/06/30 23:58:05 2.43 --- signalmodule.c 2000/07/04 14:17:33 2.44 *************** *** 36,44 **** #ifndef NSIG ! #ifdef _SIGMAX ! #define NSIG (_SIGMAX + 1) /* For QNX */ ! #else ! #define NSIG (SIGMAX + 1) /* for djgpp */ ! #endif #endif --- 36,48 ---- #ifndef NSIG ! # if defined(_NSIG) ! # define NSIG _NSIG /* For BSD/SysV */ ! # elif defined(_SIGMAX) ! # define NSIG (_SIGMAX + 1) /* For QNX */ ! # elif defined(SIGMAX) ! # define NSIG (SIGMAX + 1) /* For djgpp */ ! # else ! # define NSIG 64 /* Use a reasonable default value */ ! # endif #endif From python-dev@python.org Tue Jul 4 15:53:14 2000 From: python-dev@python.org (Sjoerd Mullender) Date: Tue, 4 Jul 2000 07:53:14 -0700 Subject: [Python-checkins] CVS: python/dist/src/Lib xmllib.py,1.19,1.20 Message-ID: <200007041453.HAA15566@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Lib In directory slayer.i.sourceforge.net:/tmp/cvs-serv15231 Modified Files: xmllib.py Log Message: 2 fixes plus one extension: - Actually count the linefeeds in a the CDATA content. - Don't call the endtag handler for an unmatched endtag (this makes the base class simpler since it doesn't have to deal with unopened endtags). - If the __init__ method is called with keyword argument translate_attribute_references=0, don't attempt to translate character and entity references in attribute values. Index: xmllib.py =================================================================== RCS file: /cvsroot/python/python/dist/src/Lib/xmllib.py,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -r1.19 -r1.20 *** xmllib.py 2000/06/28 14:48:01 1.19 --- xmllib.py 2000/07/04 14:53:12 1.20 *************** *** 91,94 **** --- 91,95 ---- __map_case = 0 __accept_utf8 = 0 + __translate_attribute_references = 1 # Interface -- initialize and reset this instance *************** *** 103,106 **** --- 104,109 ---- if kw.has_key('accept_utf8'): self.__accept_utf8 = kw['accept_utf8'] + if kw.has_key('translate_attribute_references'): + self.__translate_attribute_references = kw['translate_attribute_references'] self.reset() *************** *** 172,175 **** --- 175,180 ---- # Interface -- translate references def translate_references(self, data, all = 1): + if not self.__translate_attribute_references: + return data i = 0 while 1: *************** *** 278,282 **** k = self.parse_cdata(i) if k < 0: break ! self.lineno = self.lineno + string.count(rawdata[i:i], '\n') i = k continue --- 283,287 ---- k = self.parse_cdata(i) if k < 0: break ! self.lineno = self.lineno + string.count(rawdata[i:k], '\n') i = k continue *************** *** 692,700 **** if found == -1: self.syntax_error('unopened end tag') - method = self.elements.get(tag, (None, None))[1] - if method is not None: - self.handle_endtag(tag, method) - else: - self.unknown_endtag(tag) return while len(self.stack) > found: --- 697,700 ---- From python-dev@python.org Tue Jul 4 15:53:45 2000 From: python-dev@python.org (A.M. Kuchling) Date: Tue, 4 Jul 2000 07:53:45 -0700 Subject: [Python-checkins] CVS: python/dist/src/Modules pyexpat.c,2.6,2.7 Message-ID: <200007041453.HAA15606@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Modules In directory slayer.i.sourceforge.net:/tmp/cvs-serv15552 Modified Files: pyexpat.c Log Message: Fixes for compilation problems on Tru64 reported by Mark Favas Index: pyexpat.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/pyexpat.c,v retrieving revision 2.6 retrieving revision 2.7 diff -C2 -r2.6 -r2.7 *** pyexpat.c 2000/06/30 23:50:38 2.6 --- pyexpat.c 2000/07/04 14:53:43 2.7 *************** *** 67,71 **** }; ! staticforward struct HandlerInfo handler_info[]; /* Convert an array of attributes and their values into a Python dict */ --- 67,71 ---- }; ! staticforward struct HandlerInfo handler_info[64]; /* Convert an array of attributes and their values into a Python dict */ *************** *** 985,1031 **** {{"StartElementHandler", pyxml_SetStartElementHandler, ! my_StartElementHandler}, {"EndElementHandler", pyxml_SetEndElementHandler, ! my_EndElementHandler}, {"ProcessingInstructionHandler", (xmlhandlersetter)XML_SetProcessingInstructionHandler, ! my_ProcessingInstructionHandler}, {"CharacterDataHandler", (xmlhandlersetter)XML_SetCharacterDataHandler, ! my_CharacterDataHandler}, {"UnparsedEntityDeclHandler", (xmlhandlersetter)XML_SetUnparsedEntityDeclHandler, ! my_UnparsedEntityDeclHandler }, {"NotationDeclHandler", (xmlhandlersetter)XML_SetNotationDeclHandler, ! my_NotationDeclHandler }, {"StartNamespaceDeclHandler", pyxml_SetStartNamespaceDeclHandler, ! my_StartNamespaceDeclHandler }, {"EndNamespaceDeclHandler", pyxml_SetEndNamespaceDeclHandler, ! my_EndNamespaceDeclHandler }, {"CommentHandler", (xmlhandlersetter)XML_SetCommentHandler, ! my_CommentHandler}, {"StartCdataSectionHandler", pyxml_SetStartCdataSection, ! my_StartCdataSectionHandler}, {"EndCdataSectionHandler", pyxml_SetEndCdataSection, ! my_EndCdataSectionHandler}, {"DefaultHandler", (xmlhandlersetter)XML_SetDefaultHandler, ! my_DefaultHandler}, {"DefaultHandlerExpand", (xmlhandlersetter)XML_SetDefaultHandlerExpand, ! my_DefaultHandlerExpandHandler}, {"NotStandaloneHandler", (xmlhandlersetter)XML_SetNotStandaloneHandler, ! my_NotStandaloneHandler}, {"ExternalEntityRefHandler", (xmlhandlersetter)XML_SetExternalEntityRefHandler, ! my_ExternalEntityRefHandler }, {NULL, NULL, NULL } /* sentinel */ --- 985,1031 ---- {{"StartElementHandler", pyxml_SetStartElementHandler, ! (xmlhandler)my_StartElementHandler}, {"EndElementHandler", pyxml_SetEndElementHandler, ! (xmlhandler)my_EndElementHandler}, {"ProcessingInstructionHandler", (xmlhandlersetter)XML_SetProcessingInstructionHandler, ! (xmlhandler)my_ProcessingInstructionHandler}, {"CharacterDataHandler", (xmlhandlersetter)XML_SetCharacterDataHandler, ! (xmlhandler)my_CharacterDataHandler}, {"UnparsedEntityDeclHandler", (xmlhandlersetter)XML_SetUnparsedEntityDeclHandler, ! (xmlhandler)my_UnparsedEntityDeclHandler }, {"NotationDeclHandler", (xmlhandlersetter)XML_SetNotationDeclHandler, ! (xmlhandler)my_NotationDeclHandler }, {"StartNamespaceDeclHandler", pyxml_SetStartNamespaceDeclHandler, ! (xmlhandler)my_StartNamespaceDeclHandler }, {"EndNamespaceDeclHandler", pyxml_SetEndNamespaceDeclHandler, ! (xmlhandler)my_EndNamespaceDeclHandler }, {"CommentHandler", (xmlhandlersetter)XML_SetCommentHandler, ! (xmlhandler)my_CommentHandler}, {"StartCdataSectionHandler", pyxml_SetStartCdataSection, ! (xmlhandler)my_StartCdataSectionHandler}, {"EndCdataSectionHandler", pyxml_SetEndCdataSection, ! (xmlhandler)my_EndCdataSectionHandler}, {"DefaultHandler", (xmlhandlersetter)XML_SetDefaultHandler, ! (xmlhandler)my_DefaultHandler}, {"DefaultHandlerExpand", (xmlhandlersetter)XML_SetDefaultHandlerExpand, ! (xmlhandler)my_DefaultHandlerExpandHandler}, {"NotStandaloneHandler", (xmlhandlersetter)XML_SetNotStandaloneHandler, ! (xmlhandler)my_NotStandaloneHandler}, {"ExternalEntityRefHandler", (xmlhandlersetter)XML_SetExternalEntityRefHandler, ! (xmlhandler)my_ExternalEntityRefHandler }, {NULL, NULL, NULL } /* sentinel */ From python-dev@python.org Tue Jul 4 18:44:50 2000 From: python-dev@python.org (Tim Peters) Date: Tue, 4 Jul 2000 10:44:50 -0700 Subject: [Python-checkins] CVS: python/dist/src/Include dictobject.h,2.18,2.19 Message-ID: <200007041744.KAA12843@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Include In directory slayer.i.sourceforge.net:/tmp/cvs-serv12647/python/dist/src/Include Modified Files: dictobject.h Log Message: Removed Py_PROTO and switched to ANSI C declarations in the dict implementation. This was really to test whether my new CVS+SSH setup is more usable than the old one -- and turns out it is (for whatever reason, it was impossible to do a commit before that involved more than one directory). Index: dictobject.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/dictobject.h,v retrieving revision 2.18 retrieving revision 2.19 diff -C2 -r2.18 -r2.19 *** dictobject.h 2000/06/30 23:58:04 2.18 --- dictobject.h 2000/07/04 17:44:48 2.19 *************** *** 21,41 **** #define PyDict_Check(op) ((op)->ob_type == &PyDict_Type) ! extern DL_IMPORT(PyObject *) PyDict_New Py_PROTO((void)); ! extern DL_IMPORT(PyObject *) PyDict_GetItem Py_PROTO((PyObject *mp, PyObject *key)); ! extern DL_IMPORT(int) PyDict_SetItem Py_PROTO((PyObject *mp, PyObject *key, PyObject *item)); ! extern DL_IMPORT(int) PyDict_DelItem Py_PROTO((PyObject *mp, PyObject *key)); ! extern DL_IMPORT(void) PyDict_Clear Py_PROTO((PyObject *mp)); extern DL_IMPORT(int) PyDict_Next ! Py_PROTO((PyObject *mp, int *pos, PyObject **key, PyObject **value)); ! extern DL_IMPORT(PyObject *) PyDict_Keys Py_PROTO((PyObject *mp)); ! extern DL_IMPORT(PyObject *) PyDict_Values Py_PROTO((PyObject *mp)); ! extern DL_IMPORT(PyObject *) PyDict_Items Py_PROTO((PyObject *mp)); ! extern DL_IMPORT(int) PyDict_Size Py_PROTO((PyObject *mp)); ! extern DL_IMPORT(PyObject *) PyDict_Copy Py_PROTO((PyObject *mp)); ! extern DL_IMPORT(PyObject *) PyDict_GetItemString Py_PROTO((PyObject *dp, char *key)); ! extern DL_IMPORT(int) PyDict_SetItemString Py_PROTO((PyObject *dp, char *key, PyObject *item)); ! extern DL_IMPORT(int) PyDict_DelItemString Py_PROTO((PyObject *dp, char *key)); #ifdef __cplusplus --- 21,41 ---- #define PyDict_Check(op) ((op)->ob_type == &PyDict_Type) ! extern DL_IMPORT(PyObject *) PyDict_New(void); ! extern DL_IMPORT(PyObject *) PyDict_GetItem(PyObject *mp, PyObject *key); ! extern DL_IMPORT(int) PyDict_SetItem(PyObject *mp, PyObject *key, PyObject *item); ! extern DL_IMPORT(int) PyDict_DelItem(PyObject *mp, PyObject *key); ! extern DL_IMPORT(void) PyDict_Clear(PyObject *mp); extern DL_IMPORT(int) PyDict_Next ! (PyObject *mp, int *pos, PyObject **key, PyObject **value); ! extern DL_IMPORT(PyObject *) PyDict_Keys(PyObject *mp); ! extern DL_IMPORT(PyObject *) PyDict_Values(PyObject *mp); ! extern DL_IMPORT(PyObject *) PyDict_Items(PyObject *mp); ! extern DL_IMPORT(int) PyDict_Size(PyObject *mp); ! extern DL_IMPORT(PyObject *) PyDict_Copy(PyObject *mp); ! extern DL_IMPORT(PyObject *) PyDict_GetItemString(PyObject *dp, char *key); ! extern DL_IMPORT(int) PyDict_SetItemString(PyObject *dp, char *key, PyObject *item); ! extern DL_IMPORT(int) PyDict_DelItemString(PyObject *dp, char *key); #ifdef __cplusplus From python-dev@python.org Tue Jul 4 18:44:50 2000 From: python-dev@python.org (Tim Peters) Date: Tue, 4 Jul 2000 10:44:50 -0700 Subject: [Python-checkins] CVS: python/dist/src/Objects dictobject.c,2.58,2.59 Message-ID: <200007041744.KAA12847@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Objects In directory slayer.i.sourceforge.net:/tmp/cvs-serv12647/python/dist/src/Objects Modified Files: dictobject.c Log Message: Removed Py_PROTO and switched to ANSI C declarations in the dict implementation. This was really to test whether my new CVS+SSH setup is more usable than the old one -- and turns out it is (for whatever reason, it was impossible to do a commit before that involved more than one directory). Index: dictobject.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Objects/dictobject.c,v retrieving revision 2.58 retrieving revision 2.59 diff -C2 -r2.58 -r2.59 *** dictobject.c 2000/07/01 01:00:38 2.58 --- dictobject.c 2000/07/04 17:44:48 2.59 *************** *** 131,140 **** Jyrki Alakuijala and Vladimir Marangozov.) */ - static dictentry *lookdict Py_PROTO((dictobject *, PyObject *, long)); static dictentry * ! lookdict(mp, key, hash) ! dictobject *mp; ! PyObject *key; ! register long hash; { register int i; --- 131,136 ---- Jyrki Alakuijala and Vladimir Marangozov.) */ static dictentry * ! lookdict(dictobject *mp, PyObject *key, register long hash) { register int i; *************** *** 200,211 **** Eats a reference to key and one to value. */ - static void insertdict - Py_PROTO((dictobject *, PyObject *, long, PyObject *)); static void ! insertdict(mp, key, hash, value) ! register dictobject *mp; ! PyObject *key; ! long hash; ! PyObject *value; { PyObject *old_value; --- 196,201 ---- Eats a reference to key and one to value. */ static void ! insertdict(register dictobject *mp, PyObject *key, long hash, PyObject *value) { PyObject *old_value; *************** *** 235,243 **** actually be smaller than the old one. */ - static int dictresize Py_PROTO((dictobject *, int)); static int ! dictresize(mp, minused) ! dictobject *mp; ! int minused; { register int oldsize = mp->ma_size; --- 225,230 ---- actually be smaller than the old one. */ static int ! dictresize(dictobject *mp, int minused) { register int oldsize = mp->ma_size; *************** *** 288,294 **** PyObject * ! PyDict_GetItem(op, key) ! PyObject *op; ! PyObject *key; { long hash; --- 275,279 ---- PyObject * ! PyDict_GetItem(PyObject *op, PyObject *key) { long hash; *************** *** 313,320 **** int ! PyDict_SetItem(op, key, value) ! register PyObject *op; ! PyObject *key; ! PyObject *value; { register dictobject *mp; --- 298,302 ---- int ! PyDict_SetItem(register PyObject *op, PyObject *key, PyObject *value) { register dictobject *mp; *************** *** 361,367 **** int ! PyDict_DelItem(op, key) ! PyObject *op; ! PyObject *key; { register dictobject *mp; --- 343,347 ---- int ! PyDict_DelItem(PyObject *op, PyObject *key) { register dictobject *mp; *************** *** 404,409 **** void ! PyDict_Clear(op) ! PyObject *op; { int i, n; --- 384,388 ---- void ! PyDict_Clear(PyObject *op) { int i, n; *************** *** 427,435 **** int ! PyDict_Next(op, ppos, pkey, pvalue) ! PyObject *op; ! int *ppos; ! PyObject **pkey; ! PyObject **pvalue; { int i; --- 406,410 ---- int ! PyDict_Next(PyObject *op, int *ppos, PyObject **pkey, PyObject **pvalue) { int i; *************** *** 456,461 **** static void ! dict_dealloc(mp) ! register dictobject *mp; { register int i; --- 431,435 ---- static void ! dict_dealloc(register dictobject *mp) { register int i; *************** *** 479,486 **** static int ! dict_print(mp, fp, flags) ! register dictobject *mp; ! register FILE *fp; ! register int flags; { register int i; --- 453,457 ---- static int ! dict_print(register dictobject *mp, register FILE *fp, register int flags) { register int i; *************** *** 519,524 **** static PyObject * ! dict_repr(mp) ! dictobject *mp; { auto PyObject *v; --- 490,494 ---- static PyObject * ! dict_repr(dictobject *mp) { auto PyObject *v; *************** *** 556,561 **** static int ! dict_length(mp) ! dictobject *mp; { return mp->ma_used; --- 526,530 ---- static int ! dict_length(dictobject *mp) { return mp->ma_used; *************** *** 563,569 **** static PyObject * ! dict_subscript(mp, key) ! dictobject *mp; ! register PyObject *key; { PyObject *v; --- 532,536 ---- static PyObject * ! dict_subscript(dictobject *mp, register PyObject *key) { PyObject *v; *************** *** 591,597 **** static int ! dict_ass_sub(mp, v, w) ! dictobject *mp; ! PyObject *v, *w; { if (w == NULL) --- 558,562 ---- static int ! dict_ass_sub(dictobject *mp, PyObject *v, PyObject *w) { if (w == NULL) *************** *** 608,614 **** static PyObject * ! dict_keys(mp, args) ! register dictobject *mp; ! PyObject *args; { register PyObject *v; --- 573,577 ---- static PyObject * ! dict_keys(register dictobject *mp, PyObject *args) { register PyObject *v; *************** *** 631,637 **** static PyObject * ! dict_values(mp, args) ! register dictobject *mp; ! PyObject *args; { register PyObject *v; --- 594,598 ---- static PyObject * ! dict_values(register dictobject *mp, PyObject *args) { register PyObject *v; *************** *** 654,660 **** static PyObject * ! dict_items(mp, args) ! register dictobject *mp; ! PyObject *args; { register PyObject *v; --- 615,619 ---- static PyObject * ! dict_items(register dictobject *mp, PyObject *args) { register PyObject *v; *************** *** 686,692 **** static PyObject * ! dict_update(mp, args) ! register dictobject *mp; ! PyObject *args; { register int i; --- 645,649 ---- static PyObject * ! dict_update(register dictobject *mp, PyObject *args) { register int i; *************** *** 719,725 **** static PyObject * ! dict_copy(mp, args) ! register dictobject *mp; ! PyObject *args; { if (!PyArg_Parse(args, "")) --- 676,680 ---- static PyObject * ! dict_copy(register dictobject *mp, PyObject *args) { if (!PyArg_Parse(args, "")) *************** *** 729,734 **** PyObject * ! PyDict_Copy(o) ! PyObject *o; { register dictobject *mp; --- 684,688 ---- PyObject * ! PyDict_Copy(PyObject *o) { register dictobject *mp; *************** *** 762,767 **** int ! PyDict_Size(mp) ! PyObject *mp; { if (mp == NULL || !PyDict_Check(mp)) { --- 716,720 ---- int ! PyDict_Size(PyObject *mp) { if (mp == NULL || !PyDict_Check(mp)) { *************** *** 773,778 **** PyObject * ! PyDict_Keys(mp) ! PyObject *mp; { if (mp == NULL || !PyDict_Check(mp)) { --- 726,730 ---- PyObject * ! PyDict_Keys(PyObject *mp) { if (mp == NULL || !PyDict_Check(mp)) { *************** *** 784,789 **** PyObject * ! PyDict_Values(mp) ! PyObject *mp; { if (mp == NULL || !PyDict_Check(mp)) { --- 736,740 ---- PyObject * ! PyDict_Values(PyObject *mp) { if (mp == NULL || !PyDict_Check(mp)) { *************** *** 795,800 **** PyObject * ! PyDict_Items(mp) ! PyObject *mp; { if (mp == NULL || !PyDict_Check(mp)) { --- 746,750 ---- PyObject * ! PyDict_Items(PyObject *mp) { if (mp == NULL || !PyDict_Check(mp)) { *************** *** 814,821 **** static PyObject * ! characterize(a, b, pval) ! dictobject *a; ! dictobject *b; ! PyObject **pval; { PyObject *diff = NULL; --- 764,768 ---- static PyObject * ! characterize(dictobject *a, dictobject *b, PyObject **pval) { PyObject *diff = NULL; *************** *** 844,849 **** static int ! dict_compare(a, b) ! dictobject *a, *b; { PyObject *adiff, *bdiff, *aval, *bval; --- 791,795 ---- static int ! dict_compare(dictobject *a, dictobject *b) { PyObject *adiff, *bdiff, *aval, *bval; *************** *** 874,879 **** static int ! dict_compare(a, b) ! dictobject *a, *b; { PyObject *akeys, *bkeys; --- 820,824 ---- static int ! dict_compare(dictobject *a, dictobject *b) { PyObject *akeys, *bkeys; *************** *** 953,959 **** static PyObject * ! dict_has_key(mp, args) ! register dictobject *mp; ! PyObject *args; { PyObject *key; --- 898,902 ---- static PyObject * ! dict_has_key(register dictobject *mp, PyObject *args) { PyObject *key; *************** *** 976,982 **** static PyObject * ! dict_get(mp, args) ! register dictobject *mp; ! PyObject *args; { PyObject *key; --- 919,923 ---- static PyObject * ! dict_get(register dictobject *mp, PyObject *args) { PyObject *key; *************** *** 1010,1016 **** static PyObject * ! dict_clear(mp, args) ! register dictobject *mp; ! PyObject *args; { if (!PyArg_NoArgs(args)) --- 951,955 ---- static PyObject * ! dict_clear(register dictobject *mp, PyObject *args) { if (!PyArg_NoArgs(args)) *************** *** 1059,1065 **** static PyObject * ! dict_getattr(mp, name) ! dictobject *mp; ! char *name; { return Py_FindMethod(mapp_methods, (PyObject *)mp, name); --- 998,1002 ---- static PyObject * ! dict_getattr(dictobject *mp, char *name) { return Py_FindMethod(mapp_methods, (PyObject *)mp, name); *************** *** 1096,1102 **** PyObject * ! PyDict_GetItemString(v, key) ! PyObject *v; ! char *key; { PyObject *kv, *rv; --- 1033,1037 ---- PyObject * ! PyDict_GetItemString(PyObject *v, char *key) { PyObject *kv, *rv; *************** *** 1110,1117 **** int ! PyDict_SetItemString(v, key, item) ! PyObject *v; ! char *key; ! PyObject *item; { PyObject *kv; --- 1045,1049 ---- int ! PyDict_SetItemString(PyObject *v, char *key, PyObject *item) { PyObject *kv; *************** *** 1127,1133 **** int ! PyDict_DelItemString(v, key) ! PyObject *v; ! char *key; { PyObject *kv; --- 1059,1063 ---- int ! PyDict_DelItemString(PyObject *v, char *key) { PyObject *kv; From python-dev@python.org Tue Jul 4 19:48:49 2000 From: python-dev@python.org (Fred L. Drake) Date: Tue, 4 Jul 2000 11:48:49 -0700 Subject: [Python-checkins] CVS: python/dist/src/Modules parsermodule.c,2.42,2.43 Message-ID: <200007041848.LAA23784@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Modules In directory slayer.i.sourceforge.net:/tmp/cvs-serv23771 Modified Files: parsermodule.c Log Message: Remove warning about local variable possibly being using uninitialized; noted by Marc-Andre Lemburg . Index: parsermodule.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/parsermodule.c,v retrieving revision 2.42 retrieving revision 2.43 diff -C2 -r2.42 -r2.43 *** parsermodule.c 2000/07/03 18:07:43 2.42 --- parsermodule.c 2000/07/04 18:48:46 2.43 *************** *** 2087,2091 **** { int nch = NCH(tree); ! int i, ok; node *last; --- 2087,2091 ---- { int nch = NCH(tree); ! int i, ok = 1; node *last; From python-dev@python.org Wed Jul 5 00:51:33 2000 From: python-dev@python.org (Fred L. Drake) Date: Tue, 4 Jul 2000 16:51:33 -0700 Subject: [Python-checkins] CVS: python/dist/src/Modules pyexpat.c,2.7,2.8 Message-ID: <200007042351.QAA13057@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Modules In directory slayer.i.sourceforge.net:/tmp/cvs-serv13050 Modified Files: pyexpat.c Log Message: pyexpat.errors is a *strange* module! It gets initialized when pyexpat is imported, and is only accessible as an attribute of pyexpat; it cannot be imported itself. This allows it to at least be importable after pyexpat itself has been imported by adding it to sys.modules, so it is not quite as strange. This arrangement needs to be better thought out. Index: pyexpat.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/pyexpat.c,v retrieving revision 2.7 retrieving revision 2.8 diff -C2 -r2.7 -r2.8 *** pyexpat.c 2000/07/04 14:53:43 2.7 --- pyexpat.c 2000/07/04 23:51:31 2.8 *************** *** 841,853 **** initpyexpat(){ PyObject *m, *d; ! char *rev="$Revision$"; PyObject *errors_module, *errors_dict; ! Xmlparsetype.ob_type = &PyType_Type; /* Create the module and add the functions */ m = Py_InitModule4("pyexpat", pyexpat_methods, ! pyexpat_module_documentation, ! (PyObject*)NULL,PYTHON_API_VERSION); /* Add some symbolic constants to the module */ --- 841,854 ---- initpyexpat(){ PyObject *m, *d; ! char *rev = "$Revision$"; PyObject *errors_module, *errors_dict; + PyObject *sys_modules; ! Xmlparsetype.ob_type = &PyType_Type; /* Create the module and add the functions */ m = Py_InitModule4("pyexpat", pyexpat_methods, ! pyexpat_module_documentation, ! (PyObject*)NULL, PYTHON_API_VERSION); /* Add some symbolic constants to the module */ *************** *** 856,865 **** PyDict_SetItemString(d, "error", ErrorObject); ! PyDict_SetItemString(d,"__version__", PyString_FromStringAndSize(rev+11, strlen(rev+11)-2)); ! errors_module=PyModule_New( "errors" ); ! PyDict_SetItemString(d,"errors", errors_module ); /* XXX When Expat supports some way of figuring out how it was --- 857,868 ---- PyDict_SetItemString(d, "error", ErrorObject); ! PyDict_SetItemString(d, "__version__", PyString_FromStringAndSize(rev+11, strlen(rev+11)-2)); ! sys_modules = PySys_GetObject("modules"); ! errors_module = PyModule_New("pyexpat.errors"); ! PyDict_SetItemString(d, "errors", errors_module); ! PyDict_SetItemString(sys_modules, "pyexpat.errors", errors_module); /* XXX When Expat supports some way of figuring out how it was *************** *** 868,879 **** */ PyDict_SetItemString(d, "native_encoding", ! PyString_FromString("UTF-8") ); ! ! errors_dict=PyModule_GetDict( errors_module ); #define MYCONST(name) \ PyDict_SetItemString(errors_dict, #name, \ ! PyString_FromString( XML_ErrorString(name))) ! MYCONST(XML_ERROR_NO_MEMORY); MYCONST(XML_ERROR_SYNTAX); --- 871,881 ---- */ PyDict_SetItemString(d, "native_encoding", ! PyString_FromString("UTF-8")); ! errors_dict = PyModule_GetDict(errors_module); #define MYCONST(name) \ PyDict_SetItemString(errors_dict, #name, \ ! PyString_FromString(XML_ErrorString(name))) ! MYCONST(XML_ERROR_NO_MEMORY); MYCONST(XML_ERROR_SYNTAX); *************** *** 895,899 **** MYCONST(XML_ERROR_UNKNOWN_ENCODING); MYCONST(XML_ERROR_INCORRECT_ENCODING); ! /* Check for errors */ if (PyErr_Occurred()) --- 897,901 ---- MYCONST(XML_ERROR_UNKNOWN_ENCODING); MYCONST(XML_ERROR_INCORRECT_ENCODING); ! /* Check for errors */ if (PyErr_Occurred()) *************** *** 1031,1033 **** {NULL, NULL, NULL } /* sentinel */ }; - --- 1033,1034 ---- From python-dev@python.org Wed Jul 5 03:03:37 2000 From: python-dev@python.org (Fred L. Drake) Date: Tue, 4 Jul 2000 19:03:37 -0700 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libpyexpat.tex,1.1,1.2 Message-ID: <200007050203.TAA06866@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Doc/lib In directory slayer.i.sourceforge.net:/tmp/cvs-serv6859 Modified Files: libpyexpat.tex Log Message: Wrapped some long lines. Cleaned up the table of error constants defined in pyexpat.errors; an extra pair of braces had pretty much destroyed the table! (Not sure why.) Moved the pyexpat.errors module documentation into a \section with the proper headers for a module. Index: libpyexpat.tex =================================================================== RCS file: /cvsroot/python/python/dist/src/Doc/lib/libpyexpat.tex,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** libpyexpat.tex 2000/06/11 02:42:07 1.1 --- libpyexpat.tex 2000/07/05 02:03:34 1.2 *************** *** 69,73 **** Parses the contents of the string \var{data}, calling the appropriate handler functions to process the parsed data. \var{isfinal} must be ! true on the final call to this method. \var{data} can be the empty string at any time. \end{methoddesc} --- 69,74 ---- Parses the contents of the string \var{data}, calling the appropriate handler functions to process the parsed data. \var{isfinal} must be ! true on the final call to this method. \var{data} can be the empty ! string at any time. \end{methoddesc} *************** *** 117,121 **** Here is the list of handlers that can be set. To set a handler on an ! \class{xmlparser} object \var{o}, use \code{\var{o}.\var{handlername} = \var{func}}. \var{handlername} must be taken from the following list, and \var{func} must be a callable object accepting the correct number of arguments. The arguments are all strings, unless otherwise stated. \begin{methoddesc}{StartElementHandler}{name, attributes} --- 118,126 ---- Here is the list of handlers that can be set. To set a handler on an ! \class{xmlparser} object \var{o}, use ! \code{\var{o}.\var{handlername} = \var{func}}. \var{handlername} must ! be taken from the following list, and \var{func} must be a callable ! object accepting the correct number of arguments. The arguments are ! all strings, unless otherwise stated. \begin{methoddesc}{StartElementHandler}{name, attributes} *************** *** 188,224 **** ! ! ! \subsection{\module{pyexpat.errors} -- Error constants} ! ! The following table lists the error constants in the ! \module{pyexpat.errors} submodule, available once the \module{pyexpat} module has been imported. ! ! \begin{tableii}{l|l}{code}{Constants}{}{} ! \lineii {XML_ERROR_ASYNC_ENTITY} ! {XML_ERROR_ATTRIBUTE_EXTERNAL_ENTITY_REF} ! \lineii {XML_ERROR_BAD_CHAR_REF} ! {XML_ERROR_BINARY_ENTITY_REF} ! \lineii {XML_ERROR_DUPLICATE_ATTRIBUTE} ! {XML_ERROR_INCORRECT_ENCODING} ! \lineii {XML_ERROR_INVALID_TOKEN} ! {XML_ERROR_JUNK_AFTER_DOC_ELEMENT} ! \lineii {XML_ERROR_MISPLACED_XML_PI} ! {XML_ERROR_NO_ELEMENTS} ! \lineii {XML_ERROR_NO_MEMORY} ! {XML_ERROR_PARAM_ENTITY_REF} ! \lineii {XML_ERROR_PARTIAL_CHAR} ! {XML_ERROR_RECURSIVE_ENTITY_REF} ! \lineii {XML_ERROR_SYNTAX} ! {XML_ERROR_TAG_MISMATCH} ! \lineii {XML_ERROR_UNCLOSED_TOKEN} ! {XML_ERROR_UNDEFINED_ENTITY} ! \lineii {XML_ERROR_UNKNOWN_ENCODING}{} ! \end{tableii} ! ! \subsection{Example} ! ! The following program defines 3 handlers that just print out their arguments. --- 193,199 ---- + \subsection{Example \label{pyexpat-example}} ! The following program defines three handlers that just print out their arguments. *************** *** 261,262 **** --- 236,276 ---- End element: parent \end{verbatim} + + + \section{\module{pyexpat.errors} --- Error constants} + + \declaremodule{builtin}{pyexpat.errors} + \modulesynopsis{Error constants defined for the Expat parser} + \moduleauthor{Paul Prescod}{paul@prescod.net} + \sectionauthor{A.M. Kuchling}{amk1@bigfoot.com} + + The following table lists the error constants in the + \module{pyexpat.errors} submodule, available once the + \refmodule{pyexpat} module has been imported. + + Note that this module cannot be imported directly until + \refmodule{pyexpat} has been imported. + + The following constants are defined: + + \begin{tableii}{l|l}{code}{Constants}{} + \lineii{XML_ERROR_ASYNC_ENTITY} + {XML_ERROR_ATTRIBUTE_EXTERNAL_ENTITY_REF} + \lineii{XML_ERROR_BAD_CHAR_REF} + {XML_ERROR_BINARY_ENTITY_REF} + \lineii{XML_ERROR_DUPLICATE_ATTRIBUTE} + {XML_ERROR_INCORRECT_ENCODING} + \lineii{XML_ERROR_INVALID_TOKEN} + {XML_ERROR_JUNK_AFTER_DOC_ELEMENT} + \lineii{XML_ERROR_MISPLACED_XML_PI} + {XML_ERROR_NO_ELEMENTS} + \lineii{XML_ERROR_NO_MEMORY} + {XML_ERROR_PARAM_ENTITY_REF} + \lineii{XML_ERROR_PARTIAL_CHAR} + {XML_ERROR_RECURSIVE_ENTITY_REF} + \lineii{XML_ERROR_SYNTAX} + {XML_ERROR_TAG_MISMATCH} + \lineii{XML_ERROR_UNCLOSED_TOKEN} + {XML_ERROR_UNDEFINED_ENTITY} + \lineii{XML_ERROR_UNKNOWN_ENCODING}{} + \end{tableii} From python-dev@python.org Wed Jul 5 03:24:41 2000 From: python-dev@python.org (Fred L. Drake) Date: Tue, 4 Jul 2000 19:24:41 -0700 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib markup.tex,NONE,1.1 lib.tex,1.154,1.155 Message-ID: <200007050224.TAA08029@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Doc/lib In directory slayer.i.sourceforge.net:/tmp/cvs-serv8017/lib Modified Files: lib.tex Added Files: markup.tex Log Message: Created a new chapter on structured markup processing, including the existing SGML, HTML, & XML support, and providing a home for the new XML support as it becomes documented. --- NEW FILE --- \chapter{Structured Markup Processing Tools \label{markup}} Python supports a variety of modules to work with various forms of structured data markup. This includes modules to work with the Standard Generalized Markup Language (SGML) and the Hypertext Markup Language (HTML), and several interfaces for working with the Extensible Markup Language (XML). \localmoduletable Index: lib.tex =================================================================== RCS file: /cvsroot/python/python/dist/src/Doc/lib/lib.tex,v retrieving revision 1.154 retrieving revision 1.155 diff -C2 -r1.154 -r1.155 *** lib.tex 2000/06/28 22:05:44 1.154 --- lib.tex 2000/07/05 02:24:38 1.155 *************** *** 216,222 **** \input{netdata} % Internet Data Handling - \input{libsgmllib} - \input{libhtmllib} - \input{libxmllib} \input{libformatter} \input{librfc822} --- 216,219 ---- *************** *** 237,242 **** \input{libnetrc} \input{librobotparser} ! \input{librestricted} \input{librexec} \input{libbastion} --- 234,245 ---- \input{libnetrc} \input{librobotparser} + + \input{markup} % Structured Markup Processing Tools + \input{libsgmllib} + \input{libhtmllib} + \input{libxmllib} + \input{libpyexpat} ! \input{librestricted} % Restricted Execution \input{librexec} \input{libbastion} From python-dev@python.org Wed Jul 5 03:24:41 2000 From: python-dev@python.org (Fred L. Drake) Date: Tue, 4 Jul 2000 19:24:41 -0700 Subject: [Python-checkins] CVS: python/dist/src/Doc Makefile.deps,1.34,1.35 Message-ID: <200007050224.TAA08030@slayer.i.sourceforge.net> Update of /cvsroot/python/python/dist/src/Doc In directory slayer.i.sourceforge.net:/tmp/cvs-serv8017 Modified Files: Makefile.deps Log Message: Created a new chapter on structured markup processing, including the existing SGML, HTML, & XML support, and providing a home for the new XML support as it becomes documented. Index: Makefile.deps =================================================================== RCS file: /cvsroot/python/python/dist/src/Doc/Makefile.deps,v retrieving revision 1.34 retrieving revision 1.35 diff -C2 -r1.34 -r1.35 *** Makefile.deps 2000/06/28 22:03:28 1.34 --- Makefile.deps 2000/07/05 02:24:39 1.35 *************** *** 167,170 **** --- 167,171 ---- ../lib/libdis.tex \ ../lib/libxmllib.tex \ + ../lib/libpyexpat.tex \ ../lib/libqueue.tex \ ../lib/liblocale.tex \ *************** *** 188,191 **** --- 189,193 ---- ../lib/internet.tex \ ../lib/netdata.tex \ + ../lib/markup.tex \ ../lib/libpycompile.tex \ ../lib/libcompileall.tex \ From python-dev@python.org Wed Jul 5 04:06:49 2000 From: python-dev@python.org (Greg Ward) Date: Tue, 4 Jul 2000 20:06:49 -0700 Subject: [Python-checkins] CVS: distutils/distutils/command sdist.py,1.36,1.37 Message-ID: <200007050306.UAA16884@slayer.i.sourceforge.net> Update of /cvsroot/python/distutils/distutils/command In directory slayer.i.sourceforge.net:/tmp/cvs-serv16872 Modified Files: sdist.py Log Message: Added the --dist-dir option to control where the archive(s) are put; defaults to 'dist' (ie. no longer in the distribution root). Index: sdist.py =================================================================== RCS file: /cvsroot/python/distutils/distutils/command/sdist.py,v retrieving revision 1.36 retrieving revision 1.37 diff -C2 -r1.36 -r1.37 *** sdist.py 2000/06/29 02:06:29 1.36 --- sdist.py 2000/07/05 03:06:46 1.37 *************** *** 65,68 **** --- 65,71 ---- "keep the distribution tree around after creating " + "archive file(s)"), + ('dist-dir=', 'd', + "directory to put the source distribution archive(s) in " + "[default: dist]"), ] *************** *** 95,98 **** --- 98,102 ---- self.formats = None self.keep_tree = 0 + self.dist_dir = None self.archive_files = None *************** *** 119,123 **** --- 123,130 ---- "unknown archive format '%s'" % bad_format + if self.dist_dir is None: + self.dist_dir = "dist" + def run (self): *************** *** 668,676 **** # done elsewhere. base_dir = self.distribution.get_fullname() self.make_release_tree (base_dir, self.files) archive_files = [] # remember names of files we create for fmt in self.formats: ! file = self.make_archive (base_dir, fmt, base_dir=base_dir) archive_files.append(file) --- 675,686 ---- # done elsewhere. base_dir = self.distribution.get_fullname() + base_name = os.path.join(self.dist_dir, base_dir) self.make_release_tree (base_dir, self.files) archive_files = [] # remember names of files we create + if self.dist_dir: + self.mkpath(self.dist_dir) for fmt in self.formats: ! file = self.make_archive (base_name, fmt, base_dir=base_dir) archive_files.append(file) From python-dev@python.org Wed Jul 5 04:07:21 2000 From: python-dev@python.org (Greg Ward) Date: Tue, 4 Jul 2000 20:07:21 -0700 Subject: [Python-checkins] CVS: distutils/distutils/command bdist.py,1.14,1.15 Message-ID: <200007050307.UAA16921@slayer.i.sourceforge.net> Update of /cvsroot/python/distutils/distutils/command In directory slayer.i.sourceforge.net:/tmp/cvs-serv16913/command Modified Files: bdist.py Log Message: Added the --dist-dir option that the "bdist_*" will use to control where they place their output files. Index: bdist.py =================================================================== RCS file: /cvsroot/python/distutils/distutils/command/bdist.py,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -r1.14 -r1.15 *** bdist.py 2000/06/27 01:24:07 1.14 --- bdist.py 2000/07/05 03:07:18 1.15 *************** *** 35,38 **** --- 35,41 ---- ('formats=', None, "formats for distribution (comma-separated list)"), + ('dist-dir=', 'd', + "directory to put final built distributions in " + "[default: dist]"), ] *************** *** 66,69 **** --- 69,73 ---- self.bdist_base = None self.formats = None + self.dist_dir = None # initialize_options() *************** *** 87,90 **** --- 91,97 ---- "don't know how to create built distributions " + \ "on platform %s" % os.name + + if self.dist_dir is None: + self.dist_dir = "dist" # finalize_options() From python-dev@python.org Wed Jul 5 04:07:39 2000 From: python-dev@python.org (Greg Ward) Date: Tue, 4 Jul 2000 20:07:39 -0700 Subject: [Python-checkins] CVS: distutils/distutils/command bdist_dumb.py,1.8,1.9 Message-ID: <200007050307.UAA16948@slayer.i.sourceforge.net> Update of /cvsroot/python/distutils/distutils/command In directory slayer.i.sourceforge.net:/tmp/cvs-serv16940 Modified Files: bdist_dumb.py Log Message: Added --dist-dir option to control where output archive(s) go. Index: bdist_dumb.py =================================================================== RCS file: /cvsroot/python/distutils/distutils/command/bdist_dumb.py,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -r1.8 -r1.9 *** bdist_dumb.py 2000/06/28 00:36:40 1.8 --- bdist_dumb.py 2000/07/05 03:07:37 1.9 *************** *** 25,28 **** --- 25,30 ---- "keep the pseudo-installation tree around after " + "creating the distribution archive"), + ('dist-dir=', 'd', + "directory to put final built distributions in"), ] *************** *** 35,38 **** --- 37,41 ---- self.format = None self.keep_tree = 0 + self.dist_dir = None # initialize_options() *************** *** 52,55 **** --- 55,60 ---- "on platform %s") % os.name + self.set_undefined_options('bdist', ('dist_dir', 'dist_dir')) + # finalize_options() *************** *** 72,76 **** print "self.bdist_dir = %s" % self.bdist_dir print "self.format = %s" % self.format ! self.make_archive (archive_basename, self.format, root_dir=self.bdist_dir) --- 77,82 ---- print "self.bdist_dir = %s" % self.bdist_dir print "self.format = %s" % self.format ! self.make_archive (os.path.join(self.dist_dir, archive_basename), ! self.format, root_dir=self.bdist_dir) From python-dev@python.org Wed Jul 5 04:08:57 2000 From: python-dev@python.org (Greg Ward) Date: Tue, 4 Jul 2000 20:08:57 -0700 Subject: [Python-checkins] CVS: distutils/distutils/command bdist_wininst.py,1.3,1.4 Message-ID: <200007050308.UAA17012@slayer.i.sourceforge.net> Update of /cvsroot/python/distutils/distutils/command In directory slayer.i.sourceforge.net:/tmp/cvs-serv16999/command Modified Files: bdist_wininst.py Log Message: Fixed so the ZIP file (which is bundled into an executable) goes in the temporary directory ('bdist_base'). Added --dist-dir option to control where the executable is put. Index: bdist_wininst.py =================================================================== RCS file: /cvsroot/python/distutils/distutils/command/bdist_wininst.py,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** bdist_wininst.py 2000/06/29 23:50:19 1.3 --- bdist_wininst.py 2000/07/05 03:08:55 1.4 *************** *** 29,32 **** --- 29,34 ---- "require a specific python version" + " on the target system (1.5 or 1.6/2.0)"), + ('dist-dir=', 'd', + "directory to put final built distributions in"), ] *************** *** 37,40 **** --- 39,43 ---- self.target_optimize = 0 self.target_version = None + self.dist_dir = None # initialize_options() *************** *** 58,61 **** --- 61,66 ---- self.target_version = short_version + self.set_undefined_options('bdist', ('dist_dir', 'dist_dir')) + # finalize_options() *************** *** 93,97 **** # And make an archive relative to the root of the # pseudo-installation tree. ! archive_basename = "%s.win32" % self.distribution.get_fullname() # XXX hack! Our archive MUST be relative to sys.prefix # XXX What about .install_data, .install_scripts, ...? --- 98,105 ---- # And make an archive relative to the root of the # pseudo-installation tree. ! fullname = self.distribution.get_fullname() ! archive_basename = os.path.join(self.bdist_dir, ! "%s.win32" % fullname) ! # XXX hack! Our archive MUST be relative to sys.prefix # XXX What about .install_data, .install_scripts, ...? *************** *** 104,108 **** arcname = self.make_archive (archive_basename, "zip", root_dir=root_dir) ! self.create_exe (arcname) if not self.keep_tree: --- 112,116 ---- arcname = self.make_archive (archive_basename, "zip", root_dir=root_dir) ! self.create_exe (arcname, fullname) if not self.keep_tree: *************** *** 157,161 **** # create_inifile() ! def create_exe (self, arcname): import struct, zlib --- 165,169 ---- # create_inifile() ! def create_exe (self, arcname, fullname): import struct, zlib *************** *** 166,170 **** zcfgdata = co.compress (cfgdata) + co.flush() ! installer_name = "%s.win32.exe" % self.distribution.get_fullname() self.announce ("creating %s" % installer_name) --- 174,179 ---- zcfgdata = co.compress (cfgdata) + co.flush() ! installer_name = os.path.join(self.dist_dir, ! "%s.win32.exe" % fullname) self.announce ("creating %s" % installer_name) From python-dev@python.org Wed Jul 5 04:10:23 2000 From: python-dev@python.org (Greg Ward) Date: Tue, 4 Jul 2000 20:10:23 -0700 Subject: [Python-checkins] CVS: distutils TODO,1.6,1.7 Message-ID: <200007050310.UAA17180@slayer.i.sourceforge.net> Update of /cvsroot/python/distutils In directory slayer.i.sourceforge.net:/tmp/cvs-serv17171 Modified Files: TODO Log Message: Various post-0.9 updates. Index: TODO =================================================================== RCS file: /cvsroot/python/distutils/TODO,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** TODO 2000/06/30 03:45:08 1.6 --- TODO 2000/07/05 03:10:20 1.7 *************** *** 129,134 **** --- 129,137 ---- strip the quotes (and, ideally, put them back on again when spawn() prints out the command run!) + [fixed!] + * support for building a new, static Python binary + INSTALLATION ------------ *************** *** 183,186 **** --- 186,191 ---- * should ce