summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_sundry.py
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2013-04-08 05:48:22 (GMT)
committerR David Murray <rdmurray@bitdance.com>2013-04-08 05:48:22 (GMT)
commit319d58d599cdc75b27b5518b2c4ab9021655c6f0 (patch)
tree08f4dcda933fe67250f79916056ff978a11500de /Lib/test/test_sundry.py
parent7efa3b8242771f5e63ffaab7bd184e1a5c12c429 (diff)
downloadcpython-319d58d599cdc75b27b5518b2c4ab9021655c6f0.zip
cpython-319d58d599cdc75b27b5518b2c4ab9021655c6f0.tar.gz
cpython-319d58d599cdc75b27b5518b2c4ab9021655c6f0.tar.bz2
#17484: add tests for getpass.
Patch by Thomas Fenzl.
Diffstat (limited to 'Lib/test/test_sundry.py')
-rw-r--r--Lib/test/test_sundry.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_sundry.py b/Lib/test/test_sundry.py
index a364194..84fb0db 100644
--- a/Lib/test/test_sundry.py
+++ b/Lib/test/test_sundry.py
@@ -6,7 +6,7 @@ import unittest
class TestUntestedModules(unittest.TestCase):
def test_untested_modules_can_be_imported(self):
- untested = ('bdb', 'encodings', 'formatter', 'getpass', 'imghdr',
+ untested = ('bdb', 'encodings', 'formatter', 'imghdr',
'keyword', 'macurl2path', 'nturl2path', 'tabnanny')
with support.check_warnings(quiet=True):
for name in untested: