pydoc still has a silly encoding

This commit is contained in:
Benjamin Peterson 2010-07-05 14:59:40 +00:00
parent e51ee8a5bc
commit 335d2c757d
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ class LockTests(unittest.TestCase):
class ImportTests(unittest.TestCase):
def test_find_module_encoding(self):
fd = imp.find_module("heapq")[0]
fd = imp.find_module("pydoc")[0]
self.assertEqual(fd.encoding, "iso-8859-1")
def test_issue1267(self):