New submission from Arfrever Frehtes Taifersar Arahesis <arfrever....@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 <rep...@bugs.python.org> <http://bugs.python.org/issue14745> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com