[Python-Dev] More std test breakage
Skip Montanaro
skip@mojam.com (Skip Montanaro)
Tue, 27 Feb 2001 17:39:02 -0600 (CST)
Tim> test_inspect.py still failing under -O; probably all platforms.
Tim> New failure in test___all__.py, *possibly* specific to Windows, but
Tim> I don't see any "termios.py" anywhere so hard to believe it could
Tim> be working anywhere else either:
...
NameError: Case mismatch for module name termios
(filename c:\code\python\dist\src\lib\TERMIOS.py)
Try cvs update. Lib/getpass.py shouldn't be trying to import TERMIOS
anymore. The case mismatch you're seeing is because it can find the now
defunct TERMIOS.py module but you obviously don't have the termios module.
Skip