commit | 8b30201f7d3028628aba1b4bec203a7b507de73b | [log] [tgz] |
---|---|---|
author | Victor Stinner <victor.stinner@haypocalc.com> | Tue Feb 07 23:29:46 2012 +0100 |
committer | Victor Stinner <victor.stinner@haypocalc.com> | Tue Feb 07 23:29:46 2012 +0100 |
tree | d28e1a3a7c771de2bc700e012272b9dfbe2f1417 | |
parent | d1cd99b533a32e063fc4602c439da334d5a10331 [diff] [blame] |
Issue #13846: Add time.monotonic(), monotonic clock.
diff --git a/Misc/NEWS b/Misc/NEWS index 70f1bfb..7b38240 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -466,6 +466,8 @@ Library ------- +- Issue #13846: Add time.monotonic(), monotonic clock. + - Issue #10811: Fix recursive usage of cursors. Instead of crashing, raise a ProgrammingError now.