Mark Dickinson <dicki...@gmail.com> added the comment:

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).

----------
nosy: +mark.dickinson

_______________________________________
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue39557>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to