Improve `PyBytes_FromStringAndSize` test coverage · Issue #...
There's a fast-path in PyBytes_FromStringAndSize that is not covered: cpython/Objects/bytesobject.c Lines 120 to 124 in 8549559 if (size == 1 && str != NULL) { op = CHARACTER(*str & 255); assert(_Py_IsImmortal(op)); return (PyObject *)op...