Message211357
| 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') |
|