Ejemplo n.º 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
Ejemplo n.º 2
0
 def __init__(self, depth=10):
     this = _htmc.new_HTMC(depth)
     try:
         self.this.append(this)
     except:
         self.this = this
Ejemplo n.º 3
0
Archivo: htmc.py Proyecto: timj/esutil
 def __init__(self, depth=10):
     _htmc.HTMC_swiginit(self, _htmc.new_HTMC(depth))
Ejemplo n.º 4
0
 def __init__(self, depth=10): 
     this = _htmc.new_HTMC(depth)
     try: self.this.append(this)
     except: self.this = this
Ejemplo n.º 5
0
 def __init__(self, *args): 
     this = _htmc.new_HTMC(*args)
     try: self.this.append(this)
     except: self.this = this