(s, expected)
| 2923 | [("xyz", "xyz"), ("1", "1"), ('"xx"', "xx"), ("'abc'", "abc"), ("None", None)], |
| 2924 | ) |
| 2925 | def test_unicode_from_string(s, expected): |
| 2926 | _from_string_test(Unicode, s, expected) |
| 2927 | |
| 2928 | |
| 2929 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected
searching dependent graphs…