Skip to content

Commit

Permalink
Rename files to prevent Github from thinking this is a Pascal project
Browse files Browse the repository at this point in the history
  • Loading branch information
eliben committed Aug 23, 2019
1 parent b95fb13 commit bcfb365
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/benchmark/benchmark-parse.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def measure_parse(text, n, progress_cb):
def measure_file(filename, n):
progress_cb = lambda i: print('.', sep='', end='', flush=True)
with open(filename) as f:
print('%-20s' % os.path.basename(filename), end='', flush=True)
print('%-25s' % os.path.basename(filename), end='', flush=True)
text = f.read()
times = measure_parse(text, n, progress_cb)
print(' Mean: %.3f Stddev: %.3f' % (statistics.mean(times),
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit bcfb365

Please sign in to comment.