summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBar Harel <bzvi7919@gmail.com>2020-10-19 07:33:43 (GMT)
committerGitHub <noreply@github.com>2020-10-19 07:33:43 (GMT)
commit5368c2b6e23660cbce7e38dc68f859c66ac349ee (patch)
treee578050496dd95207d5e4b6a97b05cb47697c7fb /Misc
parent155938907c2b3df71608ddeaa0a43d2ec1f2c699 (diff)
downloadcpython-5368c2b6e23660cbce7e38dc68f859c66ac349ee.zip
cpython-5368c2b6e23660cbce7e38dc68f859c66ac349ee.tar.gz
cpython-5368c2b6e23660cbce7e38dc68f859c66ac349ee.tar.bz2
bpo-19270: Fixed sched.scheduler.cancel to cancel correct event (GH-22729)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2020-10-16-22-48-01.bpo-19270.jd_gkA.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2020-10-16-22-48-01.bpo-19270.jd_gkA.rst b/Misc/NEWS.d/next/Library/2020-10-16-22-48-01.bpo-19270.jd_gkA.rst
new file mode 100644
index 0000000..6330a91
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2020-10-16-22-48-01.bpo-19270.jd_gkA.rst
@@ -0,0 +1,2 @@
+:meth:`sched.scheduler.cancel()` will now cancel the correct event, if two
+events with same priority are scheduled for the same time. Patch by Bar Harel.