Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -691,8 +691,12 @@ def process_input(user_input, process):
|
|
691 |
|
692 |
if user_input == 'Ctrl+C':
|
693 |
print('Stopping process')
|
694 |
-
|
695 |
process.send_signal(signal.SIGINT)
|
|
|
|
|
|
|
|
|
696 |
else:
|
697 |
print(user_input)
|
698 |
process.stdin.write(user_input.encode('utf-8') + b'\n')
|
|
|
691 |
|
692 |
if user_input == 'Ctrl+C':
|
693 |
print('Stopping process')
|
694 |
+
# Send Ctrl+C signal to the subprocess
|
695 |
process.send_signal(signal.SIGINT)
|
696 |
+
# Read output and error asynchronously
|
697 |
+
out, err = await process.communicate()
|
698 |
+
print("Subprocess output:", out)
|
699 |
+
print("Subprocess error:", err)
|
700 |
else:
|
701 |
print(user_input)
|
702 |
process.stdin.write(user_input.encode('utf-8') + b'\n')
|