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 mark.dickinson
Recipients Avraham Mahfuda, mark.dickinson
Date 2020-02-05.08:00:48
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1580889649.07.0.832304117933.issue39557@roundup.psfhosted.org>
In-reply-to
Content
On the HEAD of the current 3.7 branch, the file you refer to has the following code starting at line 37:

        while True:
            work_item = work_queue.get(block=True)
            if work_item is not None:
                work_item.run()
                ...

Code link: https://github.com/python/cpython/blob/6ba8dc6aae6fa0a7e29ba4ac18227beb38872392/Lib/concurrent/futures/thread.py#L77-L80

Is that the code you're referring to?

If that's not the code you mean, please could you say exactly which version of Python you're looking at? (Code gets added and removed over time, so a line number isn't all that helpful without additional information).
History
Date User Action Args
2020-02-05 08:00:49mark.dickinsonsetrecipients: + mark.dickinson, Avraham Mahfuda
2020-02-05 08:00:49mark.dickinsonsetmessageid: <1580889649.07.0.832304117933.issue39557@roundup.psfhosted.org>
2020-02-05 08:00:49mark.dickinsonlinkissue39557 messages
2020-02-05 08:00:48mark.dickinsoncreate