(s, expected)
| 2931 | [("xyz", "xyz"), ("1", "1"), ('"xx"', "xx"), ("'abc'", "abc"), ("None", None)], |
| 2932 | ) |
| 2933 | def test_cunicode_from_string(s, expected): |
| 2934 | _from_string_test(CUnicode, s, expected) |
| 2935 | |
| 2936 | |
| 2937 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected
searching dependent graphs…