[Python-checkins] commit of r41609 - python/branches/ast-arena/Python/ast.c
neal.norwitz
python-checkins at python.org
Mon Dec 5 08:19:19 CET 2005
Author: neal.norwitz
Date: Mon Dec 5 08:19:15 2005
New Revision: 41609
Modified:
python/branches/ast-arena/Python/ast.c
Log:
Remove unnecessary extern variable
Modified: python/branches/ast-arena/Python/ast.c
==============================================================================
--- python/branches/ast-arena/Python/ast.c (original)
+++ python/branches/ast-arena/Python/ast.c Mon Dec 5 08:19:15 2005
@@ -42,8 +42,6 @@
static PyObject *parsestr(const char *s, const char *encoding);
static PyObject *parsestrplus(struct compiling *, const node *n);
-extern grammar _PyParser_Grammar; /* From graminit.c */
-
#ifndef LINENO
#define LINENO(n) ((n)->n_lineno)
#endif
More information about the Python-checkins
mailing list