[issue9294] Dead code in Objects/object.c

Antoine Pitrou report at bugs.python.org
Sun Jul 18 16:55:44 CEST 2010


New submission from Antoine Pitrou <pitrou at free.fr>:

internal_print() is called from only one place, with the `nesting` argument wired to 0, therefore the following chunk of code in internal_print() never gets a chance to be executed:

    if (nesting > 10) {
        PyErr_SetString(PyExc_RuntimeError, "print recursion");
        return -1;
    }

----------
components: Interpreter Core
messages: 110651
nosy: pitrou
priority: low
severity: normal
stage: needs patch
status: open
title: Dead code in Objects/object.c
versions: Python 3.1, Python 3.2

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


More information about the Python-bugs-list mailing list