Kaydet (Commit) e57c957f authored tarafından Senthil Kumaran's avatar Senthil Kumaran

Issue26142 - Fix a formatting bug in c-api intro doc.

üst c5e8935d
...@@ -258,7 +258,7 @@ sets all items of a list (actually, any mutable sequence) to a given item:: ...@@ -258,7 +258,7 @@ sets all items of a list (actually, any mutable sequence) to a given item::
if (PyObject_SetItem(target, index, item) < 0) { if (PyObject_SetItem(target, index, item) < 0) {
Py_DECREF(index); Py_DECREF(index);
return -1; return -1;
} }
Py_DECREF(index); Py_DECREF(index);
} }
return 0; return 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment