method: _thread.NamedThreadPool.get

*Not documented*
    def get(self, name=None): 

origin: _thread.NamedThreadPool

where:

function source:

def get(self, name=None): 
    if name is None: 
        l = []
        for x in self._namedthreads.values(): 
            l.extend(x) 
        return l 
    else: 
        return self._namedthreads.get(name, [])

call sites:

called in /home/johnny/projects/merlinux/py/dist/py/thread/pool.py

traceback _thread.NamedThreadPool.get.0