changeset: 75675:d97ae725814c parent: 75672:27441e0d6a75 user: Victor Stinner date: Thu Mar 15 01:22:16 2012 +0100 files: Lib/queue.py Lib/threading.py Misc/NEWS description: Issue #14222: Use the new time.steady() function instead of time.time() for timeout in queue and threading modules to not be affected of system time update. diff -r 27441e0d6a75 -r d97ae725814c Lib/queue.py --- a/Lib/queue.py Thu Mar 15 01:17:09 2012 +0100 +++ b/Lib/queue.py Thu Mar 15 01:22:16 2012 +0100 @@ -6,7 +6,7 @@ import dummy_threading as threading from collections import deque from heapq import heappush, heappop -from time import time +from time import steady as time __all__ = ['Empty', 'Full', 'Queue', 'PriorityQueue', 'LifoQueue'] diff -r 27441e0d6a75 -r d97ae725814c Lib/threading.py --- a/Lib/threading.py Thu Mar 15 01:17:09 2012 +0100 +++ b/Lib/threading.py Thu Mar 15 01:22:16 2012 +0100 @@ -3,7 +3,7 @@ import sys as _sys import _thread -from time import time as _time, sleep as _sleep +from time import steady as _time, sleep as _sleep from traceback import format_exc as _format_exc from _weakrefset import WeakSet diff -r 27441e0d6a75 -r d97ae725814c Misc/NEWS --- a/Misc/NEWS Thu Mar 15 01:17:09 2012 +0100 +++ b/Misc/NEWS Thu Mar 15 01:22:16 2012 +0100 @@ -24,6 +24,10 @@ Library ------- +- Issue #14222: Use the new time.steady() function instead of time.time() for + timeout in queue and threading modules to not be affected of system time + update. + - Issue #13248: Remove lib2to3.pytree.Base.get_prefix/set_prefix. - Issue #14234: CVE-2012-0876: Randomize hashes of xml attributes in the hash