Skip to content

Commit

Permalink
gh-118899: Add tests for NotImplemented attribute access (#118902)
Browse files Browse the repository at this point in the history
  • Loading branch information
sobolevn committed May 12, 2024
1 parent 5b941e5 commit ec1398e
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions Lib/test/test_builtin.py
Original file line number Diff line number Diff line change
Expand Up @@ -2138,6 +2138,24 @@ def test_bool_notimplemented(self):
with self.assertRaisesRegex(TypeError, msg):
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):
Expand Down

0 comments on commit ec1398e

Please sign in to comment.