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.

Author pitrou
Recipients pitrou
Date 2010-07-18.14:55:42
SpamBayes Score 0.11146232
Marked as misclassified No
Message-id <1279464944.67.0.616745975029.issue9294@psf.upfronthosting.co.za>
In-reply-to
Content
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;
    }
History
Date User Action Args
2010-07-18 14:55:44pitrousetrecipients: + pitrou
2010-07-18 14:55:44pitrousetmessageid: <1279464944.67.0.616745975029.issue9294@psf.upfronthosting.co.za>
2010-07-18 14:55:42pitroulinkissue9294 messages
2010-07-18 14:55:42pitroucreate