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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
|
# from lookup import NodeNG, StmtMixIn, LocalsDictMixIn
class ArgumentsNG(object):# (Arguments, StmtMixIn, NodeNG)
"""class representing an Arguments node"""
class AssAttrNG(object):# (AssAttr, StmtMixIn, NodeNG)
"""class representing an AssAttr node"""
class AssNameNG(object):# (AssName, StmtMixIn, NodeNG)
"""class representing an AssName node"""
class AssertNG(object):# (Assert, NodeNG)
"""class representing an Assert node"""
class AssignNG(object):# (Assign, NodeNG)
"""class representing an Assign node"""
class AugAssignNG(object):# (AugAssign, NodeNG)
"""class representing an AugAssign node"""
class BackquoteNG(object):# (Backquote, StmtMixIn, NodeNG)
"""class representing a Backquote node"""
class BinOpNG(object):# (BinOp, StmtMixIn, NodeNG)
"""class representing a BinOp node"""
class BoolOpNG(object):# (BoolOp, StmtMixIn, NodeNG)
"""class representing a BoolOp node"""
class BreakNG(object):# (Break, NodeNG)
"""class representing a Break node"""
class CallFuncNG(object):# (CallFunc, StmtMixIn, NodeNG)
"""class representing a CallFunc node"""
class ClassNG(object):# (Class, NodeNG)
"""class representing a Class node"""
class CompareNG(object):# (Compare, StmtMixIn, NodeNG)
"""class representing a Compare node"""
class ComprehensionNG(object):# (Comprehension, StmtMixIn, NodeNG)
"""class representing a Comprehension node"""
class ConstNG(object):# (Const, StmtMixIn, NodeNG)
"""class representing a Const node"""
class ContinueNG(object):# (Continue, NodeNG)
"""class representing a Continue node"""
class DecoratorsNG(object):# (Decorators, StmtMixIn, NodeNG)
"""class representing a Decorators node"""
class DelAttrNG(object):# (DelAttr, StmtMixIn, NodeNG)
"""class representing a DelAttr node"""
class DelNameNG(object):# (DelName, StmtMixIn, NodeNG)
"""class representing a DelName node"""
class DeleteNG(object):# (Delete, NodeNG)
"""class representing a Delete node"""
class DictNG(object):# (Dict, StmtMixIn, NodeNG)
"""class representing a Dict node"""
class DiscardNG(object):# (Discard, NodeNG)
"""class representing a Discard node"""
class EllipsisNG(object):# (Ellipsis, StmtMixIn, NodeNG)
"""class representing an Ellipsis node"""
class EmptyNodeNG(object):# (EmptyNode, StmtMixIn, NodeNG)
"""class representing an EmptyNode node"""
class ExceptHandlerNG(object):# (ExceptHandler, NodeNG)
"""class representing an ExceptHandler node"""
class ExecNG(object):# (Exec, NodeNG)
"""class representing an Exec node"""
class ExtSliceNG(object):# (ExtSlice, StmtMixIn, NodeNG)
"""class representing an ExtSlice node"""
class ForNG(object):# (For, NodeNG)
"""class representing a For node"""
class FromNG(object):# (From, NodeNG)
"""class representing a From node"""
class FunctionNG(object):# (Function, NodeNG)
"""class representing a Function node"""
class GenExprNG(object):# (GenExpr, LocalsDictMixIn, StmtMixIn, NodeNG)
"""class representing a GenExpr node"""
class GetattrNG(object):# (Getattr, StmtMixIn, NodeNG)
"""class representing a Getattr node"""
class GlobalNG(object):# (Global, NodeNG)
"""class representing a Global node"""
class IfNG(object):# (If, NodeNG)
"""class representing an If node"""
class IfExpNG(object):# (IfExp, StmtMixIn, NodeNG)
"""class representing an IfExp node"""
class ImportNG(object):# (Import, NodeNG)
"""class representing an Import node"""
class IndexNG(object):# (Index, StmtMixIn, NodeNG)
"""class representing an Index node"""
class KeywordNG(object):# (Keyword, StmtMixIn, NodeNG)
"""class representing a Keyword node"""
class LambdaNG(object):# (Lambda, LocalsDictMixIn, StmtMixIn, NodeNG)
"""class representing a Lambda node"""
class ListNG(object):# (List, StmtMixIn, NodeNG)
"""class representing a List node"""
class ListCompNG(object):# (ListComp, StmtMixIn, NodeNG)
"""class representing a ListComp node"""
class ModuleNG(object):# (Module, StmtMixIn, NodeNG)
"""class representing a Module node"""
class NameNG(object):# (Name, StmtMixIn, NodeNG)
"""class representing a Name node"""
class PassNG(object):# (Pass, NodeNG)
"""class representing a Pass node"""
class PrintNG(object):# (Print, NodeNG)
"""class representing a Print node"""
class RaiseNG(object):# (Raise, NodeNG)
"""class representing a Raise node"""
class ReturnNG(object):# (Return, NodeNG)
"""class representing a Return node"""
class SliceNG(object):# (Slice, StmtMixIn, NodeNG)
"""class representing a Slice node"""
class SubscriptNG(object):# (Subscript, StmtMixIn, NodeNG)
"""class representing a Subscript node"""
class TryExceptNG(object):# (TryExcept, NodeNG)
"""class representing a TryExcept node"""
class TryFinallyNG(object):# (TryFinally, NodeNG)
"""class representing a TryFinally node"""
class TupleNG(object):# (Tuple, StmtMixIn, NodeNG)
"""class representing a Tuple node"""
class UnaryOpNG(object):# (UnaryOp, StmtMixIn, NodeNG)
"""class representing an UnaryOp node"""
class WhileNG(object):# (While, NodeNG)
"""class representing a While node"""
class WithNG(object):# (With, NodeNG)
"""class representing a With node"""
class YieldNG(object):# (Yield, NodeNG)
"""class representing a Yield node"""
|