Kaydet (Commit) 9da3583e authored tarafından Raymond Hettinger's avatar Raymond Hettinger Kaydeden (comit) Miss Islington (bot)

Fix typo (micro->nano) (GH-11759)

üst 85e102a2
...@@ -269,4 +269,4 @@ if __name__=='__main__': ...@@ -269,4 +269,4 @@ if __name__=='__main__':
continue continue
timing = min(Timer(f).repeat(7, 1000)) timing = min(Timer(f).repeat(7, 1000))
timing *= 1000000 / (len(trials) * steps_per_trial) 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__))
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment