def string(self, key): if _swig_: if python2: # c function only knows utf-8 (ascii). translate the unicode key = key.encode('utf-8') return c_rsf.sf_histstring(self.file, key) else: return self.file.string(key)
def string(self,key): return c_rsf.sf_histstring(self.f,key)
def string(self,key): return c_rsf.sf_histstring(self.file,key)