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 v+python
Recipients v+python
Date 2009-01-09.11:08:58
SpamBayes Score 0.002911986
Marked as misclassified No
Message-id <1231499341.14.0.968854878286.issue4891@psf.upfronthosting.co.za>
In-reply-to
Content
External code that temporarily replaces warnings.formatwarning, a
technique used in IDLE and worked around (see issue 4043), is broken by
the addition of the optional parameter lineno to the formatwarning function.

While normal calls to functions can be "compatibly" extended with
additional optional parameters, that is not the case when the function
is substituted for, by matching its signature... if the signature is
extended, the code breaks on a Python upgrade, because the substituted
function doesn't know about the new parameter, and has fewer than are
being supplied by calls to the function.

Whether this is good, bad, documented, or appropriate, I don't know, but
it broke CherryPy 3.1.1 when running on Python 2.6, because of the new,
optional, lineno=None parameter to warnings.formatwarning



Not sure I have type and components right.  I'm a newbie.

This problem probably also applies to 3.0, but I don't have the
environment to test it there at present.

I first described this problem on python-dev and the suggestion was made
to put it here (remainder of this comment is a quote):

This formatwarning compatibility problem between 2.5 and 2.6 is a bug.
Please file a new issue for this.

-- Amaury Forgeot d'Arc
History
Date User Action Args
2009-01-09 11:09:01v+pythonsetrecipients: + v+python
2009-01-09 11:09:01v+pythonsetmessageid: <1231499341.14.0.968854878286.issue4891@psf.upfronthosting.co.za>
2009-01-09 11:08:59v+pythonlinkissue4891 messages
2009-01-09 11:08:58v+pythoncreate