summaryrefslogtreecommitdiffstats
path: root/Tools
diff options
context:
space:
mode:
authorRaymond Hettinger <rhettinger@users.noreply.github.com>2019-02-05 07:32:55 (GMT)
committerMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2019-02-05 07:32:55 (GMT)
commit9da3583e78603a81b1839e17a420079f734a75b0 (patch)
tree173aaeaa510288d4d30a5193ee49dae1150516fe /Tools
parent85e102a2b090dd693d0801ae2edb9660cfa0f281 (diff)
downloadcpython-9da3583e78603a81b1839e17a420079f734a75b0.zip
cpython-9da3583e78603a81b1839e17a420079f734a75b0.tar.gz
cpython-9da3583e78603a81b1839e17a420079f734a75b0.tar.bz2
Fix typo (micro->nano) (GH-11759)
Diffstat (limited to 'Tools')
-rw-r--r--Tools/scripts/var_access_benchmark.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/scripts/var_access_benchmark.py b/Tools/scripts/var_access_benchmark.py
index b4f3b97..f849045 100644
--- a/Tools/scripts/var_access_benchmark.py
+++ b/Tools/scripts/var_access_benchmark.py
@@ -269,4 +269,4 @@ if __name__=='__main__':
continue
timing = min(Timer(f).repeat(7, 1000))
timing *= 1000000 / (len(trials) * steps_per_trial)
- print(u'{:6.1f} \N{greek small letter mu}s\t{}'.format(timing, f.__name__))
+ print('{:6.1f} ns\t{}'.format(timing, f.__name__))