Skip to content

Commit c0f2687

Browse files
committed
Merge branch 'fix-issue-134746' of https://github.com/sharmaigne/cpython into fix-issue-134746
2 parents 14422a4 + 236dd13 commit c0f2687

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Objects/odictobject.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1519,7 +1519,7 @@ odict_init(PyObject *self, PyObject *args, PyObject *kwds)
15191519
if (len == -1)
15201520
return -1;
15211521
if (len > 1) {
1522-
const char *msg = "expected at most 1 arguments, got %zd";
1522+
const char *msg = "expected at most 1 argument, got %zd";
15231523
PyErr_Format(PyExc_TypeError, msg, len);
15241524
return -1;
15251525
}

0 commit comments

Comments
 (0)