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 a8437fa commit c2d8ac2Copy full SHA for c2d8ac2
1 file changed
Lib/test/test_genericclass.py
@@ -0,0 +1,42 @@
1
+import unittest
2
+
3
4
+class TestSubclassBase(unittest.TestCase):
5
+ def test_subclass_base(self):
6
+ pass
7
8
+ def test_subclass_base_with_builtins(self):
9
10
11
+ def test_subclass_base_errors(self):
12
13
14
+ def test_subclass_base_wrong(self):
15
16
17
+ def test_subclass_base_metaclass(self):
18
19
20
+ def test_subclass_base_type_call(self):
21
22
23
24
+class TestClassGetitem(unittest.TestCase):
25
+ def test_class_getitem(self):
26
27
28
+ def test_class_getitem_with_builtins(self):
29
30
31
+ def test_class_getitem_errors(self):
32
33
34
+ def test_class_getitem_inheritance(self):
35
36
37
+ def test_class_getitem_metaclass(self):
38
39
40
41
+if __name__ == "__main__":
42
+ unittest.main()
0 commit comments