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
The problem is that stdin has fileno 0, and 0 is falsy, so this is always false for stdin.
So, similar to what's going on in #414 , you will never be able to pass an unmodified stdin tty through to the subprocess.
Probably that should be
iffilenoisNone:
The text was updated successfully, but these errors were encountered:
ob_is_tty calls
get_fileno
and then doesThe problem is that stdin has fileno 0, and 0 is falsy, so this is always false for stdin.
So, similar to what's going on in #414 , you will never be able to pass an unmodified stdin tty through to the subprocess.
Probably that should be
The text was updated successfully, but these errors were encountered: