summaryrefslogtreecommitdiff
path: root/Objects
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2000-06-30 23:58:06 +0000
committerGuido van Rossum <guido@python.org>2000-06-30 23:58:06 +0000
commitffcc3813d82e6b96db79f518f4e67b940a13ce64 (patch)
treebd67bf6fddc1d7555ebc56d961b9c3571458ebd4 /Objects
parentfd71b9e9d496caa510dec56a9b69966558d6ba5d (diff)
downloadcpython-git-ffcc3813d82e6b96db79f518f4e67b940a13ce64.tar.gz
Change copyright notice - 2nd try.
Diffstat (limited to 'Objects')
-rw-r--r--Objects/abstract.c6
-rw-r--r--Objects/bufferobject.c6
-rw-r--r--Objects/classobject.c6
-rw-r--r--Objects/cobject.c6
-rw-r--r--Objects/complexobject.c6
-rw-r--r--Objects/dictobject.c6
-rw-r--r--Objects/fileobject.c6
-rw-r--r--Objects/floatobject.c6
-rw-r--r--Objects/frameobject.c6
-rw-r--r--Objects/funcobject.c6
-rw-r--r--Objects/intobject.c6
-rw-r--r--Objects/listobject.c6
-rw-r--r--Objects/longobject.c6
-rw-r--r--Objects/methodobject.c6
-rw-r--r--Objects/moduleobject.c6
-rw-r--r--Objects/object.c6
-rw-r--r--Objects/rangeobject.c6
-rw-r--r--Objects/stringobject.c6
-rw-r--r--Objects/tupleobject.c6
-rw-r--r--Objects/typeobject.c6
-rw-r--r--Objects/xxobject.c6
21 files changed, 0 insertions, 126 deletions
diff --git a/Objects/abstract.c b/Objects/abstract.c
index 9da4173a90..1800912548 100644
--- a/Objects/abstract.c
+++ b/Objects/abstract.c
@@ -1,9 +1,4 @@
/***********************************************************
-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.
@@ -11,7 +6,6 @@ All rights reserved.
See the file "Misc/COPYRIGHT" for information on usage and
redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
-
******************************************************************/
/* Abstract Object Interface (many thanks to Jim Fulton) */
diff --git a/Objects/bufferobject.c b/Objects/bufferobject.c
index 8f82cd01b8..9bce20e89a 100644
--- a/Objects/bufferobject.c
+++ b/Objects/bufferobject.c
@@ -1,9 +1,4 @@
/***********************************************************
-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.
@@ -11,7 +6,6 @@ All rights reserved.
See the file "Misc/COPYRIGHT" for information on usage and
redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
-
******************************************************************/
/* Buffer object implementation */
diff --git a/Objects/classobject.c b/Objects/classobject.c
index 3ea3217210..4a7de7b46c 100644
--- a/Objects/classobject.c
+++ b/Objects/classobject.c
@@ -1,9 +1,4 @@
/***********************************************************
-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.
@@ -11,7 +6,6 @@ All rights reserved.
See the file "Misc/COPYRIGHT" for information on usage and
redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
-
******************************************************************/
/* Class object implementation */
diff --git a/Objects/cobject.c b/Objects/cobject.c
index 387c30eb0f..b184acb279 100644
--- a/Objects/cobject.c
+++ b/Objects/cobject.c
@@ -1,9 +1,4 @@
/***********************************************************
-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.
@@ -11,7 +6,6 @@ All rights reserved.
See the file "Misc/COPYRIGHT" for information on usage and
redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
-
******************************************************************/
/* Wrap void* pointers to be passed between C modules */
diff --git a/Objects/complexobject.c b/Objects/complexobject.c
index df8cf5a73c..7ef8a51268 100644
--- a/Objects/complexobject.c
+++ b/Objects/complexobject.c
@@ -1,9 +1,4 @@
/***********************************************************
-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.
@@ -11,7 +6,6 @@ All rights reserved.
See the file "Misc/COPYRIGHT" for information on usage and
redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
-
******************************************************************/
/* Complex object implementation */
diff --git a/Objects/dictobject.c b/Objects/dictobject.c
index fb6b8581f8..fd0ad10e94 100644
--- a/Objects/dictobject.c
+++ b/Objects/dictobject.c
@@ -1,9 +1,4 @@
/***********************************************************
-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.
@@ -11,7 +6,6 @@ All rights reserved.
See the file "Misc/COPYRIGHT" for information on usage and
redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
-
******************************************************************/
/* Dictionary object implementation using a hash table */
diff --git a/Objects/fileobject.c b/Objects/fileobject.c
index e919baef74..5d2ef8fca7 100644
--- a/Objects/fileobject.c
+++ b/Objects/fileobject.c
@@ -1,9 +1,4 @@
/***********************************************************
-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.
@@ -11,7 +6,6 @@ All rights reserved.
See the file "Misc/COPYRIGHT" for information on usage and
redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
-
******************************************************************/
/* File object implementation */
diff --git a/Objects/floatobject.c b/Objects/floatobject.c
index 8bde6f6c03..55fcd06b95 100644
--- a/Objects/floatobject.c
+++ b/Objects/floatobject.c
@@ -1,9 +1,4 @@
/***********************************************************
-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.
@@ -11,7 +6,6 @@ All rights reserved.
See the file "Misc/COPYRIGHT" for information on usage and
redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
-
******************************************************************/
/* Float object implementation */
diff --git a/Objects/frameobject.c b/Objects/frameobject.c
index c7ed0bd382..fcf25fdef0 100644
--- a/Objects/frameobject.c
+++ b/Objects/frameobject.c
@@ -1,9 +1,4 @@
/***********************************************************
-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.
@@ -11,7 +6,6 @@ All rights reserved.
See the file "Misc/COPYRIGHT" for information on usage and
redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
-
******************************************************************/
/* Frame object implementation */
diff --git a/Objects/funcobject.c b/Objects/funcobject.c
index 94f515da3a..289a29f21d 100644
--- a/Objects/funcobject.c
+++ b/Objects/funcobject.c
@@ -1,9 +1,4 @@
/***********************************************************
-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.
@@ -11,7 +6,6 @@ All rights reserved.
See the file "Misc/COPYRIGHT" for information on usage and
redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
-
******************************************************************/
/* Function object implementation */
diff --git a/Objects/intobject.c b/Objects/intobject.c
index 3b7f8e19a5..ba3dde1b73 100644
--- a/Objects/intobject.c
+++ b/Objects/intobject.c
@@ -1,9 +1,4 @@
/***********************************************************
-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.
@@ -11,7 +6,6 @@ All rights reserved.
See the file "Misc/COPYRIGHT" for information on usage and
redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
-
******************************************************************/
/* Integer object implementation */
diff --git a/Objects/listobject.c b/Objects/listobject.c
index 52fe448a29..2cf381f74f 100644
--- a/Objects/listobject.c
+++ b/Objects/listobject.c
@@ -1,9 +1,4 @@
/***********************************************************
-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.
@@ -11,7 +6,6 @@ All rights reserved.
See the file "Misc/COPYRIGHT" for information on usage and
redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
-
******************************************************************/
/* List object implementation */
diff --git a/Objects/longobject.c b/Objects/longobject.c
index c539e50b35..c67d48fb97 100644
--- a/Objects/longobject.c
+++ b/Objects/longobject.c
@@ -1,9 +1,4 @@
/***********************************************************
-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.
@@ -11,7 +6,6 @@ All rights reserved.
See the file "Misc/COPYRIGHT" for information on usage and
redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
-
******************************************************************/
/* Long (arbitrary precision) integer object implementation */
diff --git a/Objects/methodobject.c b/Objects/methodobject.c
index c21d22c809..4874c28504 100644
--- a/Objects/methodobject.c
+++ b/Objects/methodobject.c
@@ -1,9 +1,4 @@
/***********************************************************
-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.
@@ -11,7 +6,6 @@ All rights reserved.
See the file "Misc/COPYRIGHT" for information on usage and
redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
-
******************************************************************/
/* Method object implementation */
diff --git a/Objects/moduleobject.c b/Objects/moduleobject.c
index 2f23cc6ff4..23b630c891 100644
--- a/Objects/moduleobject.c
+++ b/Objects/moduleobject.c
@@ -1,9 +1,4 @@
/***********************************************************
-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.
@@ -11,7 +6,6 @@ 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 object implementation */
diff --git a/Objects/object.c b/Objects/object.c
index 91be3a6d8c..4479e7dba1 100644
--- a/Objects/object.c
+++ b/Objects/object.c
@@ -1,9 +1,4 @@
/***********************************************************
-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.
@@ -11,7 +6,6 @@ All rights reserved.
See the file "Misc/COPYRIGHT" for information on usage and
redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
-
******************************************************************/
/* Generic object operations; and implementation of None (NoObject) */
diff --git a/Objects/rangeobject.c b/Objects/rangeobject.c
index 7eb2dc38f5..558130ea8e 100644
--- a/Objects/rangeobject.c
+++ b/Objects/rangeobject.c
@@ -1,9 +1,4 @@
/***********************************************************
-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.
@@ -11,7 +6,6 @@ All rights reserved.
See the file "Misc/COPYRIGHT" for information on usage and
redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
-
******************************************************************/
/* Range object implementation */
diff --git a/Objects/stringobject.c b/Objects/stringobject.c
index 3b7fcde09a..b547aa34bd 100644
--- a/Objects/stringobject.c
+++ b/Objects/stringobject.c
@@ -1,9 +1,4 @@
/***********************************************************
-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.
@@ -11,7 +6,6 @@ All rights reserved.
See the file "Misc/COPYRIGHT" for information on usage and
redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
-
******************************************************************/
/* String object implementation */
diff --git a/Objects/tupleobject.c b/Objects/tupleobject.c
index 8d13d13b2d..f39f6c0885 100644
--- a/Objects/tupleobject.c
+++ b/Objects/tupleobject.c
@@ -1,9 +1,4 @@
/***********************************************************
-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.
@@ -11,7 +6,6 @@ All rights reserved.
See the file "Misc/COPYRIGHT" for information on usage and
redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
-
******************************************************************/
/* Tuple object implementation */
diff --git a/Objects/typeobject.c b/Objects/typeobject.c
index 43a7e59024..059f7ce264 100644
--- a/Objects/typeobject.c
+++ b/Objects/typeobject.c
@@ -1,9 +1,4 @@
/***********************************************************
-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.
@@ -11,7 +6,6 @@ All rights reserved.
See the file "Misc/COPYRIGHT" for information on usage and
redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
-
******************************************************************/
/* Type object implementation */
diff --git a/Objects/xxobject.c b/Objects/xxobject.c
index 6309931f15..bb8a4022e3 100644
--- a/Objects/xxobject.c
+++ b/Objects/xxobject.c
@@ -1,9 +1,4 @@
/***********************************************************
-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.
@@ -11,7 +6,6 @@ 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 new object type.