-
Notifications
You must be signed in to change notification settings - Fork 244
New issue
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
Xterm and node-pty input problem #453
Labels
Comments
Not sure I'm understanding the problem? Maybe a screenshot would help? |
Cannot repro this under linux. Is this a windows only issue by any chance? |
@jerch it's Windows, I see |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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: