Open mipicard opened 4 years ago
Is it mingw-w64-*-python
or python
package?
Pip version suggests mingw package.
It is python package, we haven't install any mingw package.
You might want to query the python forums as to whether this recently added feature set (concurrent*) can work on oh-so-old windows7.
Describe the bug
After installing latest MSYS2 on Windows 7, I update it and install Python 3.8.3.
When trying to run a Thread, it silently crash without any error nor continuing the script.
Steps to Reproduce the Problem
Install msys2-x86_64-20200602.exe
Update msys2 runtime to latest version (3.1.5)
Install python 3.8.3 (in the MSYS2 MSYS console) :
Run this simple python script :
from concurrent.futures import ThreadPoolExecutor
def f(id): print('hello from thread {}'.format(id), flush=True)
if name == 'main': with ThreadPoolExecutor() as executor: for i in range(10000): executor.submit(f, i) print('Done', flush=True)