[issue39847] EnterNonRecursiveMutex on win32 can hang for 49.7 days: use GetTickCount64() rather than GetTickCount()

2020-03-12 Thread STINNER Victor
STINNER Victor added the comment: Thanks, it's now fixed in 3.7, 3.8 and master branches. Python 3.5 and 3.6 don't get bugfixes anymore: https://devguide.python.org/#status-of-python-branches -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +P

[issue39847] EnterNonRecursiveMutex on win32 can hang for 49.7 days: use GetTickCount64() rather than GetTickCount()

2020-03-12 Thread miss-islington
miss-islington added the comment: New changeset feaf0c37891dfe8f0f3e643c3711af3af23bf805 by bobince in branch '3.7': [3.7] bpo-39847: EnterNonRecursiveMutex() uses GetTickCount64() (GH-18780) (GH-18959) https://github.com/python/cpython/commit/feaf0c37891dfe8f0f3e643c3711af3af23bf805 -

[issue39847] EnterNonRecursiveMutex on win32 can hang for 49.7 days: use GetTickCount64() rather than GetTickCount()

2020-03-12 Thread And Clover
Change by And Clover : -- pull_requests: +18309 pull_request: https://github.com/python/cpython/pull/18959 ___ Python tracker ___ __

[issue39847] EnterNonRecursiveMutex on win32 can hang for 49.7 days: use GetTickCount64() rather than GetTickCount()

2020-03-11 Thread miss-islington
miss-islington added the comment: New changeset 60b1b5ac56fe6099a3d358dc9d6cd6ec72fce2d8 by Miss Islington (bot) in branch '3.8': bpo-39847: EnterNonRecursiveMutex() uses GetTickCount64() (GH-18780) https://github.com/python/cpython/commit/60b1b5ac56fe6099a3d358dc9d6cd6ec72fce2d8 --

[issue39847] EnterNonRecursiveMutex on win32 can hang for 49.7 days: use GetTickCount64() rather than GetTickCount()

2020-03-11 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 8.0 -> 9.0 pull_requests: +18299 pull_request: https://github.com/python/cpython/pull/18945 ___ Python tracker _

[issue39847] EnterNonRecursiveMutex on win32 can hang for 49.7 days: use GetTickCount64() rather than GetTickCount()

2020-03-11 Thread STINNER Victor
STINNER Victor added the comment: New changeset 64838ce7172c7a92183b39b22504b433a33a884d by bobince in branch 'master': bpo-39847: EnterNonRecursiveMutex() uses GetTickCount64() (GH-18780) https://github.com/python/cpython/commit/64838ce7172c7a92183b39b22504b433a33a884d --

[issue39847] EnterNonRecursiveMutex on win32 can hang for 49.7 days: use GetTickCount64() rather than GetTickCount()

2020-03-04 Thread And Clover
Change by And Clover : -- keywords: +patch pull_requests: +18136 stage: -> patch review pull_request: https://github.com/python/cpython/pull/18780 ___ Python tracker ___ _

[issue39847] EnterNonRecursiveMutex on win32 can hang for 49.7 days: use GetTickCount64() rather than GetTickCount()

2020-03-04 Thread And Clover
And Clover added the comment: Yep, should be straightforward to fix (though not to test, as fifty-day test cases tend to be frowned upon...) -- ___ Python tracker ___ ___

[issue39847] EnterNonRecursiveMutex on win32 can hang for 49.7 days: use GetTickCount64() rather than GetTickCount()

2020-03-04 Thread sparrowt
Change by sparrowt : -- nosy: +sparrowt ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.o

[issue39847] EnterNonRecursiveMutex on win32 can hang for 49.7 days: use GetTickCount64() rather than GetTickCount()

2020-03-04 Thread Day Barr
Change by Day Barr : -- nosy: +Day Barr ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.o

[issue39847] EnterNonRecursiveMutex on win32 can hang for 49.7 days: use GetTickCount64() rather than GetTickCount()

2020-03-04 Thread STINNER Victor
Change by STINNER Victor : -- title: EnterNonRecursiveMutex on win32 can hang for 49.7 days -> EnterNonRecursiveMutex on win32 can hang for 49.7 days: use GetTickCount64() rather than GetTickCount() ___ Python tracker