(original) (raw)
changeset: 99950:4f1ed606410b branch: 2.7 parent: 99946:21356a5b8a5e user: Senthil Kumaran senthil@uthcode.com date: Sun Jan 17 17:05:14 2016 -0800 files: Doc/c-api/intro.rst description: Issue26142 - Fix a formatting bug in c-api intro doc. diff -r 21356a5b8a5e -r 4f1ed606410b Doc/c-api/intro.rst --- a/Doc/c-api/intro.rst Sat Jan 16 23:43:58 2016 -0500 +++ b/Doc/c-api/intro.rst Sun Jan 17 17:05:14 2016 -0800 @@ -258,7 +258,7 @@ if (PyObject_SetItem(target, index, item) < 0) { Py_DECREF(index); return -1; - } + } Py_DECREF(index); } return 0; /senthil@uthcode.com