[New-bugs-announce] [issue14745] Misleading exception

Arfrever Frehtes Taifersar Arahesis report at bugs.python.org
Tue May 8 00:33:31 CEST 2012


New submission from Arfrever Frehtes Taifersar Arahesis <Arfrever.FTA at GMail.Com>:

$ 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'

----------
messages: 160178
nosy: Arfrever, brett.cannon
priority: normal
severity: normal
status: open
title: Misleading exception
versions: Python 3.3

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue14745>
_______________________________________


More information about the New-bugs-announce mailing list