Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -570,7 +570,10 @@ async def handle_user_input(websocket,key, process, connected):
|
|
570 |
def process_input(user_input, process):
|
571 |
if process:
|
572 |
try:
|
573 |
-
|
|
|
|
|
|
|
574 |
#process.stdin.flush()
|
575 |
except Exception as e:
|
576 |
# print(f"Error writing to process stdin: {str(e)}")
|
|
|
570 |
def process_input(user_input, process):
|
571 |
if process:
|
572 |
try:
|
573 |
+
if user_input=='Ctrl+C':
|
574 |
+
process.send_signal(signal.SIGINT)
|
575 |
+
else:
|
576 |
+
process.stdin.write(user_input.encode('utf-8') + b'\n')
|
577 |
#process.stdin.flush()
|
578 |
except Exception as e:
|
579 |
# print(f"Error writing to process stdin: {str(e)}")
|