コード例 #1
0
ファイル: _htmcCode.py プロジェクト: thespacedoctor/HMpTy
 def __init__(self, depth=16, log=False):
     if log == False:
         if log == False:
             from fundamentals.logs import emptyLogger
             self.log = emptyLogger()
     else:
         self.log = log
     this = _htmc.new_HTMC(depth)
     try:
         self.this.append(this)
     except:
         self.this = this
コード例 #2
0
 def __init__(self, depth=10):
     this = _htmc.new_HTMC(depth)
     try:
         self.this.append(this)
     except:
         self.this = this
コード例 #3
0
ファイル: htmc.py プロジェクト: timj/esutil
 def __init__(self, depth=10):
     _htmc.HTMC_swiginit(self, _htmc.new_HTMC(depth))
コード例 #4
0
ファイル: htmc.py プロジェクト: lqleeqee/esutil
 def __init__(self, depth=10): 
     this = _htmc.new_HTMC(depth)
     try: self.this.append(this)
     except: self.this = this
コード例 #5
0
ファイル: htmc.py プロジェクト: d80b2t/python
 def __init__(self, *args): 
     this = _htmc.new_HTMC(*args)
     try: self.this.append(this)
     except: self.this = this