Difference in Python thread.join() between Python 3.7 and 3.8 – Debian
I have a small Python program that behaves differently in Python 3.7 and Python 3.8. I'm struggling to understand why. The #threading changelog for Python 3.8 does not explain this. Here's the code: import time from threading import Event, Thread…