Message160178
| Author |
Arfrever |
| Recipients |
Arfrever, brett.cannon |
| Date |
2012年05月07日.22:33:30 |
| SpamBayes Score |
-1.0 |
| Marked as misclassified |
Yes |
| Message-id |
<1336430011.64.0.70812729636.issue14745@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
$ python3.2 -c 'open("/dev/null", "w").read()'
Traceback (most recent call last):
File "<string>", line 1, in <module>
io.UnsupportedOperation: not readable
$ python3.3 -c 'open("/dev/null", "w").read()'
Traceback (most recent call last):
File "<string>", line 1, in <module>
_frozen_importlib.UnsupportedOperation: not readable
$ python3.3 -c 'import _frozen_importlib; _frozen_importlib.UnsupportedOperation'
Traceback (most recent call last):
File "<string>", line 1, in <module>
AttributeError: 'module' object has no attribute 'UnsupportedOperation' |
|
History
|
|---|
| Date |
User |
Action |
Args |
| 2012年05月07日 22:33:31 | Arfrever | set | recipients:
+ Arfrever, brett.cannon |
| 2012年05月07日 22:33:31 | Arfrever | set | messageid: <1336430011.64.0.70812729636.issue14745@psf.upfronthosting.co.za> |
| 2012年05月07日 22:33:31 | Arfrever | link | issue14745 messages |
| 2012年05月07日 22:33:30 | Arfrever | create |
|