def fsync(self, path, datasync, fh): if not common.windows: if datasync != 0: os.fdatasync(fh) else: os.fsync(fh)