Skip to content

Commit a821897

Browse files
committed
fix msg
1 parent f582c0f commit a821897

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/csrc/scalar.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -737,7 +737,7 @@ QuadPrecision_from_raw_bytes(PyObject *Py_UNUSED(module), PyObject *args)
737737
size_t expected = (backend == BACKEND_SLEEF) ? sizeof(Sleef_quad) : sizeof(long double);
738738
if (view.len != (Py_ssize_t)expected) {
739739
PyErr_Format(PyExc_ValueError,
740-
"QuadPrecision.from_raw_bytes expected %zu bytes for the '%s' "
740+
"from_raw_bytes expected %zu bytes for the '%s' "
741741
"backend, got %zd",
742742
expected, backend_str, view.len);
743743
PyBuffer_Release(&view);

0 commit comments

Comments
 (0)