Module osbot_utils.helpers.ast.nodes.Ast_List

Expand source code
from osbot_utils.utils.Dev import pprint
from osbot_utils.helpers.ast.Ast_Node import Ast_Node

class Ast_List(Ast_Node):

    def info(self):
        return {'Ast_List': { 'ctx'  : self.ctx() ,
                              'elts' : self.elts()}}

Classes

class Ast_List (node)
Expand source code
class Ast_List(Ast_Node):

    def info(self):
        return {'Ast_List': { 'ctx'  : self.ctx() ,
                              'elts' : self.elts()}}

Ancestors

Methods

def info(self)
Expand source code
def info(self):
    return {'Ast_List': { 'ctx'  : self.ctx() ,
                          'elts' : self.elts()}}