Issue 26142: Formatting bug on https://docs.python.org/2.7/c-api/intro.html (original) (raw)

Issue26142

Created on 2016-01-17 23:37 by Jim Nasby, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Messages (3)
msg258486 - (view) Author: Jim Nasby (Jim Nasby) * Date: 2016-01-17 23:37
The code for the set_all() example has a formatting bug: return -1; } Py_DECREF(index); } it should be return -1; } Py_DECREF(index); }
msg258488 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2016-01-18 01:05
New changeset 4f1ed606410b by Senthil Kumaran in branch '2.7': Issue26142 - Fix a formatting bug in c-api intro doc. https://hg.python.org/cpython/rev/4f1ed606410b
msg258489 - (view) Author: Senthil Kumaran (orsenthil) * (Python committer) Date: 2016-01-18 01:05
Thanks for reporting. Fixed.
History
Date User Action Args
2022-04-11 14:58:26 admin set github: 70330
2016-01-18 01:05:55 orsenthil set status: open -> closednosy: + orsenthilmessages: + resolution: fixedstage: resolved
2016-01-18 01:05:22 python-dev set nosy: + python-devmessages: +
2016-01-17 23:37:34 Jim Nasby create