221 Private method to generate an AST for our source. |
221 Private method to generate an AST for our source. |
222 |
222 |
223 @return generated AST |
223 @return generated AST |
224 @rtype ast.AST |
224 @rtype ast.AST |
225 """ |
225 """ |
226 source = "".join(self.__source) |
226 return ast.parse("".join(self.__source), self.__filename) |
227 return compile(source, self.__filename, 'exec', ast.PyCF_ONLY_AST) |
|
228 |
227 |
229 def getConfig(self): |
228 def getConfig(self): |
230 """ |
229 """ |
231 Public method to get the configuration dictionary. |
230 Public method to get the configuration dictionary. |
232 |
231 |