(self)
| 246 | return MarshalItemExporter(self.output, **kwargs) |
| 247 | |
| 248 | def _check_output(self): |
| 249 | self.output.seek(0) |
| 250 | self._assert_expected_item(marshal.load(self.output)) |
| 251 | |
| 252 | def test_nonstring_types_item(self): |
| 253 | item = self._get_nonstring_types_item() |
nothing calls this directly
no test coverage detected