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.

classification
Title: [doc] sched.enter priority has no impact on execution
Type: Stage:
Components: Documentation Versions: Python 3.11, Python 3.10, Python 3.9, Python 3.6
process
Status: open Resolution:
Dependencies: Superseder:
Assigned To: docs@python Nosy List: docs@python, mfisher, r.david.murray, rhettinger, ronaldoussoren, sahilmn
Priority: normal Keywords: easy

Created on 2018-05-21 05:43 by sahilmn, last changed 2022-04-11 14:59 by admin.

Files
File name Uploaded Description Edit
sched.enter.bug.py sahilmn, 2018-05-21 05:43 Contains example code demonstrating bug. Priority order not followed in sched event execution.
Messages (7)
msg317215 - (view) Author: sahilmn (sahilmn) Date: 2018-05-21 05:43
`sched.enter` doesn't work as expected. If two events are scheduled with the same delay, then their order of execution seems to be dictated by the order of `enter` statements for the events instead of the priority order.

Ref attached file with example code. `sched.enterabs` works as expected.
msg317218 - (view) Author: Ronald Oussoren (ronaldoussoren) * (Python committer) Date: 2018-05-21 08:14
I don't think  there's a bug here: sched.enter schedules an event some time after the current time. The two calls to sched.enter are not at the same time, hence the priority is not used because the events are scheduled at different times.
msg317249 - (view) Author: sahilmn (sahilmn) Date: 2018-05-21 21:08
The task schedule is executed when `s.run()` is called. There should be a
*delay = 5*  from the time the scheduling statement is executed.

If your claim is true, the priority argument is useless since it has no
impact on the execution order when `delay` values are equal. Clearly, this
is not the case since the example for `enter` at
https://docs.python.org/3/library/sched.html aims to demonstrate the use of
`priority` argument.

On Mon, May 21, 2018 at 4:14 AM, Ronald Oussoren <report@bugs.python.org>
wrote:

>
> Ronald Oussoren <ronaldoussoren@mac.com> added the comment:
>
> I don't think  there's a bug here: sched.enter schedules an event some
> time after the current time. The two calls to sched.enter are not at the
> same time, hence the priority is not used because the events are scheduled
> at different times.
>
> ----------
> nosy: +ronaldoussoren
>
> _______________________________________
> Python tracker <report@bugs.python.org>
> <https://bugs.python.org/issue33590>
> _______________________________________
>
msg317251 - (view) Author: R. David Murray (r.david.murray) * (Python committer) Date: 2018-05-21 21:22
I think Ronald is correct.

The priority argument for enter would apply if you called enter twice with two different delays, but they happen to end up pointing to the same moment in time from the scheduler's point of view.

How would the computer know that two calls to enter with the same delay are supposed to point to the same moment in time?

But you are correct, it looks like the example would make more sense if it used enterabs, not enter.

You can test our theory by writing time and delay functions with a course enough resolution that two sequential calls to delay will end up pointing to the time time unit.  (Or we could look at the code :)
msg317260 - (view) Author: Ronald Oussoren (ronaldoussoren) * (Python committer) Date: 2018-05-22 06:00
I did look at the code :-)

The enter() method just calls enterabs() with an absolute time calculated from the current time (using the timefunc for the scheduler) and the passed relative time.  Two calls of enter() with the same relative time will therefore use different absolute times unless you're using custom time function with a lower resolution. 

Prorities are only used when who events are scheduled for the same absolute time, which is easy to arrange for using enterabs() but less so using enter() but still can happen when using calculated timeout values.

I don't agree about the example in the documentation, it is a clear demonstration about how to use the API in general and AFAIK is not intended to show how priorities work.
msg317304 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2018-05-22 16:02
It would be nice to either modify the example or add another example to show the use of enterabs() and of the priority field being used as a tie breaker for two events scheduled at the same time.
msg318213 - (view) Author: Matthew Fisher (mfisher) Date: 2018-05-30 21:54
> I did look at the code :-)

I also looked at the code.  I had to do so to understand why the example output was not "as expected."  ;)

> I don't agree about the example in the documentation, it is a clear
> demonstration about how to use the API in general and AFAIK is not
> intended to show how priorities work.

Although I came to the same conclusion as you regarding both the fact and the reason the output was correct, I respectfully disagree that the example is clear.  It is not.  Yes, the example, as written, is intended to demonstrate the API -- which consists of several functionalities *including priority*.  If this were not so, the example would not be passing different priority values with the same delay value.

I suggest re-opening this issue as a documentation bug and modifying the example to use enterabs instead of enter.

Respectfully,
M Fisher
History
Date User Action Args
2022-04-11 14:59:00adminsetgithub: 77771
2021-11-23 08:19:25iritkatrielsetassignee: docs@python
title: sched.enter priority has no impact on execution -> [doc] sched.enter priority has no impact on execution
components: + Documentation

keywords: + easy
nosy: + docs@python
versions: + Python 3.9, Python 3.10, Python 3.11
resolution: not a bug ->
2018-05-30 21:54:49mfishersetnosy: + mfisher
messages: + msg318213
2018-05-22 16:02:57rhettingersetstatus: pending -> open
nosy: + rhettinger
messages: + msg317304

2018-05-22 06:00:37ronaldoussorensetstatus: open -> pending
resolution: not a bug
messages: + msg317260
2018-05-21 21:22:19r.david.murraysetnosy: + r.david.murray
messages: + msg317251
2018-05-21 21:08:54sahilmnsetmessages: + msg317249
2018-05-21 08:14:48ronaldoussorensetnosy: + ronaldoussoren
messages: + msg317218
2018-05-21 05:43:33sahilmncreate