summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_sundry.py
diff options
context:
space:
mode:
authorSenthil Kumaran <senthil@uthcode.com>2013-10-24 04:55:35 (GMT)
committerSenthil Kumaran <senthil@uthcode.com>2013-10-24 04:55:35 (GMT)
commita46079e85394c4c6fa5a5a1a462eca8e38b85a42 (patch)
treec6b91dc70a05514f3343c5c6148c358d0cb52f4a /Lib/test/test_sundry.py
parentdfea31254b70582defd11c1772022187cb70c160 (diff)
parentb82a3dc2409e68dbd20d1991ba2e9d1c490c67a3 (diff)
downloadcpython-a46079e85394c4c6fa5a5a1a462eca8e38b85a42.zip
cpython-a46079e85394c4c6fa5a5a1a462eca8e38b85a42.tar.gz
cpython-a46079e85394c4c6fa5a5a1a462eca8e38b85a42.tar.bz2
merge from 3.3: Increase the test coverage of macurl2path module. Patch by Colin Williams.
Diffstat (limited to 'Lib/test/test_sundry.py')
-rw-r--r--Lib/test/test_sundry.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/test/test_sundry.py b/Lib/test/test_sundry.py
index 77ec9f0..2da3ac0 100644
--- a/Lib/test/test_sundry.py
+++ b/Lib/test/test_sundry.py
@@ -7,7 +7,7 @@ import unittest
class TestUntestedModules(unittest.TestCase):
def test_untested_modules_can_be_imported(self):
untested = ('bdb', 'encodings', 'formatter', 'imghdr',
- 'macurl2path', 'nturl2path', 'tabnanny')
+ 'nturl2path', 'tabnanny')
with support.check_warnings(quiet=True):
for name in untested:
try:
@@ -47,6 +47,7 @@ class TestUntestedModules(unittest.TestCase):
import distutils.command.upload
import html.entities
+
try:
import tty # Not available on Windows
except ImportError: