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 louielu
Recipients Bruno Oliveira, Daniel Lepage, louielu
Date 2017-06-05.02:24:26
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1496629467.14.0.414187845862.issue30570@psf.upfronthosting.co.za>
In-reply-to
Content
I can reproduce this bugs on 3.7, Linux.

Python 3.7.0a0 (heads/master:d3bedf356a, Jun  5 2017, 10:21:52) 
[GCC 6.3.1 20170306] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> class Foo(object):
...  def __getattr__(self, attr):
...   return (self, None)
... 
>>> issubclass(Foo(), int)

[1]    21897 segmentation fault (core dumped)  ./python
History
Date User Action Args
2017-06-05 02:24:27louielusetrecipients: + louielu, Bruno Oliveira, Daniel Lepage
2017-06-05 02:24:27louielusetmessageid: <1496629467.14.0.414187845862.issue30570@psf.upfronthosting.co.za>
2017-06-05 02:24:27louielulinkissue30570 messages
2017-06-05 02:24:26louielucreate