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 glaubich
Recipients glaubich
Date 2018-09-21.08:44:27
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1537519467.4.0.956365154283.issue34760@psf.upfronthosting.co.za>
In-reply-to
Content
Maybe this is just how it should have been working the entire time, and osc is just holding it wrong.

Since:

class B:
    pass

issubclass(f, B)

Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: issubclass() arg 1 must be a class

... but:

issubclass(B, A)
False
History
Date User Action Args
2018-09-21 08:44:27glaubichsetrecipients: + glaubich
2018-09-21 08:44:27glaubichsetmessageid: <1537519467.4.0.956365154283.issue34760@psf.upfronthosting.co.za>
2018-09-21 08:44:27glaubichlinkissue34760 messages
2018-09-21 08:44:27glaubichcreate