Skip to content

Commit 9da3583

Browse files
rhettingermiss-islington
authored andcommitted
Fix typo (micro->nano) (GH-11759)
1 parent 85e102a commit 9da3583

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tools/scripts/var_access_benchmark.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,4 +269,4 @@ def loop_overhead(trials=trials):
269269
continue
270270
timing = min(Timer(f).repeat(7, 1000))
271271
timing *= 1000000 / (len(trials) * steps_per_trial)
272-
print(u'{:6.1f} \N{greek small letter mu}s\t{}'.format(timing, f.__name__))
272+
print('{:6.1f} ns\t{}'.format(timing, f.__name__))

0 commit comments

Comments
 (0)