示例#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