(self)
| 353 | self.assertIsNone(slc.step) |
| 354 | |
| 355 | def test_from_import(self): |
| 356 | im = ast.parse("from . import y").body[0] |
| 357 | self.assertIsNone(im.module) |
| 358 | |
| 359 | def test_non_interned_future_from_ast(self): |
| 360 | mod = ast.parse("from __future__ import division") |
nothing calls this directly
no test coverage detected