(self)
| 279 | self.assertIs(import_object(u"tornado.escape.utf8"), utf8) |
| 280 | |
| 281 | def test_import_module(self): |
| 282 | self.assertIs(import_object("tornado.escape"), tornado.escape) |
| 283 | |
| 284 | def test_import_module_unicode(self): |
| 285 | # The internal implementation of __import__ differs depending on |
nothing calls this directly
no test coverage detected