We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11ff423 commit 20668a6Copy full SHA for 20668a6
Lib/test/test_descr.py
@@ -4855,7 +4855,7 @@ class X:
4855
4856
with self.assertRaises(TypeError) as cm:
4857
type(X).__dict__["__doc__"].__delete__(X)
4858
- self.assertIn("cannot delete '__doc__' attribute of immutable type 'X'", str(cm.exception))
+ self.assertIn("cannot delete '__doc__' attribute of type 'X'", str(cm.exception))
4859
self.assertEqual(X.__doc__, "banana")
4860
4861
def test_qualname(self):
0 commit comments