Lines Matching defs:__init__
113 def __init__(self):
236 def __init__(self, lock=None):
422 def __init__(self, value=1):
515 def __init__(self, value=1):
516 Semaphore.__init__(self, value)
555 def __init__(self):
646 def __init__(self, parties, action=None, timeout=None):
849 def __init__(self, group=None, target=None, name=None,
868 the base class constructor (Thread.__init__()) before doing anything
925 assert self._initialized, "Thread.__init__() was not called"
949 raise RuntimeError("thread.__init__() not called")
1105 raise RuntimeError("Thread.__init__() not called")
1153 assert self._initialized, "Thread.__init__() not called"
1158 assert self._initialized, "Thread.__init__() not called"
1170 assert self._initialized, "Thread.__init__() not called"
1182 assert self._initialized, "Thread.__init__() not called"
1193 assert self._initialized, "Thread.__init__() not called"
1211 assert self._initialized, "Thread.__init__() not called"
1217 raise RuntimeError("Thread.__init__() not called")
1379 def __init__(self, interval, function, args=None, kwargs=None):
1380 Thread.__init__(self)
1402 def __init__(self):
1403 Thread.__init__(self, name="MainThread", daemon=False)
1423 def __init__(self):
1424 Thread.__init__(self, name=_newname("Dummy-%d"), daemon=True)