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 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:31Arfreversetrecipients: + Arfrever, brett.cannon
2012-05-07 22:33:31Arfreversetmessageid: <1336430011.64.0.70812729636.issue14745@psf.upfronthosting.co.za>
2012-05-07 22:33:31Arfreverlinkissue14745 messages
2012-05-07 22:33:30Arfrevercreate