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 serhiy.storchaka
Recipients abacabadabacaba, rhettinger, serhiy.storchaka
Date 2015-11-03.07:47:29
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1446536850.3.0.903221565432.issue25455@psf.upfronthosting.co.za>
In-reply-to
Content
Yet one example:

>>> import io
>>> class BR(io.BufferedReader):
...     @property
...     def name(self):
...         return self
... 
>>> repr(BR(io.BytesIO()))
Segmentation fault

The same is for other file-like objects.
History
Date User Action Args
2015-11-03 07:47:30serhiy.storchakasetrecipients: + serhiy.storchaka, rhettinger, abacabadabacaba
2015-11-03 07:47:30serhiy.storchakasetmessageid: <1446536850.3.0.903221565432.issue25455@psf.upfronthosting.co.za>
2015-11-03 07:47:30serhiy.storchakalinkissue25455 messages
2015-11-03 07:47:29serhiy.storchakacreate