我们从Python开源项目中,提取了以下50个代码示例,用于说明如何使用wheel.util.save_config_path()。
def save(self): # Try not to call this a very long time after load() path = save_config_path('wheel') conf = os.path.join(native(path), self.CONFIG_NAME) with open(conf, 'w+') as out: json.dump(self.data, out, indent=2) return self