[New-bugs-announce] [issue26142] Formatting bug on https://docs.python.org/2.7/c-api/intro.html

Jim Nasby report at bugs.python.org
Sun Jan 17 18:37:34 EST 2016


New submission from Jim Nasby:

The code for the set_all() example has a formatting bug:

            return -1;
    }
        Py_DECREF(index);
    }

it should be

            return -1;
        }
        Py_DECREF(index);
    }

----------
assignee: docs at python
components: Documentation
messages: 258486
nosy: Jim Nasby, docs at python
priority: normal
severity: normal
status: open
title: Formatting bug on https://docs.python.org/2.7/c-api/intro.html
type: behavior
versions: Python 2.7

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue26142>
_______________________________________


More information about the New-bugs-announce mailing list