(self, t)
| 23 | @pytest.mark.skipif(IS_JYTHON, reason="CPython related test") |
| 24 | class TestCPython(unittest.TestCase): |
| 25 | def p(self, t): |
| 26 | for a in t: |
| 27 | sys.stdout.write("%s\n" % (a,)) |
| 28 | |
| 29 | def test_imports3(self): |
| 30 | tip = _pydev_imports_tipper.generate_tip("os") |