Home | History | Annotate | Download | only in python2.7

Lines Matching refs:issubclass

150         if issubclass(typ, dict) and r is dict.__repr__:
179 if ((issubclass(typ, list) and r is list.__repr__) or
180 (issubclass(typ, tuple) and r is tuple.__repr__) or
181 (issubclass(typ, set) and r is set.__repr__) or
182 (issubclass(typ, frozenset) and r is frozenset.__repr__)
185 if issubclass(typ, list):
188 elif issubclass(typ, set):
196 elif issubclass(typ, frozenset):
224 if issubclass(typ, tuple) and length == 1:
272 if issubclass(typ, dict) and r is dict.__repr__:
297 if (issubclass(typ, list) and r is list.__repr__) or \
298 (issubclass(typ, tuple) and r is tuple.__repr__):
299 if issubclass(typ, list):