mirror of https://github.com/python/cpython
gh-101162: Forbid using issubclass() with GenericAlias as the 1st arg (GH-103369)
This commit is contained in:
parent
666b68e8f2
commit
d93b4ac2ff
|
@ -4091,6 +4091,22 @@ class GenericTests(BaseTestCase):
|
|||
with self.assertRaises(TypeError):
|
||||
C[()]
|
||||
|
||||
def test_generic_subclass_checks(self):
|
||||
for typ in [list[int], List[int],
|
||||
tuple[int, str], Tuple[int, str],
|
||||
typing.Callable[..., None],
|
||||
collections.abc.Callable[..., None]]:
|
||||
with self.subTest(typ=typ):
|
||||
self.assertRaises(TypeError, issubclass, typ, object)
|
||||
self.assertRaises(TypeError, issubclass, typ, type)
|
||||
self.assertRaises(TypeError, issubclass, typ, typ)
|
||||
self.assertRaises(TypeError, issubclass, object, typ)
|
||||
|
||||
# isinstance is fine:
|
||||
self.assertTrue(isinstance(typ, object))
|
||||
# but, not when the right arg is also a generic:
|
||||
self.assertRaises(TypeError, isinstance, typ, typ)
|
||||
|
||||
def test_init(self):
|
||||
T = TypeVar('T')
|
||||
S = TypeVar('S')
|
||||
|
|
|
@ -0,0 +1,2 @@
|
|||
Forbid using :func:`builtins.issubclass` with :class:`types.GenericAlias` as
|
||||
the first argument.
|
|
@ -2812,7 +2812,7 @@ object_issubclass(PyThreadState *tstate, PyObject *derived, PyObject *cls)
|
|||
return -1;
|
||||
}
|
||||
|
||||
/* Probably never reached anymore. */
|
||||
/* Can be reached when infinite recursion happens. */
|
||||
return recursive_issubclass(derived, cls);
|
||||
}
|
||||
|
||||
|
|
|
@ -626,6 +626,7 @@ ga_vectorcall(PyObject *self, PyObject *const *args,
|
|||
|
||||
static const char* const attr_exceptions[] = {
|
||||
"__class__",
|
||||
"__bases__",
|
||||
"__origin__",
|
||||
"__args__",
|
||||
"__unpacked__",
|
||||
|
|
Loading…
Reference in New Issue