[Python-checkins] CVS: python/dist/src/Python atof.c,2.6,2.7 bltinmodule.c,2.177,2.178 ceval.c,2.204,2.205 compile.c,2.138,2.139 dynload_aix.c,2.8,2.9 dynload_beos.c,2.4,2.5 dynload_dl.c,2.5,2.6 dynload_hpux.c,2.4,2.5 dynload_mac.c,2.7,2.8 dynload_next.c,2.6,2.7 dynload_os2.c,2.4,2.5 dynload_shlib.c,2.4,2.5 dynload_stub.c,2.3,2.4 dynload_win.c,2.5,2.6 errors.c,2.55,2.56 fmod.c,2.12,2.13 frozen.c,1.8,1.9 frozenmain.c,2.24,2.25 getargs.c,2.44,2.45 getcompiler.c,1.8,1.9 getcopyright.c,1.8,1.9 getcwd.c,1.13,1.14 getmtime.c,2.14,2.15 getplatform.c,1.7,1.8 getversion.c,1.13,1.14 import.c,2.149,2.150 importdl.c,2.67,2.68 importdl.h,2.15,2.16 marshal.c,1.55,1.56 memmove.c,2.7,2.8 modsupport.c,2.50,2.51 mystrtoul.c,2.20,2.21 pystate.c,2.13,2.14 pythonrun.c,2.113,2.114 sigcheck.c,2.7,2.8 strerror.c,2.9,2.10 structmember.c,2.17,2.18 sysmodule.c,2.77,2.78 thread.c,2.33,2.34 thread_beos.h,2.5,2.6 thread_cthread.h,2.12,2.13 thread_foobar.h,2.10,2.11 thread_lwp.h,2.13,2.14 thread_nt.h,2.16,2.17 thr! ead_os2.h,2.9,2.10 thread_pth.h,2.5,2.6 thread_pthread.h,2.29,2.30 thread_sgi.h,2.13,2.14 thread_solaris.h,2.14,2.15 thread_wince.h,2.5,2.6 traceback.c,2.31,2.32

Guido van Rossum python-dev@python.org
Fri, 1 Sep 2000 16:29:35 -0700


Update of /cvsroot/python/python/dist/src/Python
In directory slayer.i.sourceforge.net:/tmp/cvs-serv12117/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:
REMOVED all CWI, CNRI and BeOpen copyright markings.
This should match the situation in the 1.6b1 tree.


Index: atof.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/atof.c,v
retrieving revision 2.6
retrieving revision 2.7
diff -C2 -r2.6 -r2.7
*** atof.c	2000/07/22 18:47:25	2.6
--- atof.c	2000/09/01 23:29:28	2.7
***************
*** 1,11 ****
- /***********************************************************
- 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.
- ******************************************************************/
  
  /* Just in case you haven't got an atof() around...
--- 1,2 ----

Index: bltinmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/bltinmodule.c,v
retrieving revision 2.177
retrieving revision 2.178
diff -C2 -r2.177 -r2.178
*** bltinmodule.c	2000/08/27 19:21:52	2.177
--- bltinmodule.c	2000/09/01 23:29:28	2.178
***************
*** 1,11 ****
- /***********************************************************
- 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.
- ******************************************************************/
  
  /* Built-in functions */
--- 1,2 ----

Index: ceval.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/ceval.c,v
retrieving revision 2.204
retrieving revision 2.205
diff -C2 -r2.204 -r2.205
*** ceval.c	2000/09/01 11:07:19	2.204
--- ceval.c	2000/09/01 23:29:28	2.205
***************
*** 1,11 ****
- /***********************************************************
- 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.
- ******************************************************************/
  
  /* Execute compiled code */
--- 1,2 ----

Index: compile.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/compile.c,v
retrieving revision 2.138
retrieving revision 2.139
diff -C2 -r2.138 -r2.139
*** compile.c	2000/08/27 20:31:27	2.138
--- compile.c	2000/09/01 23:29:28	2.139
***************
*** 1,11 ****
- /***********************************************************
- 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.
- ******************************************************************/
  
  /* Compile an expression node to intermediate code */
--- 1,2 ----

Index: dynload_aix.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/dynload_aix.c,v
retrieving revision 2.8
retrieving revision 2.9
diff -C2 -r2.8 -r2.9
*** dynload_aix.c	2000/07/22 23:38:01	2.8
--- dynload_aix.c	2000/09/01 23:29:28	2.9
***************
*** 1,11 ****
- /***********************************************************
- 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.
- ******************************************************************/
  
  /* Support for dynamic loading of extension modules */
--- 1,2 ----

Index: dynload_beos.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/dynload_beos.c,v
retrieving revision 2.4
retrieving revision 2.5
diff -C2 -r2.4 -r2.5
*** dynload_beos.c	2000/06/30 23:58:06	2.4
--- dynload_beos.c	2000/09/01 23:29:28	2.5
***************
*** 1,11 ****
- /***********************************************************
- 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.
- ******************************************************************/
  
  /* Support for dynamic loading of extension modules */
--- 1,2 ----

Index: dynload_dl.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/dynload_dl.c,v
retrieving revision 2.5
retrieving revision 2.6
diff -C2 -r2.5 -r2.6
*** dynload_dl.c	2000/07/22 23:38:01	2.5
--- dynload_dl.c	2000/09/01 23:29:28	2.6
***************
*** 1,11 ****
- /***********************************************************
- 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.
- ******************************************************************/
  
  /* Support for dynamic loading of extension modules */
--- 1,2 ----

Index: dynload_hpux.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/dynload_hpux.c,v
retrieving revision 2.4
retrieving revision 2.5
diff -C2 -r2.4 -r2.5
*** dynload_hpux.c	2000/06/30 23:58:06	2.4
--- dynload_hpux.c	2000/09/01 23:29:28	2.5
***************
*** 1,11 ****
- /***********************************************************
- 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.
- ******************************************************************/
  
  /* Support for dynamic loading of extension modules */
--- 1,2 ----

Index: dynload_mac.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/dynload_mac.c,v
retrieving revision 2.7
retrieving revision 2.8
diff -C2 -r2.7 -r2.8
*** dynload_mac.c	2000/07/12 17:21:42	2.7
--- dynload_mac.c	2000/09/01 23:29:28	2.8
***************
*** 1,11 ****
- /***********************************************************
- 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.
- ******************************************************************/
  
  /* Support for dynamic loading of extension modules */
--- 1,2 ----

Index: dynload_next.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/dynload_next.c,v
retrieving revision 2.6
retrieving revision 2.7
diff -C2 -r2.6 -r2.7
*** dynload_next.c	2000/07/16 12:04:32	2.6
--- dynload_next.c	2000/09/01 23:29:28	2.7
***************
*** 1,11 ****
- /***********************************************************
- 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.
- ******************************************************************/
  
  /* Support for dynamic loading of extension modules */
--- 1,2 ----

Index: dynload_os2.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/dynload_os2.c,v
retrieving revision 2.4
retrieving revision 2.5
diff -C2 -r2.4 -r2.5
*** dynload_os2.c	2000/06/30 23:58:06	2.4
--- dynload_os2.c	2000/09/01 23:29:28	2.5
***************
*** 1,11 ****
- /***********************************************************
- 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.
- ******************************************************************/
  
  /* Support for dynamic loading of extension modules */
--- 1,2 ----

Index: dynload_shlib.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/dynload_shlib.c,v
retrieving revision 2.4
retrieving revision 2.5
diff -C2 -r2.4 -r2.5
*** dynload_shlib.c	2000/06/30 23:58:06	2.4
--- dynload_shlib.c	2000/09/01 23:29:28	2.5
***************
*** 1,11 ****
- /***********************************************************
- 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.
- ******************************************************************/
  
  /* Support for dynamic loading of extension modules */
--- 1,2 ----

Index: dynload_stub.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/dynload_stub.c,v
retrieving revision 2.3
retrieving revision 2.4
diff -C2 -r2.3 -r2.4
*** dynload_stub.c	2000/06/30 23:58:06	2.3
--- dynload_stub.c	2000/09/01 23:29:28	2.4
***************
*** 1,11 ****
- /***********************************************************
- 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.
- ******************************************************************/
  
  /* This module provides the necessary stubs for when dynamic loading is
--- 1,2 ----

Index: dynload_win.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/dynload_win.c,v
retrieving revision 2.5
retrieving revision 2.6
diff -C2 -r2.5 -r2.6
*** dynload_win.c	2000/06/30 23:58:06	2.5
--- dynload_win.c	2000/09/01 23:29:28	2.6
***************
*** 1,11 ****
- /***********************************************************
- 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.
- ******************************************************************/
  
  /* Support for dynamic loading of extension modules */
--- 1,2 ----

Index: errors.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/errors.c,v
retrieving revision 2.55
retrieving revision 2.56
diff -C2 -r2.55 -r2.56
*** errors.c	2000/09/01 03:49:47	2.55
--- errors.c	2000/09/01 23:29:28	2.56
***************
*** 1,11 ****
- /***********************************************************
- 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.
- ******************************************************************/
  
  /* Error handling */
--- 1,2 ----

Index: fmod.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/fmod.c,v
retrieving revision 2.12
retrieving revision 2.13
diff -C2 -r2.12 -r2.13
*** fmod.c	2000/07/31 15:28:04	2.12
--- fmod.c	2000/09/01 23:29:28	2.13
***************
*** 1,11 ****
- /***********************************************************
- 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.
- ******************************************************************/
  
  /* Portable fmod(x, y) implementation for systems that don't have it */
--- 1,2 ----

Index: frozen.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/frozen.c,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -r1.8 -r1.9
*** frozen.c	2000/06/30 23:58:06	1.8
--- frozen.c	2000/09/01 23:29:28	1.9
***************
*** 1,11 ****
- /***********************************************************
- 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.
- ******************************************************************/
  
  /* Dummy frozen modules initializer */
--- 1,2 ----

Index: frozenmain.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/frozenmain.c,v
retrieving revision 2.24
retrieving revision 2.25
diff -C2 -r2.24 -r2.25
*** frozenmain.c	2000/07/22 23:38:01	2.24
--- frozenmain.c	2000/09/01 23:29:28	2.25
***************
*** 1,11 ****
- /***********************************************************
- 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.
- ******************************************************************/
  
  /* Python interpreter main program for frozen scripts */
--- 1,2 ----

Index: getargs.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/getargs.c,v
retrieving revision 2.44
retrieving revision 2.45
diff -C2 -r2.44 -r2.45
*** getargs.c	2000/08/05 21:29:58	2.44
--- getargs.c	2000/09/01 23:29:28	2.45
***************
*** 1,11 ****
- /***********************************************************
- 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.
- ******************************************************************/
  
  /* New getargs implementation */
--- 1,2 ----

Index: getcompiler.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/getcompiler.c,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -r1.8 -r1.9
*** getcompiler.c	2000/07/22 18:47:25	1.8
--- getcompiler.c	2000/09/01 23:29:28	1.9
***************
*** 1,11 ****
- /***********************************************************
- 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.
- ******************************************************************/
  
  /* Return the compiler identification, if possible. */
--- 1,2 ----

Index: getcopyright.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/getcopyright.c,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -r1.8 -r1.9
*** getcopyright.c	2000/07/22 18:47:25	1.8
--- getcopyright.c	2000/09/01 23:29:28	1.9
***************
*** 1,18 ****
- /***********************************************************
- Copyright 1991-1996 by Stichting Mathematisch Centrum, Amsterdam,
- The Netherlands.
- 
-                         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.
- 
- ******************************************************************/
- 
  /* Return the copyright string.  This is updated manually. */
  
--- 1,2 ----

Index: getcwd.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/getcwd.c,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -r1.13 -r1.14
*** getcwd.c	2000/07/22 18:47:25	1.13
--- getcwd.c	2000/09/01 23:29:28	1.14
***************
*** 1,11 ****
- /***********************************************************
- 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.
- ******************************************************************/
  
  /* Two PD getcwd() implementations.
--- 1,2 ----

Index: getmtime.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/getmtime.c,v
retrieving revision 2.14
retrieving revision 2.15
diff -C2 -r2.14 -r2.15
*** getmtime.c	2000/07/22 18:47:25	2.14
--- getmtime.c	2000/09/01 23:29:28	2.15
***************
*** 1,11 ****
- /***********************************************************
- 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.
- ******************************************************************/
  
  /* Subroutine to get the last modification time of a file */
--- 1,2 ----

Index: getplatform.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/getplatform.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -r1.7 -r1.8
*** getplatform.c	2000/07/22 18:47:25	1.7
--- getplatform.c	2000/09/01 23:29:28	1.8
***************
*** 1,11 ****
- /***********************************************************
- 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.
- ******************************************************************/
  
  #include "Python.h"
--- 1,2 ----

Index: getversion.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/getversion.c,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -r1.13 -r1.14
*** getversion.c	2000/07/22 18:47:25	1.13
--- getversion.c	2000/09/01 23:29:28	1.14
***************
*** 1,11 ****
- /***********************************************************
- 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.
- ******************************************************************/
  
  /* Return the full version string. */
--- 1,2 ----

Index: import.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/import.c,v
retrieving revision 2.149
retrieving revision 2.150
diff -C2 -r2.149 -r2.150
*** import.c	2000/08/27 20:31:27	2.149
--- import.c	2000/09/01 23:29:28	2.150
***************
*** 1,11 ****
- /***********************************************************
- 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.
- ******************************************************************/
  
  /* Module definition and import implementation */
--- 1,2 ----

Index: importdl.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/importdl.c,v
retrieving revision 2.67
retrieving revision 2.68
diff -C2 -r2.67 -r2.68
*** importdl.c	2000/07/22 18:47:25	2.67
--- importdl.c	2000/09/01 23:29:28	2.68
***************
*** 1,11 ****
- /***********************************************************
- 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.
- ******************************************************************/
  
  /* Support for dynamic loading of extension modules */
--- 1,2 ----

Index: importdl.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/importdl.h,v
retrieving revision 2.15
retrieving revision 2.16
diff -C2 -r2.15 -r2.16
*** importdl.h	2000/07/09 03:09:56	2.15
--- importdl.h	2000/09/01 23:29:28	2.16
***************
*** 6,18 ****
  #endif
  
- /***********************************************************
- 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.
- ******************************************************************/
  
  /* Definitions for dynamic loading of extension modules */
--- 6,9 ----

Index: marshal.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/marshal.c,v
retrieving revision 1.55
retrieving revision 1.56
diff -C2 -r1.55 -r1.56
*** marshal.c	2000/07/23 19:28:35	1.55
--- marshal.c	2000/09/01 23:29:28	1.56
***************
*** 1,11 ****
- /***********************************************************
- 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.
- ******************************************************************/
  
  /* Write Python objects to files and read them back.
--- 1,2 ----

Index: memmove.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/memmove.c,v
retrieving revision 2.7
retrieving revision 2.8
diff -C2 -r2.7 -r2.8
*** memmove.c	2000/07/22 18:47:25	2.7
--- memmove.c	2000/09/01 23:29:28	2.8
***************
*** 1,11 ****
- /***********************************************************
- 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.
- ******************************************************************/
  
  /* A perhaps slow but I hope correct implementation of memmove */
--- 1,2 ----

Index: modsupport.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/modsupport.c,v
retrieving revision 2.50
retrieving revision 2.51
diff -C2 -r2.50 -r2.51
*** modsupport.c	2000/08/04 14:00:14	2.50
--- modsupport.c	2000/09/01 23:29:28	2.51
***************
*** 1,11 ****
- /***********************************************************
- 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.
- ******************************************************************/
  
  /* Module support implementation */
--- 1,2 ----

Index: mystrtoul.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/mystrtoul.c,v
retrieving revision 2.20
retrieving revision 2.21
diff -C2 -r2.20 -r2.21
*** mystrtoul.c	2000/07/22 18:47:25	2.20
--- mystrtoul.c	2000/09/01 23:29:28	2.21
***************
*** 1,11 ****
- /***********************************************************
- 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.
- ******************************************************************/
  
  #include "Python.h"
--- 1,2 ----

Index: pystate.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/pystate.c,v
retrieving revision 2.13
retrieving revision 2.14
diff -C2 -r2.13 -r2.14
*** pystate.c	2000/08/04 21:27:47	2.13
--- pystate.c	2000/09/01 23:29:28	2.14
***************
*** 1,11 ****
- /***********************************************************
- 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.
- ******************************************************************/
  
  /* Thread and interpreter state structures and their interfaces */
--- 1,2 ----

Index: pythonrun.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/pythonrun.c,v
retrieving revision 2.113
retrieving revision 2.114
diff -C2 -r2.113 -r2.114
*** pythonrun.c	2000/08/31 05:52:44	2.113
--- pythonrun.c	2000/09/01 23:29:28	2.114
***************
*** 1,11 ****
- /***********************************************************
- 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.
- ******************************************************************/
  
  /* Python interpreter top-level routines, including init/exit */
--- 1,2 ----

Index: sigcheck.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/sigcheck.c,v
retrieving revision 2.7
retrieving revision 2.8
diff -C2 -r2.7 -r2.8
*** sigcheck.c	2000/07/22 18:47:25	2.7
--- sigcheck.c	2000/09/01 23:29:28	2.8
***************
*** 1,11 ****
- /***********************************************************
- 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.
- ******************************************************************/
  
  /* Sigcheck is similar to intrcheck() but sets an exception when an
--- 1,2 ----

Index: strerror.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/strerror.c,v
retrieving revision 2.9
retrieving revision 2.10
diff -C2 -r2.9 -r2.10
*** strerror.c	2000/07/22 18:47:25	2.9
--- strerror.c	2000/09/01 23:29:28	2.10
***************
*** 1,11 ****
- /***********************************************************
- 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.
- ******************************************************************/
  
  /* PD implementation of strerror() for systems that don't have it.
--- 1,2 ----

Index: structmember.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/structmember.c,v
retrieving revision 2.17
retrieving revision 2.18
diff -C2 -r2.17 -r2.18
*** structmember.c	2000/07/22 18:47:25	2.17
--- structmember.c	2000/09/01 23:29:28	2.18
***************
*** 1,11 ****
- /***********************************************************
- 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.
- ******************************************************************/
  
  /* Map C struct members to Python object attributes */
--- 1,2 ----

Index: sysmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/sysmodule.c,v
retrieving revision 2.77
retrieving revision 2.78
diff -C2 -r2.77 -r2.78
*** sysmodule.c	2000/08/31 19:23:01	2.77
--- sysmodule.c	2000/09/01 23:29:28	2.78
***************
*** 1,11 ****
- /***********************************************************
- 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.
- ******************************************************************/
  
  /* System module */
--- 1,2 ----

Index: thread.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/thread.c,v
retrieving revision 2.33
retrieving revision 2.34
diff -C2 -r2.33 -r2.34
*** thread.c	2000/07/24 14:39:50	2.33
--- thread.c	2000/09/01 23:29:28	2.34
***************
*** 1,11 ****
- /***********************************************************
- 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.
- ******************************************************************/
  
  /* Thread package.
--- 1,2 ----

Index: thread_beos.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/thread_beos.h,v
retrieving revision 2.5
retrieving revision 2.6
diff -C2 -r2.5 -r2.6
*** thread_beos.h	2000/06/30 23:58:06	2.5
--- thread_beos.h	2000/09/01 23:29:28	2.6
***************
*** 1,13 ****
- /***********************************************************
- 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)
- ******************************************************************/
- 
  #include <kernel/OS.h>
  #include <support/SupportDefs.h>
--- 1,2 ----

Index: thread_cthread.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/thread_cthread.h,v
retrieving revision 2.12
retrieving revision 2.13
diff -C2 -r2.12 -r2.13
*** thread_cthread.h	2000/07/22 18:47:25	2.12
--- thread_cthread.h	2000/09/01 23:29:28	2.13
***************
*** 1,11 ****
- /***********************************************************
- 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.
- ******************************************************************/
  
  #include <mach/cthreads.h>
--- 1,2 ----

Index: thread_foobar.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/thread_foobar.h,v
retrieving revision 2.10
retrieving revision 2.11
diff -C2 -r2.10 -r2.11
*** thread_foobar.h	2000/07/22 18:47:25	2.10
--- thread_foobar.h	2000/09/01 23:29:28	2.11
***************
*** 1,11 ****
- /***********************************************************
- 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.
- ******************************************************************/
  
  /*
--- 1,2 ----

Index: thread_lwp.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/thread_lwp.h,v
retrieving revision 2.13
retrieving revision 2.14
diff -C2 -r2.13 -r2.14
*** thread_lwp.h	2000/07/22 23:38:01	2.13
--- thread_lwp.h	2000/09/01 23:29:28	2.14
***************
*** 1,11 ****
- /***********************************************************
- 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.
- ******************************************************************/
  
  #include <stdlib.h>
--- 1,2 ----

Index: thread_nt.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/thread_nt.h,v
retrieving revision 2.16
retrieving revision 2.17
diff -C2 -r2.16 -r2.17
*** thread_nt.h	2000/08/07 20:16:28	2.16
--- thread_nt.h	2000/09/01 23:29:28	2.17
***************
*** 1,11 ****
- /***********************************************************
- 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.
- ******************************************************************/
  
  /* This code implemented by Dag.Gruneau@elsa.preseco.comm.se */
--- 1,2 ----

Index: thread_os2.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/thread_os2.h,v
retrieving revision 2.9
retrieving revision 2.10
diff -C2 -r2.9 -r2.10
*** thread_os2.h	2000/07/22 18:47:25	2.9
--- thread_os2.h	2000/09/01 23:29:28	2.10
***************
*** 1,18 ****
- /***********************************************************
- 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.
- 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.
-   
- ******************************************************************/
- 
  /* This code implemented by cvale@netcom.com */
  
--- 1,2 ----

Index: thread_pth.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/thread_pth.h,v
retrieving revision 2.5
retrieving revision 2.6
diff -C2 -r2.5 -r2.6
*** thread_pth.h	2000/07/22 18:47:25	2.5
--- thread_pth.h	2000/09/01 23:29:28	2.6
***************
*** 1,11 ****
- /***********************************************************
- 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.
- ******************************************************************/
  
  /* GNU pth threads interface
--- 1,2 ----

Index: thread_pthread.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/thread_pthread.h,v
retrieving revision 2.29
retrieving revision 2.30
diff -C2 -r2.29 -r2.30
*** thread_pthread.h	2000/08/23 21:33:05	2.29
--- thread_pthread.h	2000/09/01 23:29:28	2.30
***************
*** 1,11 ****
- /***********************************************************
- 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.
- ******************************************************************/
  
  /* Posix threads interface */
--- 1,2 ----

Index: thread_sgi.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/thread_sgi.h,v
retrieving revision 2.13
retrieving revision 2.14
diff -C2 -r2.13 -r2.14
*** thread_sgi.h	2000/07/22 18:47:25	2.13
--- thread_sgi.h	2000/09/01 23:29:29	2.14
***************
*** 1,11 ****
- /***********************************************************
- 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.
- ******************************************************************/
  
  #ifdef WITH_SGI_DL
--- 1,2 ----

Index: thread_solaris.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/thread_solaris.h,v
retrieving revision 2.14
retrieving revision 2.15
diff -C2 -r2.14 -r2.15
*** thread_solaris.h	2000/07/22 18:47:25	2.14
--- thread_solaris.h	2000/09/01 23:29:29	2.15
***************
*** 1,11 ****
- /***********************************************************
- 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.
- ******************************************************************/
  
  #include <stdlib.h>
--- 1,2 ----

Index: thread_wince.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/thread_wince.h,v
retrieving revision 2.5
retrieving revision 2.6
diff -C2 -r2.5 -r2.6
*** thread_wince.h	2000/07/22 18:47:25	2.5
--- thread_wince.h	2000/09/01 23:29:29	2.6
***************
*** 1,11 ****
- /***********************************************************
- 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.
- ******************************************************************/
  
  /* This code implemented by Mark Hammond (MHammond@skippinet.com.au) */
--- 1,2 ----

Index: traceback.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/traceback.c,v
retrieving revision 2.31
retrieving revision 2.32
diff -C2 -r2.31 -r2.32
*** traceback.c	2000/07/22 18:47:25	2.31
--- traceback.c	2000/09/01 23:29:29	2.32
***************
*** 1,11 ****
- /***********************************************************
- 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.
- ******************************************************************/
  
  /* Traceback implementation */
--- 1,2 ----