[3.13] gh-118899: Add tests for `NotImplemented` attribute access (GH-118902) (#118968)

gh-118899: Add tests for `NotImplemented` attribute access (GH-118902)
(cherry picked from commit ec1398e117)

Co-authored-by: Nikita Sobolev <mail@sobolevn.me>
This commit is contained in:
Miss Islington (bot) 2024-05-12 16:23:45 +02:00 committed by GitHub
parent d3094744d4
commit 6e855b30a9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 18 additions and 0 deletions

View File

@ -2139,6 +2139,24 @@ class BuiltinTest(unittest.TestCase):
with self.assertWarns(DeprecationWarning):
self.assertFalse(not NotImplemented)
def test_singleton_attribute_access(self):
for singleton in (NotImplemented, Ellipsis):
with self.subTest(singleton):
self.assertIs(type(singleton), singleton.__class__)
self.assertIs(type(singleton).__class__, type)
# Missing instance attributes:
with self.assertRaises(AttributeError):
singleton.prop = 1
with self.assertRaises(AttributeError):
singleton.prop
# Missing class attributes:
with self.assertRaises(TypeError):
type(singleton).prop = 1
with self.assertRaises(AttributeError):
type(singleton).prop
class TestBreakpoint(unittest.TestCase):
def setUp(self):