(s, expected)
| 2947 | [("xyz", b"xyz"), ("1", b"1"), ('b"xx"', b"xx"), ("b'abc'", b"abc"), ("None", None)], |
| 2948 | ) |
| 2949 | def test_cbytes_from_string(s, expected): |
| 2950 | _from_string_test(CBytes, s, expected) |
| 2951 | |
| 2952 | |
| 2953 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected
searching dependent graphs…