Exemplo n.º 1
0
 def __init__(self):
     """__init__(mt::ThreadGroup self) -> ThreadGroup"""
     this = _mt.new_ThreadGroup()
     try:
         self.this.append(this)
     except __builtin__.Exception:
         self.this = this
Exemplo n.º 2
0
Arquivo: mt.py Projeto: mdaus/nitro
 def __init__(self):
     """__init__(mt::ThreadGroup self) -> ThreadGroup"""
     this = _mt.new_ThreadGroup()
     try:
         self.this.append(this)
     except __builtin__.Exception:
         self.this = this
Exemplo n.º 3
0
 def __init__(self, *args):
     """
     __init__(mt::ThreadGroup self, bool pinToCPU) -> ThreadGroup
     __init__(mt::ThreadGroup self) -> ThreadGroup
     """
     this = _mt.new_ThreadGroup(*args)
     try:
         self.this.append(this)
     except __builtin__.Exception:
         self.this = this
Exemplo n.º 4
0
 def __init__(self, *args):
     r"""__init__(ThreadGroup self, bool pinToCPU=getDefaultPinToCPU()) -> ThreadGroup"""
     _mt.ThreadGroup_swiginit(self, _mt.new_ThreadGroup(*args))