예제 #1
0
 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