use yaml.safe_load to silence warning.

This commit is contained in:
Thom Wiggers 2019-04-18 09:26:40 +02:00
父節點 ee680f218b
當前提交 98780c6e8e
沒有發現已知的金鑰在資料庫的簽署中
GPG Key ID: 001BB0A7CE26E363
共有 2 個文件被更改,包括 2 次插入2 次删除

查看文件

@ -55,7 +55,7 @@ class Scheme:
metafile = os.path.join(self.path(), 'META.yml')
try:
with open(metafile, encoding='utf-8') as f:
metadata = yaml.load(f.read())
metadata = yaml.safe_load(f.read())
return metadata
except Exception as e:
print("Can't open {}: {}".format(metafile, e))

查看文件

@ -16,7 +16,7 @@ def test_duplicate_consistency():
if os.path.isfile(os.path.join('duplicate_consistency', '{}_{}.yml'.format(scheme.name, implementation.name))):
metafile = os.path.join('duplicate_consistency', '{}_{}.yml'.format(implementation.scheme.name, implementation.name))
with open(metafile, encoding='utf-8') as f:
metadata = yaml.load(f.read())
metadata = yaml.safe_load(f.read())
for group in metadata['consistency_checks']:
source = pqclean.Implementation.by_name(group['source']['scheme'], group['source']['implementation'])
for file in group['files']: