This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author hook
Recipients docs@python, hook
Date 2020-03-12.08:54:06
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1584003246.97.0.382809912153.issue39945@roundup.psfhosted.org>
In-reply-to
Content
Step to reproduce:
Open page: https://docs.python.org/3/library/sched.html

Location: Documentation : sched — Event scheduler 

Description:
In the text is definition of priority: "Events scheduled for the same time will be executed in the order of their priority. A lower number represents a higher priority."

I assume it is correct, but example shows different behavior. There are scheduled two events with priority two and one. In print on the end of example, they are in wrong order :
Code:
s.enter(5, 2, print_time, argument=('positional',))
s.enter(5, 1, print_time, kwargs={'a': 'keyword'}) 

Current Result:
From print_time 930343695.274 positional
From print_time 930343695.275 keyword

Expected result:
From print_time 930343695.274 keyword
From print_time 930343695.275 positional

Conclusion :
I tested the example code and it gave me expected result in order "keyword","positional"
History
Date User Action Args
2020-03-12 08:54:06hooksetrecipients: + hook, docs@python
2020-03-12 08:54:06hooksetmessageid: <1584003246.97.0.382809912153.issue39945@roundup.psfhosted.org>
2020-03-12 08:54:06hooklinkissue39945 messages
2020-03-12 08:54:06hookcreate