Skip to content

Commit

Permalink
pythongh-114050: Remove typo format string in longobject
Browse files Browse the repository at this point in the history
  • Loading branch information
kcatss committed Jan 14, 2024
1 parent ca6cf56 commit 4bd6dc6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Objects/longobject.c
Original file line number Diff line number Diff line change
Expand Up @@ -6171,7 +6171,7 @@ long_vectorcall(PyObject *type, PyObject * const*args,
return long_new_impl(_PyType_CAST(type), args[0], args[1]);
default:
return PyErr_Format(PyExc_TypeError,
"int expected at most 2 argument%s, got %zd",
"int expected at most 2 arguments, got %zd",
nargs);
}
}
Expand Down

0 comments on commit 4bd6dc6

Please sign in to comment.