diff options
author | puuu <puuu@users.noreply.github.com> | 2016-11-07 14:47:16 +0900 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-11-08 02:01:05 +0300 |
commit | 933198c55fdc4881198139676b61ff1f621cb39a (patch) | |
tree | 3adb26b3bfdcb5f1ccb1d03bf8b8c4cd5c35131d /docs/reference/speed_python.rst | |
parent | 1cc168d48736cca9326835eefb8b5ccdc4d63718 (diff) | |
download | micropython-933198c55fdc4881198139676b61ff1f621cb39a.tar.gz micropython-933198c55fdc4881198139676b61ff1f621cb39a.zip |
docs/*/quickref.rst: Use new semantics of ticks_diff()
Diffstat (limited to 'docs/reference/speed_python.rst')
-rw-r--r-- | docs/reference/speed_python.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/reference/speed_python.rst b/docs/reference/speed_python.rst index 2f1d16cea1..8efba4702b 100644 --- a/docs/reference/speed_python.rst +++ b/docs/reference/speed_python.rst @@ -132,7 +132,7 @@ The following enables any function or method to be timed by adding an def new_func(*args, **kwargs): t = time.ticks_us() result = f(*args, **kwargs) - delta = time.ticks_diff(t, time.ticks_us()) + delta = time.ticks_diff(time.ticks_us(), t) print('Function {} Time = {:6.3f}ms'.format(myname, delta/1000)) return result return new_func |