https://bugs.winehq.org/show_bug.cgi?id=50004
Bug ID: 50004 Summary: [5.19 regression] wine hangs running simple batch process Python script Product: Wine Version: 5.19 Hardware: x86-64 OS: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: ntdll Assignee: wine-bugs@winehq.org Reporter: xantares09@hotmail.com Distribution: ArchLinux
wine 5.19 (5.18 is ok) hangs while running the following script in Python (3.8.6) the script runs the echo command, grabs the output and waits for termination
import subprocess proc = subprocess.Popen('echo hello', shell=True, stdout=subprocess.PIPE) stdout_data, stderr_data = proc.communicate() ret = proc.poll() print(ret, stdout_data, stderr_data)