(self, value, check_type=None)
| 159 | class TestPyToAnyValue: |
| 160 | |
| 161 | def check_conversion(self, value, check_type=None): |
| 162 | out, held_type = _py_to_any_to_py(value) |
| 163 | assert out == value |
| 164 | if check_type is not None: |
| 165 | assert held_type == check_type |
| 166 | |
| 167 | def check_inexact_conversion(self, value, check_type=None): |
| 168 | out, held_type = _py_to_any_to_py(value) |
no outgoing calls
no test coverage detected