Example #1
0
 def __init__(self, *p, **kw):
     from bl.utils import buildNamespace
     namespace = buildNamespace(
             'twisted.internet', 'itertools', 'functools', 'collections',
             'bl.instrument.fsynth', 'bl.notes', 'bl.scheduler', 'bl.debug',
             'bl.arp', 'bl.ugen', 'comps.complib', 'txosc.async', 'bl.osc')
     namespace.update({'random': random})
     self.namespace = namespace
     ConsoleManhole.__init__(self, *p, **kw)
Example #2
0
 def __init__(self, *p, **kw):
     from bl.utils import buildNamespace
     namespace = buildNamespace('twisted.internet', 'itertools',
                                'functools', 'collections',
                                'bl.instrument.fsynth', 'bl.notes',
                                'bl.scheduler', 'bl.debug', 'bl.arp',
                                'bl.ugen', 'comps.complib', 'txosc.async',
                                'bl.osc')
     namespace.update({'random': random})
     self.namespace = namespace
     ConsoleManhole.__init__(self, *p, **kw)
Example #3
0
    def __init__(self, *p, **kw):
        from bl.utils import buildNamespace

        namespace = buildNamespace(
            "twisted.internet",
            "itertools",
            "functools",
            "collections",
            "bl.instrument.fsynth",
            "bl.notes",
            "bl.scheduler",
            "bl.debug",
            "bl.arp",
            "bl.ugen",
            "comps.complib",
            "txosc.async",
            "bl.osc",
        )
        namespace.update({"random": random})
        self.namespace = namespace
        ConsoleManhole.__init__(self, *p, **kw)