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 Arfrever
Recipients Arfrever, Trundle, barry, djc, eric.araujo, nadeem.vawda, ncoghlan, petri.lehtinen, pitrou, python-dev, rpointel, skrah
Date 2011-12-04.03:33:28
SpamBayes Score 6.094227e-07
Marked as misclassified No
Message-id <1322969609.46.0.476602870597.issue12555@psf.upfronthosting.co.za>
In-reply-to
Content
Is the following change in behavior caused by the fix for this issue?

$ python3.2 -c $'class A(IOError):\n  def __init__(self, arg): pass\nA(arg=1)'
$ python3.3 -c $'class A(IOError):\n  def __init__(self, arg): pass\nA(arg=1)'
Traceback (most recent call last):
  File "<string>", line 3, in <module>
TypeError: A does not take keyword arguments
History
Date User Action Args
2011-12-04 03:33:29Arfreversetrecipients: + Arfrever, barry, ncoghlan, pitrou, nadeem.vawda, djc, eric.araujo, Trundle, skrah, python-dev, petri.lehtinen, rpointel
2011-12-04 03:33:29Arfreversetmessageid: <1322969609.46.0.476602870597.issue12555@psf.upfronthosting.co.za>
2011-12-04 03:33:28Arfreverlinkissue12555 messages
2011-12-04 03:33:28Arfrevercreate