Update key frequency table

This commit is contained in:
Gergely Polonkai 2019-02-19 14:34:05 +01:00
parent 86d12abcaf
commit f65cb6842e
2 changed files with 4727 additions and 792 deletions

5513
keyfreq

File diff suppressed because it is too large Load Diff

View File

@ -24,9 +24,6 @@ for stage in (BASE, HEAD, MERGE_HEAD):
outputs[stage] = {}
if b'"' in output:
raise ValueError(f'There is a " in the output of stage {stage}')
output = output.decode('utf-8')[1:-1].split('\n')
for line in output:
@ -35,6 +32,9 @@ for stage in (BASE, HEAD, MERGE_HEAD):
if not line:
continue
if '"' in line:
continue
m = re.match(r'^\(\(([^) ]+) .\ ([^) ]+)\) \. ([0-9]+)\)$', line)
if not m: