def __init__(self, argument=None, children=None, name=None): ReSTDirective.__init__( self, argument=argument, children=children, name=name, )
def __init__(self, argument=None, children=None, name=None, options=None): if isinstance(argument, types.TypeType): argument = argument.__module__ + '.' + argument.__name__ ReSTDirective.__init__( self, argument=argument, children=children, name=name, options=options, )
def __init__(self, argument=None, children=None, name=None, options=None): if isinstance(argument, type): argument = argument.__module__ + '.' + argument.__name__ ReSTDirective.__init__( self, argument=argument, children=children, name=name, options=options, )
def __init__(self, argument=None, children=None, name=None, options=None): if isinstance(argument, type): argument = argument.__module__ + '.' + argument.__name__ new_options = {'private-bases': True} if options is not None: new_options.update(options) ReSTDirective.__init__( self, argument=argument, children=children, name=name, options=new_options, )
def __init__( self, graph=None, name=None, options=None, ): from abjad.tools import documentationtools if graph is not None: assert isinstance(graph, documentationtools.GraphvizGraph) self._graph = graph ReSTDirective.__init__( self, name=name, options=options, )
def __init__(self, argument=None, children=None, directive=None, name=None, options=None, ): ReSTDirective.__init__( self, argument=argument, children=children, name=name, options=options, ) self.directive = directive
def __init__( self, argument=None, children=None, directive='automodule', name=None, options=None, ): ReSTDirective.__init__( self, argument=argument, children=children, name=name, options=options, ) self.directive = directive