summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2012-02-07 22:29:46 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2012-02-07 22:29:46 (GMT)
commit8b30201f7d3028628aba1b4bec203a7b507de73b (patch)
treed28e1a3a7c771de2bc700e012272b9dfbe2f1417 /Misc
parentd1cd99b533a32e063fc4602c439da334d5a10331 (diff)
downloadcpython-8b30201f7d3028628aba1b4bec203a7b507de73b.zip
cpython-8b30201f7d3028628aba1b4bec203a7b507de73b.tar.gz
cpython-8b30201f7d3028628aba1b4bec203a7b507de73b.tar.bz2
Issue #13846: Add time.monotonic(), monotonic clock.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 70f1bfb..7b38240 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -466,6 +466,8 @@ Core and Builtins
Library
-------
+- Issue #13846: Add time.monotonic(), monotonic clock.
+
- Issue #10811: Fix recursive usage of cursors. Instead of crashing,
raise a ProgrammingError now.