Conversation
|
Most changes to Python require a NEWS entry. Please add it using the blurb_it web app or the blurb command-line tool. |
|
Note that once this is ready for review we may need three separate reviewers -- one for asyncio, another for multiprocessing, a third for threading. |
Lib/asyncio/queues.py
Outdated
| 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:
| if self.shutdown_state != _queue_alive: | |
| if self.shutdown_state is not _QueueState.ALIVE: |
|
|
This should help: https://devguide.python.org/getting-started/git-boot-camp/ The basic commands you will need are |
|
@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 ? |
|
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. |
|
I read again the original topic and found nothing about what to do about the 'joined' tasks, threads (or processes). I just complete the |
|
@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>
|
I'm reviewing @YvesDup 's changes in EpicWink#2 |
|
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.