[Python-checkins] commit of r41608 - python/branches/ast-objects/Python/ast.c

neal.norwitz python-checkins at python.org
Mon Dec 5 08:18:17 CET 2005


Author: neal.norwitz
Date: Mon Dec  5 08:18:15 2005
New Revision: 41608

Modified:
   python/branches/ast-objects/Python/ast.c
Log:
Remove unnecessary extern variable

Modified: python/branches/ast-objects/Python/ast.c
==============================================================================
--- python/branches/ast-objects/Python/ast.c	(original)
+++ python/branches/ast-objects/Python/ast.c	Mon Dec  5 08:18:15 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