This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: tty shipped in win32 distribution
Type: Stage:
Components: Library (Lib) Versions:
process
Status: closed Resolution: not a bug
Dependencies: Superseder:
Assigned To: tim.peters Nosy List: fredriks, gvanrossum, tim.peters
Priority: low Keywords:

Created on 2002-03-03 13:10 by fredriks, last changed 2022-04-10 16:05 by admin. This issue is now closed.

Messages (3)
msg9492 - (view) Author: fredriks (fredriks) Date: 2002-03-03 13:10
Hi,

tty is shipped with the windows distribution..
if one tries to import it (which ofcourse should not
work) you get,

>>> import tty
Traceback (most recent call last):
  File "<stdin>", line 1, in ?
  File "C:\Python21\lib\tty.py", line 5, in ?
    from termios import *
ImportError: No module named termios

this is true for the following versions atleast, 

Python 2.1.2 (#31, Jan 15 2002, 17:28:11) [MSC 32 bit 
(Intel)] on win32
Type "copyright", "credits" or "license" for more 
information.

Python 2.2 (#28, Dec 21 2001, 12:21:22) [MSC 32 bit 
(Intel)] on win32
Type "help", "copyright", "credits" or "license" for 
more information.
msg9493 - (view) Author: Guido van Rossum (gvanrossum) * (Python committer) Date: 2002-03-03 19:34
Logged In: YES 
user_id=6380

I'm not sure I understand your complaint.  We ship all .py
modules with Windows.  The "import tty" *does* fail, doesn't
it?  So what's the bug?
msg9494 - (view) Author: Tim Peters (tim.peters) * (Python committer) Date: 2002-04-04 19:23
Logged In: YES 
user_id=31435

Closed as Not-A-Bug for lack of feedback (it's been a 
month, and, as Guido said, it's not a bug).
History
Date User Action Args
2022-04-10 16:05:03adminsetgithub: 36191
2002-03-03 13:10:35fredrikscreate