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 serhiy.storchaka
Recipients Arfrever, georg.brandl, larry, python-dev, richard, serhiy.storchaka, vajrasky, vstinner
Date 2014-02-16.20:22:05
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1392582125.63.0.750016145678.issue20517@psf.upfronthosting.co.za>
In-reply-to
Content
I think it is worth to mention this in Doc/whatsnew/3.4.rst, as this is a little incompatible change.

Python 3.3:

>>> x = OSError(2, 'No such file or directory', 'foo', 0, 'bar')
>>> x.args
(2, 'No such file or directory', 'foo', 0, 'bar')

Python 3.4:

>>> x = OSError(2, 'No such file or directory', 'foo', 0, 'bar')
>>> x.args
(2, 'No such file or directory')
History
Date User Action Args
2014-02-16 20:22:05serhiy.storchakasetrecipients: + serhiy.storchaka, richard, georg.brandl, vstinner, larry, Arfrever, python-dev, vajrasky
2014-02-16 20:22:05serhiy.storchakasetmessageid: <1392582125.63.0.750016145678.issue20517@psf.upfronthosting.co.za>
2014-02-16 20:22:05serhiy.storchakalinkissue20517 messages
2014-02-16 20:22:05serhiy.storchakacreate