diff options
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/bufferobject.c | 9 | ||||
-rw-r--r-- | Objects/classobject.c | 9 | ||||
-rw-r--r-- | Objects/cobject.c | 9 | ||||
-rw-r--r-- | Objects/complexobject.c | 9 | ||||
-rw-r--r-- | Objects/dictobject.c | 9 | ||||
-rw-r--r-- | Objects/fileobject.c | 9 | ||||
-rw-r--r-- | Objects/floatobject.c | 9 | ||||
-rw-r--r-- | Objects/frameobject.c | 9 | ||||
-rw-r--r-- | Objects/funcobject.c | 9 | ||||
-rw-r--r-- | Objects/intobject.c | 9 | ||||
-rw-r--r-- | Objects/listobject.c | 9 | ||||
-rw-r--r-- | Objects/longobject.c | 9 | ||||
-rw-r--r-- | Objects/methodobject.c | 9 | ||||
-rw-r--r-- | Objects/moduleobject.c | 9 | ||||
-rw-r--r-- | Objects/object.c | 9 | ||||
-rw-r--r-- | Objects/rangeobject.c | 9 | ||||
-rw-r--r-- | Objects/stringobject.c | 9 | ||||
-rw-r--r-- | Objects/tupleobject.c | 9 | ||||
-rw-r--r-- | Objects/typeobject.c | 9 | ||||
-rw-r--r-- | Objects/xxobject.c | 9 |
20 files changed, 0 insertions, 180 deletions
diff --git a/Objects/bufferobject.c b/Objects/bufferobject.c index 91f58c9..1a17ec5 100644 --- a/Objects/bufferobject.c +++ b/Objects/bufferobject.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. -******************************************************************/ /* Buffer object implementation */ diff --git a/Objects/classobject.c b/Objects/classobject.c index 615c8ba..8bbd834 100644 --- a/Objects/classobject.c +++ b/Objects/classobject.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. -******************************************************************/ /* Class object implementation */ diff --git a/Objects/cobject.c b/Objects/cobject.c index 48abb4a..872e515 100644 --- a/Objects/cobject.c +++ b/Objects/cobject.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. -******************************************************************/ /* Wrap void* pointers to be passed between C modules */ diff --git a/Objects/complexobject.c b/Objects/complexobject.c index 6f1cfea..3c9830f 100644 --- a/Objects/complexobject.c +++ b/Objects/complexobject.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. -******************************************************************/ /* Complex object implementation */ diff --git a/Objects/dictobject.c b/Objects/dictobject.c index 37111d2..7be1c67 100644 --- a/Objects/dictobject.c +++ b/Objects/dictobject.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. -******************************************************************/ /* Dictionary object implementation using a hash table */ diff --git a/Objects/fileobject.c b/Objects/fileobject.c index 6305520..a5d2fcc 100644 --- a/Objects/fileobject.c +++ b/Objects/fileobject.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. -******************************************************************/ /* File object implementation */ diff --git a/Objects/floatobject.c b/Objects/floatobject.c index 5650b41..946e3d9 100644 --- a/Objects/floatobject.c +++ b/Objects/floatobject.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. -******************************************************************/ /* Float object implementation */ diff --git a/Objects/frameobject.c b/Objects/frameobject.c index 4a01f3d..f541f1e 100644 --- a/Objects/frameobject.c +++ b/Objects/frameobject.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. -******************************************************************/ /* Frame object implementation */ diff --git a/Objects/funcobject.c b/Objects/funcobject.c index 32d9a61..8b045f4 100644 --- a/Objects/funcobject.c +++ b/Objects/funcobject.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. -******************************************************************/ /* Function object implementation */ diff --git a/Objects/intobject.c b/Objects/intobject.c index 20bb370..411e4dd 100644 --- a/Objects/intobject.c +++ b/Objects/intobject.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. -******************************************************************/ /* Integer object implementation */ diff --git a/Objects/listobject.c b/Objects/listobject.c index 5a704fe..3d02b5f 100644 --- a/Objects/listobject.c +++ b/Objects/listobject.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. -******************************************************************/ /* List object implementation */ diff --git a/Objects/longobject.c b/Objects/longobject.c index 86b4aba..65dcaa0 100644 --- a/Objects/longobject.c +++ b/Objects/longobject.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. -******************************************************************/ /* Long (arbitrary precision) integer object implementation */ diff --git a/Objects/methodobject.c b/Objects/methodobject.c index 4a1fa93..f0bbeea 100644 --- a/Objects/methodobject.c +++ b/Objects/methodobject.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. -******************************************************************/ /* Method object implementation */ diff --git a/Objects/moduleobject.c b/Objects/moduleobject.c index 4e4395e..c655e95 100644 --- a/Objects/moduleobject.c +++ b/Objects/moduleobject.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 object implementation */ diff --git a/Objects/object.c b/Objects/object.c index 9f73cd3..150f357 100644 --- a/Objects/object.c +++ b/Objects/object.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. -******************************************************************/ /* Generic object operations; and implementation of None (NoObject) */ diff --git a/Objects/rangeobject.c b/Objects/rangeobject.c index 20b077f..5c794fc 100644 --- a/Objects/rangeobject.c +++ b/Objects/rangeobject.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. -******************************************************************/ /* Range object implementation */ diff --git a/Objects/stringobject.c b/Objects/stringobject.c index 25621c2..f7c3f4b 100644 --- a/Objects/stringobject.c +++ b/Objects/stringobject.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. -******************************************************************/ /* String object implementation */ diff --git a/Objects/tupleobject.c b/Objects/tupleobject.c index 8e05e86..71e9764 100644 --- a/Objects/tupleobject.c +++ b/Objects/tupleobject.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. -******************************************************************/ /* Tuple object implementation */ diff --git a/Objects/typeobject.c b/Objects/typeobject.c index 2503504..c96c0aa 100644 --- a/Objects/typeobject.c +++ b/Objects/typeobject.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. -******************************************************************/ /* Type object implementation */ diff --git a/Objects/xxobject.c b/Objects/xxobject.c index 21d0aa2..21a00b0 100644 --- a/Objects/xxobject.c +++ b/Objects/xxobject.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 new object type. If your objects will be called foobar, start by copying this file to |