mirror of
https://github.com/python/cpython.git
synced 2025-10-09 16:34:44 +00:00
Issue #18432: Fix unintended API change in the sched module
This commit is contained in:
parent
e6a17862e7
commit
889b92d3aa
3 changed files with 5 additions and 2 deletions
|
@ -172,7 +172,7 @@ class TestCase(unittest.TestCase):
|
|||
e3 = scheduler.enterabs(now + 0.03, 1, fun)
|
||||
# queue property is supposed to return an order list of
|
||||
# upcoming events
|
||||
self.assertEqual(list(scheduler.queue), [e1, e2, e3, e4, e5])
|
||||
self.assertEqual(scheduler.queue, [e1, e2, e3, e4, e5])
|
||||
|
||||
def test_args_kwargs(self):
|
||||
flag = []
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue