[Python-checkins] commit of r41607 - python/trunk/Python/ast.c

neal.norwitz python-checkins at python.org
Mon Dec 5 08:16:42 CET 2005


Author: neal.norwitz
Date: Mon Dec  5 08:16:38 2005
New Revision: 41607

Modified:
   python/trunk/Python/ast.c
Log:
Remove unnecessary extern variable

Modified: python/trunk/Python/ast.c
==============================================================================
--- python/trunk/Python/ast.c	(original)
+++ python/trunk/Python/ast.c	Mon Dec  5 08:16:38 2005
@@ -82,8 +82,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