commit | eb8cee83833830630f9d7388bd09d1fcb638b1a2 | [log] [tgz] |
---|---|---|
author | Brett Cannon <brett@python.org> | Thu Mar 17 11:16:38 2011 -0700 |
committer | Brett Cannon <brett@python.org> | Thu Mar 17 11:16:38 2011 -0700 |
tree | 651105352b4f7b17a4e747886562546082e9aaee | |
parent | ecc2db515202456a67e9702ed94ce19fe5b4711f [diff] | |
parent | e9ff2ef20488eb3d1e8bba04516939585f35a148 [diff] |
merge
diff --git a/Lib/test/test_import.py b/Lib/test/test_import.py index cf17c96..ebcc2ca 100644 --- a/Lib/test/test_import.py +++ b/Lib/test/test_import.py
@@ -283,8 +283,6 @@ self.skipTest('path is not encodable to {}'.format(encoding)) with self.assertRaises(ImportError) as c: __import__(path) - self.assertEqual("Import by filename is not supported.", - c.exception.args[0]) def test_import_in_del_does_not_crash(self): # Issue 4236