diff options
| author | Fred Drake <fdrake@acm.org> | 2000-07-09 14:36:13 +0000 |
|---|---|---|
| committer | Fred Drake <fdrake@acm.org> | 2000-07-09 14:36:13 +0000 |
| commit | 3cd2ee4037156e5aab352a75b1e879f47808b468 (patch) | |
| tree | 0d1576ddc5bf12ceec7ec3c1f22002fc82cd8283 | |
| parent | ad9b1f8533ac7c4e37c1733fef5a2a7ed14a3ef1 (diff) | |
| download | cpython-git-3cd2ee4037156e5aab352a75b1e879f47808b468.tar.gz | |
Remove use of HAVE_OLD_CPP to support non-ANSI preprocessors.
| -rw-r--r-- | Modules/parsermodule.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Modules/parsermodule.c b/Modules/parsermodule.c index 8baa693f9c..daa2f80126 100644 --- a/Modules/parsermodule.c +++ b/Modules/parsermodule.c @@ -858,11 +858,7 @@ build_node_tree(PyObject *tuple) } -#ifdef HAVE_OLD_CPP -#define VALIDATER(n) static int validate_/**/n(node *tree) -#else #define VALIDATER(n) static int validate_##n(node *tree) -#endif /* |
