[issue4175] Should Unix-only tty be present in Windows /Lib?

2008-10-22 Thread Martin v. Löwis
Martin v. Löwis <[EMAIL PROTECTED]> added the comment: I fail to see the point in not packaging it. Does the error cause an actual problem that would be solved by removing tty.py from the distribution? Closing this as "won't fix". -- nosy: +loewis resolution: -> wont fix status: open -

[issue4175] Should Unix-only tty be present in Windows /Lib?

2008-10-22 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc <[EMAIL PROTECTED]> added the comment: Hm, I don't know if it's even possible. All *.py files are always installed. termios is an extension module, and is simply not compiled on Windows. But the build process never *remove* existing files. -- nosy: +amaury.forgeotda

[issue4175] Should Unix-only tty be present in Windows /Lib?

2008-10-22 Thread Terry J. Reedy
New submission from Terry J. Reedy <[EMAIL PROTECTED]>: As long as tty is *nix only and does not have a msvcrt-based implementation (which I presume is not exactly possible), I think it should be absent, just like termios is. >>> import tty Traceback (most recent call last): File "", line 1, i