else:
assert 0, "best_base calculation found wanting"
+ def test_unsubclassable_types(self):
+ with self.assertRaises(TypeError):
+ class X(types.NoneType):
+ pass
+ with self.assertRaises(TypeError):
+ class X(object, types.NoneType):
+ pass
+ with self.assertRaises(TypeError):
+ class X(types.NoneType, object):
+ pass
+ class O(object):
+ pass
+ with self.assertRaises(TypeError):
+ class X(O, types.NoneType):
+ pass
+ with self.assertRaises(TypeError):
+ class X(types.NoneType, O):
+ pass
+
+ class X(object):
+ pass
+ with self.assertRaises(TypeError):
+ X.__bases__ = types.NoneType,
+ with self.assertRaises(TypeError):
+ X.__bases__ = object, types.NoneType
+ with self.assertRaises(TypeError):
+ X.__bases__ = types.NoneType, object
+ with self.assertRaises(TypeError):
+ X.__bases__ = O, types.NoneType
+ with self.assertRaises(TypeError):
+ X.__bases__ = types.NoneType, O
def test_mutable_bases_with_failing_mro(self):
# Testing mutable bases with failing mro...
Core and Builtins
-----------------
+- Issue #24806: Prevent builtin types that are not allowed to be subclassed from
+ being subclassed through multiple inheritance.
+
- Issue #24848: Fixed a number of bugs in UTF-7 decoding of misformed data.
- Issue #25003: os.urandom() doesn't use getentropy() on Solaris because
if (PyType_Ready(base_i) < 0)
return NULL;
}
+ if (!PyType_HasFeature(base_i, Py_TPFLAGS_BASETYPE)) {
+ PyErr_Format(PyExc_TypeError,
+ "type '%.100s' is not an acceptable base type",
+ base_i->tp_name);
+ return NULL;
+ }
candidate = solid_base(base_i);
if (winner == NULL) {
winner = candidate;
Py_DECREF(bases);
return NULL;
}
- if (!PyType_HasFeature(base, Py_TPFLAGS_BASETYPE)) {
- PyErr_Format(PyExc_TypeError,
- "type '%.100s' is not an acceptable base type",
- base->tp_name);
- Py_DECREF(bases);
- return NULL;
- }
/* Check for a __slots__ sequence variable in dict, and count it */
slots = PyDict_GetItemString(dict, "__slots__");