This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Formatting bug on https://docs.python.org/2.7/c-api/intro.html
Type: behavior Stage: resolved
Components: Documentation Versions: Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: Jim Nasby, docs@python, orsenthil, python-dev
Priority: normal Keywords:

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:26adminsetgithub: 70330
2016-01-18 01:05:55orsenthilsetstatus: open -> closed

nosy: + orsenthil
messages: + msg258489

resolution: fixed
stage: resolved
2016-01-18 01:05:22python-devsetnosy: + python-dev
messages: + msg258488
2016-01-17 23:37:34Jim Nasbycreate