(s, expected)
| 2939 | [("xyz", b"xyz"), ("1", b"1"), ('b"xx"', b"xx"), ("b'abc'", b"abc"), ("None", None)], |
| 2940 | ) |
| 2941 | def test_bytes_from_string(s, expected): |
| 2942 | _from_string_test(Bytes, s, expected) |
| 2943 | |
| 2944 | |
| 2945 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected
searching dependent graphs…