[issue34943] sched cancel (wrong item removed from queue)

2021-11-22 Thread Irit Katriel
Change by Irit Katriel : -- resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> Document that sched.cancel() doesn't distinguish equal events and can break order ___ Python tracker

[issue34943] sched cancel (wrong item removed from queue)

2018-10-09 Thread ajneu
ajneu added the comment: Ah ... https://bugs.python.org/issue19270 amazing! assert ev1 == ev2 does not fail! (the equality just checks timestamp as far as I can see) Terrible. In particular: Terrible if the documentation blatently lies to me:

[issue34943] sched cancel (wrong item removed from queue)

2018-10-09 Thread ajneu
New submission from ajneu : Hi, in the code given below, the last assert fails when running with /mingw64/bin/python3 (Python 3.7.0 -- mingw64's python3 from msys2 project) C:\Python36\python.exe (Python 3.6.6 -- windows installer) It does not fail when running with /usr/bin/python3 (Python