示例#1
0
 def __init__ (self):
     sfObject.__init__(self)
     self._fname = "<not configured>"
示例#2
0
 def __init__ (self, files, no_files_ok=False):
     sfObject.__init__(self)
     self._file_list = [f for f in pathglob(files) if os.path.isfile(f)]
     if len(self._file_list) == 0:
         if files != None:
             raise BaseException("no files for %s" % files)