You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm not able to send data to the process that only listens for input (does not send data).
Spawning a python file with this code creates the issue: input("")
With a python file like this it works: input("Hello")
I'm spawning the python file like this: const ptyProcess = pty.spawn(path.join(process.cwd(), "./python/python.exe"),["./test.py"]
The same issue occur when spawning a similar program written in C#.
I'm using the electron example provided in this repository (if you want to replicate this issue).
The text was updated successfully, but these errors were encountered:
Environment details
Issue description
I'm not able to send data to the process that only listens for input (does not send data).
Spawning a python file with this code creates the issue:
input("")
With a python file like this it works:
input("Hello")
I'm spawning the python file like this:
const ptyProcess = pty.spawn(path.join(process.cwd(), "./python/python.exe"),["./test.py"]
The same issue occur when spawning a similar program written in C#.
I'm using the electron example provided in this repository (if you want to replicate this issue).
The text was updated successfully, but these errors were encountered: