1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
from pypy.interpreter.mixedmodule import MixedModule
class Module(MixedModule):
"""The builtin parser module."""
applevel_name = 'parser'
appleveldefs = {
}
interpleveldefs = {
'__name__' : '(space.wrap("parser"))',
'__doc__' : '(space.wrap("parser module"))',
'suite' : 'pyparser.suite',
'expr' : 'pyparser.expr',
'issuite' : 'pyparser.issuite',
'isexpr' : 'pyparser.isexpr',
'STType' : 'pyparser.W_STType',
'ast2tuple' : 'pyparser.st2tuple',
'st2tuple' : 'pyparser.st2tuple',
'ast2list' : 'pyparser.st2list',
'ast2tuple' : 'pyparser.st2tuple',
'ASTType' : 'pyparser.W_STType',
'compilest' : 'pyparser.compilest',
'compileast' : 'pyparser.compilest',
'ParserError' : 'space.new_exception_class("parser.ParserError")',
}
|