Module osbot_utils.helpers.ast.nodes.Ast_With
Expand source code
from osbot_utils.helpers.ast.Ast_Node import Ast_Node
class Ast_With(Ast_Node):
def info(self):
return {'Ast_With': {'body' : self.body() ,
'items': self.items()}}
Classes
class Ast_With (node)
-
Expand source code
class Ast_With(Ast_Node): def info(self): return {'Ast_With': {'body' : self.body() , 'items': self.items()}}
Ancestors
Methods
def info(self)
-
Expand source code
def info(self): return {'Ast_With': {'body' : self.body() , 'items': self.items()}}