method: _thread.NamedThreadPool.start

*Not documented*
    def start(self, name, func): 

origin: _thread.NamedThreadPool

where:

function source:

def start(self, name, func): 
    l = self._namedthreads.setdefault(name, []) 
    thread = threading.Thread(name="%s%d" % (name, len(l)), 
                              target=func) 
    thread.start() 
    l.append(thread) 

call sites:

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

traceback _thread.NamedThreadPool.start.0

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

traceback _thread.NamedThreadPool.start.1

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

traceback _thread.NamedThreadPool.start.2

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

traceback _thread.NamedThreadPool.start.3

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

traceback _thread.NamedThreadPool.start.4

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

traceback _thread.NamedThreadPool.start.5

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

traceback _thread.NamedThreadPool.start.6

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

traceback _thread.NamedThreadPool.start.7

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

traceback _thread.NamedThreadPool.start.8

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

traceback _thread.NamedThreadPool.start.9

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

traceback _thread.NamedThreadPool.start.10

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

traceback _thread.NamedThreadPool.start.11

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

traceback _thread.NamedThreadPool.start.12

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

traceback _thread.NamedThreadPool.start.13

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

traceback _thread.NamedThreadPool.start.14

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

traceback _thread.NamedThreadPool.start.15

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

traceback _thread.NamedThreadPool.start.16

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

traceback _thread.NamedThreadPool.start.17

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

traceback _thread.NamedThreadPool.start.18