Ofek Lev
Ofek Lev
Script to reproduce: ```python import io import os import shutil import signal import sys import tempfile import threading import time from subprocess import list2cmdline from winpty import PTY, Backend, WinptyError...
Script to reproduce: ```python import io import os import shutil import signal import sys import tempfile import threading import time from subprocess import list2cmdline from winpty import PTY, Backend, WinptyError...
I'm not sure if this is a Windows limitation but when I run something like `python -c "print(input('Test: '))"` the process hangs. Is there a way to allow input? Here...
Introduced in https://github.com/andfoy/winpty-rs/pull/79
https://github.com/andfoy/pywinpty/blob/356919d0c52bccc5e66e4e2be8408997524f7aff/winpty/winpty.pyi#L15 ``` PTY.__new__() got an unexpected keyword argument 'encoding' ```
In order enable type checking for consumers of libraries, a `py.typed` file is required to be shipped at the root of supported packages. See: https://typing.python.org/en/latest/spec/distributing.html#packaging-type-information For this library, the file...