Пример #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
Пример #2
0
Файл: mt.py Проект: 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
Пример #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
Пример #4
0
 def __init__(self, *args):
     r"""__init__(ThreadGroup self, bool pinToCPU=getDefaultPinToCPU()) -> ThreadGroup"""
     _mt.ThreadGroup_swiginit(self, _mt.new_ThreadGroup(*args))