1769 def __typesafeIssubclass(self, obj, classOrTuple): |
1769 def __typesafeIssubclass(self, obj, classOrTuple): |
1770 """ |
1770 """ |
1771 Private method implementing a type safe issubclass() function. |
1771 Private method implementing a type safe issubclass() function. |
1772 |
1772 |
1773 @param obj reference to the object to be tested |
1773 @param obj reference to the object to be tested |
1774 @type any |
1774 @type Any |
1775 @param classOrTuple type to check against |
1775 @param classOrTuple type to check against |
1776 @type type |
1776 @type type |
1777 @return flag indicating a subclass |
1777 @return flag indicating a subclass |
1778 @rtype bool |
1778 @rtype bool |
1779 """ |
1779 """ |