diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2005-12-05 07:16:38 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2005-12-05 07:16:38 (GMT) |
commit | e5368925417759be3eef7ec477366a409c650280 (patch) | |
tree | f149b1c9497a6d64d8d202be6865db963c1a9385 /Python | |
parent | ec77645df98b2ae8ce13c80359e69998ff4d6f4c (diff) | |
download | cpython-e5368925417759be3eef7ec477366a409c650280.zip cpython-e5368925417759be3eef7ec477366a409c650280.tar.gz cpython-e5368925417759be3eef7ec477366a409c650280.tar.bz2 |
Remove unnecessary extern variable
Diffstat (limited to 'Python')
-rw-r--r-- | Python/ast.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Python/ast.c b/Python/ast.c index 731bf9a..2250683 100644 --- a/Python/ast.c +++ b/Python/ast.c @@ -82,8 +82,6 @@ static PyObject *parsenumber(const char *); 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 |