blob: 49d5cefbb9753ceebc5bbdacd32ae774a2a49cd0 [file] [log] [blame]
Martin v. Löwisef04c442008-03-19 05:04:44 +00001# Copyright 2006 Google, Inc. All Rights Reserved.
2# Licensed to PSF under a Contributor Agreement.
3
4"""Export the Python grammar and symbols."""
5
6# Python imports
7import os
8
9# Local imports
10from .pgen2 import token
11from .pgen2 import driver
12from . import pytree
13
14# The grammar file
15_GRAMMAR_FILE = os.path.join(os.path.dirname(__file__), "Grammar.txt")
16
17
18class Symbols(object):
19
20 def __init__(self, grammar):
21 """Initializer.
22
23 Creates an attribute for each grammar symbol (nonterminal),
24 whose value is the symbol's type (an int >= 256).
25 """
Martin v. Löwis8a5f8ca2008-03-19 05:33:36 +000026 for name, symbol in grammar.symbol2number.items():
Martin v. Löwisef04c442008-03-19 05:04:44 +000027 setattr(self, name, symbol)
28
29
30python_grammar = driver.load_grammar(_GRAMMAR_FILE)
31python_symbols = Symbols(python_grammar)