Uh oh!
There was an error while loading. Please reload this page.
gh-96471: Add queue shutdown - #96474
Conversation
bedevere-bot
commented
Sep 1, 2022
Most changes to Python require a NEWS entry. Please add it using the blurb_it web app or the blurb command-line tool. |
gvanrossum
commented
Dec 1, 2022
Note that once this is ready for review we may need three separate reviewers -- one for asyncio, another for multiprocessing, a third for threading. |
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
| Put an item into the queue. If the queue is full, wait until a free | ||
| slot is available before adding item. | ||
| """ | ||
| if self.shutdown_state != _queue_alive: |
There was a problem hiding this comment.
an example:
| ifself.shutdown_state!=_queue_alive: | |
| ifself.shutdown_stateisnot_QueueState.ALIVE: |
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
|
merwok
commented
Feb 10, 2023
This should help: https://devguide.python.org/getting-started/git-boot-camp/ The basic commands you will need are |
YvesDup
commented
Feb 10, 2023
@merwok Thank for your feedback. I created my own branch from EpicWink:queue-shutdown, and I am wondering how to give access to my changes. So may be @EpicWink can merge from YvesDup:queue-shutdown ? |
merwok
commented
Feb 10, 2023
Oh I missed that you weren’t the author of the PR! Yes, you can make a pull request from your fork to epicwink’s work, or use the suggestion system here (comment on a line, find suggestion in the toolbar) to paste your new tests. |
YvesDup
commented
Feb 12, 2023
I read again the original topic and found nothing about what to do about the 'joined' tasks, threads (or processes). I just complete the |
gvanrossum
commented
Feb 13, 2023
@YvesDup What is your definition of a "'joined' task or thread"? |
@gvanrossum: Task (or thread) that has called the |
Co-authored-by: Duprat <yduprat@gmail.com>
Co-authored-by: Duprat <yduprat@gmail.com>
Co-authored-by: Duprat <yduprat@gmail.com>
EpicWink
commented
Feb 21, 2023
I'm reviewing @YvesDup 's changes in EpicWink#2 |
YvesDup
commented
Mar 7, 2023
I have just created a new PR gh-96471: Add queue shutdown, next step. to resume and continue working on this feature |
Uh oh!
There was an error while loading. Please reload this page.