(s, *args)
| 41 | # Test PyRun_StringFlags(). |
| 42 | # XXX: fopen() uses different path encoding than Python on Windows. |
| 43 | def run(s, *args): |
| 44 | return _testcapi.run_stringflags(s, Py_file_input, *args) |
| 45 | source = b'a\n' |
| 46 | |
| 47 | self.assertIsNone(run(b'a\n', dict(a=1))) |
no outgoing calls
no test coverage detected