Module osbot_utils.helpers.ast.nodes.Ast_List_Comp

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

class Ast_List_Comp(Ast_Node):

    def info(self):
        return {'Ast_List_Comp': { 'elt'        : self.elt()        ,
                                   'generators' : self.generators() }}

Classes

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

    def info(self):
        return {'Ast_List_Comp': { 'elt'        : self.elt()        ,
                                   'generators' : self.generators() }}

Ancestors

Methods

def info(self)
Expand source code
def info(self):
    return {'Ast_List_Comp': { 'elt'        : self.elt()        ,
                               'generators' : self.generators() }}