Another directory quickly renamed.

This commit is contained in:
Guido van Rossum 1997-04-29 21:03:06 +00:00
parent 2b713b2f67
commit 86bea46b3d
18 changed files with 218 additions and 205 deletions

View file

@ -169,7 +169,7 @@ static label labels[19] = {
{7, 0},
{8, 0},
};
static grammar gram = {
static grammar _PyParser_Grammar = {
6,
dfas,
{19, labels},
@ -179,5 +179,5 @@ static grammar gram = {
grammar *
meta_grammar()
{
return &gram;
return &_PyParser_Grammar;
}