(self, size)
| 1983 | @unittest.skipIf(ctypes is None, 'need ctypes') |
| 1984 | class PyUnicodeWriterFormatTest(unittest.TestCase): |
| 1985 | def create_writer(self, size): |
| 1986 | return _testcapi.PyUnicodeWriter(size) |
| 1987 | |
| 1988 | def writer_format(self, writer, *args): |
| 1989 | from ctypes import c_char_p, pythonapi, c_int, c_void_p |
no outgoing calls
no test coverage detected