We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm in the process of developing an ABCE plugin for watts (#48 ) yet, when I run ABCE via watts, the program hangs.
watts
I narrowed the problem down to run() in fileutils.py. Specifically, the program hangs after stdout_data = p.stdout.read() is called.
run()
fileutils.py
stdout_data = p.stdout.read()
p = subprocess.Popen(args, stdout=subprocess.PIPE, stderr=subprocess.PIPE, universal_newlines=True) while True: select.select([p.stdout, p.stderr], [], []) stdout_data = p.stdout.read() stderr_data = p.stderr.read()
I think this should be changed to communicate() per the subprocess documentation.
communicate()
subprocess
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
I'm in the process of developing an ABCE plugin for
watts
(#48 ) yet, when I run ABCE viawatts
, the program hangs.I narrowed the problem down to
run()
infileutils.py
. Specifically, the program hangs afterstdout_data = p.stdout.read()
is called.I think this should be changed to
communicate()
per thesubprocess
documentation.The text was updated successfully, but these errors were encountered: