summaryrefslogtreecommitdiffstats
path: root/Parser
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2000-09-01 23:29:29 (GMT)
committerGuido van Rossum <guido@python.org>2000-09-01 23:29:29 (GMT)
commit8586991099e4ace18ee94163a96b8ea1bed77ebe (patch)
treeba6eb91446d702b0841d1eb13bcaac2c8f1974e5 /Parser
parentbb8be93a50b0293b812634575a493c4eaf676773 (diff)
downloadcpython-8586991099e4ace18ee94163a96b8ea1bed77ebe.zip
cpython-8586991099e4ace18ee94163a96b8ea1bed77ebe.tar.gz
cpython-8586991099e4ace18ee94163a96b8ea1bed77ebe.tar.bz2
REMOVED all CWI, CNRI and BeOpen copyright markings.
This should match the situation in the 1.6b1 tree.
Diffstat (limited to 'Parser')
-rw-r--r--Parser/acceler.c9
-rw-r--r--Parser/assert.h9
-rw-r--r--Parser/bitset.c9
-rw-r--r--Parser/firstsets.c9
-rw-r--r--Parser/grammar.c9
-rw-r--r--Parser/grammar1.c9
-rw-r--r--Parser/intrcheck.c9
-rw-r--r--Parser/listnode.c9
-rw-r--r--Parser/metagrammar.c9
-rw-r--r--Parser/myreadline.c9
-rw-r--r--Parser/node.c9
-rw-r--r--Parser/parser.c9
-rw-r--r--Parser/parser.h9
-rw-r--r--Parser/parsetok.c9
-rw-r--r--Parser/pgen.c9
-rw-r--r--Parser/pgen.h9
-rw-r--r--Parser/pgenmain.c9
-rw-r--r--Parser/printgrammar.c9
-rw-r--r--Parser/tokenizer.c9
-rw-r--r--Parser/tokenizer.h9
20 files changed, 0 insertions, 180 deletions
diff --git a/Parser/acceler.c b/Parser/acceler.c
index cd8e444..1b789e7 100644
--- a/Parser/acceler.c
+++ b/Parser/acceler.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.
-******************************************************************/
/* Parser accelerator module */
diff --git a/Parser/assert.h b/Parser/assert.h
index e97534e..d4ed72c 100644
--- a/Parser/assert.h
+++ b/Parser/assert.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.
-******************************************************************/
#ifdef MPW /* This is for MPW's File command */
diff --git a/Parser/bitset.c b/Parser/bitset.c
index a69cc36..3834e19 100644
--- a/Parser/bitset.c
+++ b/Parser/bitset.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.
-******************************************************************/
/* Bitset primitives used by the parser generator */
diff --git a/Parser/firstsets.c b/Parser/firstsets.c
index 295f67d..d6c4084 100644
--- a/Parser/firstsets.c
+++ b/Parser/firstsets.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.
-******************************************************************/
/* Computation of FIRST stets */
diff --git a/Parser/grammar.c b/Parser/grammar.c
index c4efce7..2a0574d 100644
--- a/Parser/grammar.c
+++ b/Parser/grammar.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.
-******************************************************************/
/* Grammar implementation */
diff --git a/Parser/grammar1.c b/Parser/grammar1.c
index 16821f4..b2631b7 100644
--- a/Parser/grammar1.c
+++ b/Parser/grammar1.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.
-******************************************************************/
/* Grammar subroutines needed by parser */
diff --git a/Parser/intrcheck.c b/Parser/intrcheck.c
index d20ed61..4c11e4c 100644
--- a/Parser/intrcheck.c
+++ b/Parser/intrcheck.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.
-******************************************************************/
/* Check for interrupts */
diff --git a/Parser/listnode.c b/Parser/listnode.c
index 68f28bf..c0b3b66 100644
--- a/Parser/listnode.c
+++ b/Parser/listnode.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 a node on a file */
diff --git a/Parser/metagrammar.c b/Parser/metagrammar.c
index 16b7626..ae67eb1 100644
--- a/Parser/metagrammar.c
+++ b/Parser/metagrammar.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 "pgenheaders.h"
#include "metagrammar.h"
diff --git a/Parser/myreadline.c b/Parser/myreadline.c
index a996a6e..6451824 100644
--- a/Parser/myreadline.c
+++ b/Parser/myreadline.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.
-******************************************************************/
/* Readline interface for tokenizer.c and [raw_]input() in bltinmodule.c.
By default, or when stdin is not a tty device, we have a super
diff --git a/Parser/node.c b/Parser/node.c
index 6844965..277520a 100644
--- a/Parser/node.c
+++ b/Parser/node.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.
-******************************************************************/
#ifdef HAVE_LIMITS_H
#include <limits.h>
diff --git a/Parser/parser.c b/Parser/parser.c
index 5017a50..d379f60 100644
--- a/Parser/parser.c
+++ b/Parser/parser.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.
-******************************************************************/
/* Parser implementation */
diff --git a/Parser/parser.h b/Parser/parser.h
index d0df8cf..cf8d318 100644
--- a/Parser/parser.h
+++ b/Parser/parser.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.
-******************************************************************/
/* Parser interface */
diff --git a/Parser/parsetok.c b/Parser/parsetok.c
index 5f51f6a..b68fbd7 100644
--- a/Parser/parsetok.c
+++ b/Parser/parsetok.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.
-******************************************************************/
/* Parser-tokenizer link implementation */
diff --git a/Parser/pgen.c b/Parser/pgen.c
index 0bc38dc..961f3bc 100644
--- a/Parser/pgen.c
+++ b/Parser/pgen.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.
-******************************************************************/
/* Parser generator */
/* XXX This file is not yet fully PROTOized */
diff --git a/Parser/pgen.h b/Parser/pgen.h
index ddf52e6..8a325ed 100644
--- a/Parser/pgen.h
+++ b/Parser/pgen.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.
-******************************************************************/
/* Parser generator interface */
diff --git a/Parser/pgenmain.c b/Parser/pgenmain.c
index a366981..0c155de 100644
--- a/Parser/pgenmain.c
+++ b/Parser/pgenmain.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.
-******************************************************************/
/* Parser generator main program */
diff --git a/Parser/printgrammar.c b/Parser/printgrammar.c
index 1cd45ee..5540698 100644
--- a/Parser/printgrammar.c
+++ b/Parser/printgrammar.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.
-******************************************************************/
/* Print a bunch of C initializers that represent a grammar */
diff --git a/Parser/tokenizer.c b/Parser/tokenizer.c
index eb84d14..6ae5084 100644
--- a/Parser/tokenizer.c
+++ b/Parser/tokenizer.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.
-******************************************************************/
/* Tokenizer implementation */
diff --git a/Parser/tokenizer.h b/Parser/tokenizer.h
index 93a04ab..8fded37 100644
--- a/Parser/tokenizer.h
+++ b/Parser/tokenizer.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.
-******************************************************************/
/* Tokenizer interface */