summaryrefslogtreecommitdiff
path: root/Python/compile.c
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2004-07-08 01:49:00 +0000
committerNeal Norwitz <nnorwitz@gmail.com>2004-07-08 01:49:00 +0000
commit021d0870a7eb73a97492c0e65e98d8555440d8fd (patch)
treeb6ea5849ab8ecefd2e9fd1922ba32478d454baac /Python/compile.c
parent8357d6452775aea64dc689c740fc28f07dcd26b8 (diff)
downloadcpython-021d0870a7eb73a97492c0e65e98d8555440d8fd.tar.gz
Remove unused macros in .c files
Diffstat (limited to 'Python/compile.c')
-rw-r--r--Python/compile.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/Python/compile.c b/Python/compile.c
index 16328b53e7..0d230d643a 100644
--- a/Python/compile.c
+++ b/Python/compile.c
@@ -51,9 +51,6 @@ int Py_OptimizeFlag = 0;
#define DUPLICATE_ARGUMENT \
"duplicate argument '%s' in function definition"
-#define ILLEGAL_DYNAMIC_SCOPE \
-"%.100s: exec or 'import *' makes names ambiguous in nested scope"
-
#define GLOBAL_AFTER_ASSIGN \
"name '%.400s' is assigned to before global declaration"
@@ -845,8 +842,6 @@ dump(node *n, int pad, int depth)
dump(CHILD(n, i), pad + 1, depth);
}
-#define DUMP(N) dump(N, 0, -1)
-
static int
com_init(struct compiling *c, const char *filename)
{