summaryrefslogtreecommitdiff
path: root/Modules
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2000-09-01 23:29:29 +0000
committerGuido van Rossum <guido@python.org>2000-09-01 23:29:29 +0000
commit8586991099e4ace18ee94163a96b8ea1bed77ebe (patch)
treeba6eb91446d702b0841d1eb13bcaac2c8f1974e5 /Modules
parentbb8be93a50b0293b812634575a493c4eaf676773 (diff)
downloadcpython-git-8586991099e4ace18ee94163a96b8ea1bed77ebe.tar.gz
REMOVED all CWI, CNRI and BeOpen copyright markings.
This should match the situation in the 1.6b1 tree.
Diffstat (limited to 'Modules')
-rw-r--r--Modules/_tkinter.c10
-rw-r--r--Modules/almodule.c9
-rw-r--r--Modules/arraymodule.c9
-rw-r--r--Modules/audioop.c9
-rw-r--r--Modules/binascii.c16
-rw-r--r--Modules/bsddbmodule.c9
-rw-r--r--Modules/cdmodule.c10
-rw-r--r--Modules/cgensupport.c9
-rw-r--r--Modules/cgensupport.h9
-rw-r--r--Modules/clmodule.c9
-rw-r--r--Modules/cstubs9
-rw-r--r--Modules/dbmmodule.c9
-rw-r--r--Modules/dlmodule.c9
-rw-r--r--Modules/errnomodule.c9
-rw-r--r--Modules/fcntlmodule.c9
-rw-r--r--Modules/flmodule.c10
-rw-r--r--Modules/fmmodule.c9
-rw-r--r--Modules/gdbmmodule.c9
-rw-r--r--Modules/getpath.c9
-rw-r--r--Modules/glmodule.c9
-rw-r--r--Modules/grpmodule.c9
-rw-r--r--Modules/imageop.c9
-rw-r--r--Modules/imgfile.c9
-rw-r--r--Modules/main.c9
-rw-r--r--Modules/mathmodule.c9
-rw-r--r--Modules/md5module.c9
-rw-r--r--Modules/mpzmodule.c9
-rw-r--r--Modules/newmodule.c9
-rw-r--r--Modules/parsermodule.c9
-rw-r--r--Modules/pcremodule.c16
-rw-r--r--Modules/posixmodule.c9
-rw-r--r--Modules/pwdmodule.c9
-rw-r--r--Modules/pyexpat.c16
-rw-r--r--Modules/regexmodule.c9
-rw-r--r--Modules/resource.c9
-rw-r--r--Modules/selectmodule.c9
-rw-r--r--Modules/sgimodule.c9
-rw-r--r--Modules/shamodule.c16
-rw-r--r--Modules/signalmodule.c9
-rw-r--r--Modules/stropmodule.c9
-rw-r--r--Modules/structmodule.c9
-rw-r--r--Modules/sunaudiodev.c9
-rw-r--r--Modules/svmodule.c10
-rw-r--r--Modules/threadmodule.c9
-rw-r--r--Modules/timemodule.c9
-rw-r--r--Modules/xxmodule.c9
-rw-r--r--Modules/yuv.h9
-rw-r--r--Modules/yuvconvert.c9
48 files changed, 0 insertions, 464 deletions
diff --git a/Modules/_tkinter.c b/Modules/_tkinter.c
index 9601f0680f..34360fe077 100644
--- a/Modules/_tkinter.c
+++ b/Modules/_tkinter.c
@@ -1,18 +1,8 @@
/***********************************************************
Copyright (C) 1994 Steen Lumholt.
-Copyright 1994-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.
-
******************************************************************/
/* _tkinter.c -- Interface to libtk.a and libtcl.a. */
diff --git a/Modules/almodule.c b/Modules/almodule.c
index 23fd96f02c..6621b9c024 100644
--- a/Modules/almodule.c
+++ b/Modules/almodule.c
@@ -1,12 +1,3 @@
-/***********************************************************
-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.
-******************************************************************/
#define OLD_INTERFACE /* define for pre-Irix 6 interface */
diff --git a/Modules/arraymodule.c b/Modules/arraymodule.c
index 530b214c1a..43be90cb72 100644
--- a/Modules/arraymodule.c
+++ b/Modules/arraymodule.c
@@ -1,12 +1,3 @@
-/***********************************************************
-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.
-******************************************************************/
/* Array object implementation */
diff --git a/Modules/audioop.c b/Modules/audioop.c
index 8c916171cf..d12642afb0 100644
--- a/Modules/audioop.c
+++ b/Modules/audioop.c
@@ -1,12 +1,3 @@
-/***********************************************************
-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.
-******************************************************************/
/* audioopmodule - Module to detect peak values in arrays */
diff --git a/Modules/binascii.c b/Modules/binascii.c
index a9e190b359..010e22d9c8 100644
--- a/Modules/binascii.c
+++ b/Modules/binascii.c
@@ -1,19 +1,3 @@
-/***********************************************************
-Copyright 1991, 1992, 1993, 1994 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.
-
-******************************************************************/
-
/*
** Routines to represent binary data in ASCII and vice-versa
**
diff --git a/Modules/bsddbmodule.c b/Modules/bsddbmodule.c
index 48c221e7eb..24d859b564 100644
--- a/Modules/bsddbmodule.c
+++ b/Modules/bsddbmodule.c
@@ -1,12 +1,3 @@
-/***********************************************************
-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.
-******************************************************************/
/* Berkeley DB interface.
Author: Michael McLay
diff --git a/Modules/cdmodule.c b/Modules/cdmodule.c
index 5f88a0f8cd..ee58c5efbd 100644
--- a/Modules/cdmodule.c
+++ b/Modules/cdmodule.c
@@ -1,13 +1,3 @@
-/**********************************************************
-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.
-******************************************************************/
-
/* CD module -- interface to Mark Callow's and Roger Chickering's */
/* CD Audio Library (CD). */
diff --git a/Modules/cgensupport.c b/Modules/cgensupport.c
index 71b55865e8..7e7d0ff9f4 100644
--- a/Modules/cgensupport.c
+++ b/Modules/cgensupport.c
@@ -1,12 +1,3 @@
-/***********************************************************
-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.
-******************************************************************/
/* Functions used by cgen output */
diff --git a/Modules/cgensupport.h b/Modules/cgensupport.h
index 2277a4738d..bc901f6e81 100644
--- a/Modules/cgensupport.h
+++ b/Modules/cgensupport.h
@@ -4,15 +4,6 @@
extern "C" {
#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 used by cgen output */
diff --git a/Modules/clmodule.c b/Modules/clmodule.c
index d38a0c33e0..2ff184cce6 100644
--- a/Modules/clmodule.c
+++ b/Modules/clmodule.c
@@ -1,12 +1,3 @@
-/***********************************************************
-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.
-******************************************************************/
/* Cl objects */
diff --git a/Modules/cstubs b/Modules/cstubs
index 3ce58da952..53bd4ab310 100644
--- a/Modules/cstubs
+++ b/Modules/cstubs
@@ -1,12 +1,3 @@
-/***********************************************************
-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.
-******************************************************************/
/*
Input used to generate the Python module "glmodule.c".
diff --git a/Modules/dbmmodule.c b/Modules/dbmmodule.c
index b95c0ba853..c0cfb29c15 100644
--- a/Modules/dbmmodule.c
+++ b/Modules/dbmmodule.c
@@ -1,12 +1,3 @@
-/***********************************************************
-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.
-******************************************************************/
/* DBM module using dictionary interface */
diff --git a/Modules/dlmodule.c b/Modules/dlmodule.c
index 18e1458f1c..b094be76eb 100644
--- a/Modules/dlmodule.c
+++ b/Modules/dlmodule.c
@@ -1,12 +1,3 @@
-/***********************************************************
-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.
-******************************************************************/
/* dl module */
diff --git a/Modules/errnomodule.c b/Modules/errnomodule.c
index b47feb6281..3ca43724b9 100644
--- a/Modules/errnomodule.c
+++ b/Modules/errnomodule.c
@@ -1,12 +1,3 @@
-/***********************************************************
-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.
-******************************************************************/
/* Errno module */
diff --git a/Modules/fcntlmodule.c b/Modules/fcntlmodule.c
index fd4c3e304a..93fdf401f3 100644
--- a/Modules/fcntlmodule.c
+++ b/Modules/fcntlmodule.c
@@ -1,12 +1,3 @@
-/***********************************************************
-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.
-******************************************************************/
/* fcntl module */
diff --git a/Modules/flmodule.c b/Modules/flmodule.c
index 8bfd83aa09..ef853f5520 100644
--- a/Modules/flmodule.c
+++ b/Modules/flmodule.c
@@ -1,13 +1,3 @@
-/**********************************************************
-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.
-******************************************************************/
-
/* FL module -- interface to Mark Overmars' FORMS Library. */
/* This code works with FORMS version 2.2 (if you defined
diff --git a/Modules/fmmodule.c b/Modules/fmmodule.c
index df5f27ba67..065aed6004 100644
--- a/Modules/fmmodule.c
+++ b/Modules/fmmodule.c
@@ -1,12 +1,3 @@
-/***********************************************************
-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.
-******************************************************************/
/* Font Manager module */
diff --git a/Modules/gdbmmodule.c b/Modules/gdbmmodule.c
index 6d2e6ce144..3b7b0bccfd 100644
--- a/Modules/gdbmmodule.c
+++ b/Modules/gdbmmodule.c
@@ -1,12 +1,3 @@
-/***********************************************************
-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.
-******************************************************************/
/* DBM module using dictionary interface */
/* Author: Anthony Baxter, after dbmmodule.c */
diff --git a/Modules/getpath.c b/Modules/getpath.c
index f96f7ed483..c295d307cc 100644
--- a/Modules/getpath.c
+++ b/Modules/getpath.c
@@ -1,12 +1,3 @@
-/***********************************************************
-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 initial module search path. */
diff --git a/Modules/glmodule.c b/Modules/glmodule.c
index 2d314b9e5f..4a1b66fb69 100644
--- a/Modules/glmodule.c
+++ b/Modules/glmodule.c
@@ -1,12 +1,3 @@
-/***********************************************************
-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.
-******************************************************************/
/*
Input used to generate the Python module "glmodule.c".
diff --git a/Modules/grpmodule.c b/Modules/grpmodule.c
index f13472f29b..41a5ec9757 100644
--- a/Modules/grpmodule.c
+++ b/Modules/grpmodule.c
@@ -1,12 +1,3 @@
-/***********************************************************
-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.
-******************************************************************/
/* UNIX group file access module */
diff --git a/Modules/imageop.c b/Modules/imageop.c
index 7c7116d6cb..586133bfed 100644
--- a/Modules/imageop.c
+++ b/Modules/imageop.c
@@ -1,12 +1,3 @@
-/***********************************************************
-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.
-******************************************************************/
/* imageopmodule - Various operations on pictures */
diff --git a/Modules/imgfile.c b/Modules/imgfile.c
index 9a7f74fd3d..e8f0b8c5fb 100644
--- a/Modules/imgfile.c
+++ b/Modules/imgfile.c
@@ -1,12 +1,3 @@
-/***********************************************************
-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.
-******************************************************************/
/* IMGFILE module - Interface to sgi libimage */
diff --git a/Modules/main.c b/Modules/main.c
index 9afe80b3b5..32d7c39ca9 100644
--- a/Modules/main.c
+++ b/Modules/main.c
@@ -1,12 +1,3 @@
-/***********************************************************
-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 */
diff --git a/Modules/mathmodule.c b/Modules/mathmodule.c
index 569e8c9cdd..fcd88ad331 100644
--- a/Modules/mathmodule.c
+++ b/Modules/mathmodule.c
@@ -1,12 +1,3 @@
-/***********************************************************
-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.
-******************************************************************/
/* Math module -- standard C math library functions, pi and e */
diff --git a/Modules/md5module.c b/Modules/md5module.c
index 5eac97b3fe..269a298c05 100644
--- a/Modules/md5module.c
+++ b/Modules/md5module.c
@@ -1,12 +1,3 @@
-/***********************************************************
-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.
-******************************************************************/
/* MD5 module */
diff --git a/Modules/mpzmodule.c b/Modules/mpzmodule.c
index 8be9f08df4..44349e9357 100644
--- a/Modules/mpzmodule.c
+++ b/Modules/mpzmodule.c
@@ -1,12 +1,3 @@
-/***********************************************************
-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.
-******************************************************************/
/* MPZ module */
diff --git a/Modules/newmodule.c b/Modules/newmodule.c
index 1595c0c64c..f29c37bf57 100644
--- a/Modules/newmodule.c
+++ b/Modules/newmodule.c
@@ -1,12 +1,3 @@
-/***********************************************************
-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 new -- create new objects of various types */
diff --git a/Modules/parsermodule.c b/Modules/parsermodule.c
index 056d2bbf27..f4fb805f69 100644
--- a/Modules/parsermodule.c
+++ b/Modules/parsermodule.c
@@ -75,15 +75,6 @@ typedef int (*SeqInserter) (PyObject* sequence,
* lists as well as tuples, and optionally including the line numbers.
*/
-/***********************************************************
-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.
-******************************************************************/
static PyObject*
node2tuple(node *n, /* node to convert */
diff --git a/Modules/pcremodule.c b/Modules/pcremodule.c
index 21629b806b..fe45bacd56 100644
--- a/Modules/pcremodule.c
+++ b/Modules/pcremodule.c
@@ -1,19 +1,3 @@
-/***********************************************************
-Copyright 1997 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.
-
-******************************************************************/
-
/* Pcre objects */
#include "Python.h"
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c
index d921eee5a5..cb3c72dd5c 100644
--- a/Modules/posixmodule.c
+++ b/Modules/posixmodule.c
@@ -1,12 +1,3 @@
-/***********************************************************
-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 module implementation */
diff --git a/Modules/pwdmodule.c b/Modules/pwdmodule.c
index 7f58ed3408..290dc45145 100644
--- a/Modules/pwdmodule.c
+++ b/Modules/pwdmodule.c
@@ -1,12 +1,3 @@
-/***********************************************************
-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.
-******************************************************************/
/* UNIX password file access module */
diff --git a/Modules/pyexpat.c b/Modules/pyexpat.c
index 28fb42b193..d270aa211d 100644
--- a/Modules/pyexpat.c
+++ b/Modules/pyexpat.c
@@ -1,19 +1,3 @@
-/***********************************************************
-Copyright 2000 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.
-
-******************************************************************/
-
#include "Python.h"
#include "xmlparse.h"
diff --git a/Modules/regexmodule.c b/Modules/regexmodule.c
index ff3b8950dd..749de9e7ab 100644
--- a/Modules/regexmodule.c
+++ b/Modules/regexmodule.c
@@ -3,15 +3,6 @@ XXX support range parameter on search
XXX support mstop parameter on search
*/
-/***********************************************************
-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.
-******************************************************************/
/* Regular expression objects */
/* This uses Tatu Ylonen's copyleft-free reimplementation of
diff --git a/Modules/resource.c b/Modules/resource.c
index cca6d823fe..9f2d9c06a7 100644
--- a/Modules/resource.c
+++ b/Modules/resource.c
@@ -1,12 +1,3 @@
-/***********************************************************
-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"
#include <sys/resource.h>
diff --git a/Modules/selectmodule.c b/Modules/selectmodule.c
index 1c1f3d8cdb..55c3a49c53 100644
--- a/Modules/selectmodule.c
+++ b/Modules/selectmodule.c
@@ -1,12 +1,3 @@
-/***********************************************************
-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.
-******************************************************************/
/* select - Module containing unix select(2) call.
Under Unix, the file descriptors are small integers.
diff --git a/Modules/sgimodule.c b/Modules/sgimodule.c
index 04bd3bec3c..b19efe6f79 100644
--- a/Modules/sgimodule.c
+++ b/Modules/sgimodule.c
@@ -1,12 +1,3 @@
-/***********************************************************
-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.
-******************************************************************/
/* SGI module -- random SGI-specific things */
diff --git a/Modules/shamodule.c b/Modules/shamodule.c
index cc11f12885..8f9523050e 100644
--- a/Modules/shamodule.c
+++ b/Modules/shamodule.c
@@ -1,19 +1,3 @@
-/***********************************************************
-Copyright 1999 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.
-
-******************************************************************/
-
/* SHA module */
/* This module provides an interface to NIST's Secure Hash Algorithm */
diff --git a/Modules/signalmodule.c b/Modules/signalmodule.c
index 368955e0c5..1347c6d291 100644
--- a/Modules/signalmodule.c
+++ b/Modules/signalmodule.c
@@ -1,12 +1,3 @@
-/***********************************************************
-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.
-******************************************************************/
/* Signal module -- many thanks to Lance Ellinghaus */
diff --git a/Modules/stropmodule.c b/Modules/stropmodule.c
index 617eb26ec4..b8f7519f2d 100644
--- a/Modules/stropmodule.c
+++ b/Modules/stropmodule.c
@@ -1,12 +1,3 @@
-/***********************************************************
-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.
-******************************************************************/
/* strop module */
diff --git a/Modules/structmodule.c b/Modules/structmodule.c
index ff10b18ae9..c253a76df7 100644
--- a/Modules/structmodule.c
+++ b/Modules/structmodule.c
@@ -1,12 +1,3 @@
-/***********************************************************
-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.
-******************************************************************/
/* struct module -- pack values into and (out of) strings */
diff --git a/Modules/sunaudiodev.c b/Modules/sunaudiodev.c
index 2774e054c5..7bf867bcb2 100644
--- a/Modules/sunaudiodev.c
+++ b/Modules/sunaudiodev.c
@@ -1,12 +1,3 @@
-/***********************************************************
-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.
-******************************************************************/
/* Sad objects */
diff --git a/Modules/svmodule.c b/Modules/svmodule.c
index 95b3e142ad..ead0ca589f 100644
--- a/Modules/svmodule.c
+++ b/Modules/svmodule.c
@@ -1,13 +1,3 @@
-/**********************************************************
-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.
-******************************************************************/
-
/* SV module -- interface to the Indigo video board */
/* WARNING! This module is for hardware that we don't have any more,
diff --git a/Modules/threadmodule.c b/Modules/threadmodule.c
index 46dd35a69a..97ab4e1375 100644
--- a/Modules/threadmodule.c
+++ b/Modules/threadmodule.c
@@ -1,12 +1,3 @@
-/***********************************************************
-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 module */
/* Interface to Sjoerd's portable C thread library */
diff --git a/Modules/timemodule.c b/Modules/timemodule.c
index edf09d1131..116b377e8e 100644
--- a/Modules/timemodule.c
+++ b/Modules/timemodule.c
@@ -1,12 +1,3 @@
-/***********************************************************
-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.
-******************************************************************/
/* Time module */
diff --git a/Modules/xxmodule.c b/Modules/xxmodule.c
index e80c2eee98..621eab8102 100644
--- a/Modules/xxmodule.c
+++ b/Modules/xxmodule.c
@@ -1,12 +1,3 @@
-/***********************************************************
-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.
-******************************************************************/
/* Use this file as a template to start implementing a module that
also declares object types. All occurrences of 'Xxo' should be changed
diff --git a/Modules/yuv.h b/Modules/yuv.h
index 1b7db6266e..738c4e50c1 100644
--- a/Modules/yuv.h
+++ b/Modules/yuv.h
@@ -1,12 +1,3 @@
-/***********************************************************
-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.
-******************************************************************/
#ifndef Py_YUV_H
#define Py_YUV_H
diff --git a/Modules/yuvconvert.c b/Modules/yuvconvert.c
index 3a5c03672e..e5333d9c38 100644
--- a/Modules/yuvconvert.c
+++ b/Modules/yuvconvert.c
@@ -1,12 +1,3 @@
-/***********************************************************
-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 "yuv.h"