Home
last modified time | relevance | path

Searched refs:LabelPoint2D (Results 1 - 1 of 1) sorted by relevance

/third_party/python/Lib/test/
H A Dtest_typing.py5156 class LabelPoint2D(Point2D, Label): ... class
6544 self.assertEqual(LabelPoint2D.__name__, 'LabelPoint2D')
6545 self.assertEqual(LabelPoint2D.__module__, __name__)
6546 self.assertEqual(LabelPoint2D.__annotations__, {'x': int, 'y': int, 'label': str})
6547 self.assertEqual(LabelPoint2D.__bases__, (dict,))
6548 self.assertEqual(LabelPoint2D.__total__, True)
6549 self.assertNotIsSubclass(LabelPoint2D, typing.Sequence)
6553 other = LabelPoint2D(x=0, y=1, label='hi')

Completed in 14 milliseconds