From: Neal Norwitz Date: Thu, 16 Mar 2006 06:01:25 +0000 (+0000) Subject: Get rid of compiler warning about with_msg and as_msg being unused X-Git-Tag: v3.0a1~1503 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e4993c7ac72842d18fb5689d7c77be2246b65708;p=thirdparty%2FPython%2Fcpython.git Get rid of compiler warning about with_msg and as_msg being unused --- diff --git a/Parser/parsetok.c b/Parser/parsetok.c index 07590c2d2f7f..cb79fe486572 100644 --- a/Parser/parsetok.c +++ b/Parser/parsetok.c @@ -92,11 +92,13 @@ PyParser_ParseFileFlags(FILE *fp, const char *filename, grammar *g, int start, /* Parse input coming from the given tokenizer structure. Return error code. */ +#ifdef PY_PARSER_REQUIRES_FUTURE_KEYWORD static char with_msg[] = "%s:%d: Warning: 'with' will become a reserved keyword in Python 2.6\n"; static char as_msg[] = "%s:%d: Warning: 'as' will become a reserved keyword in Python 2.6\n"; +#endif static void warn(const char *msg, const char *filename, int lineno)