This commit is contained in:
Yongtao Huang 2025-12-16 09:51:36 +08:00
parent 0a427ec072
commit d4cde94721

View file

@ -10030,7 +10030,7 @@ class ParamSpecTests(BaseTestCase):
self.assertIs(P.__module__, None)
def test_bound(self):
P1 = ParamSpec("P1")
P1 = ParamSpec("P1")
P2 = ParamSpec("P2", bound=None)
self.assertIs(P1.__bound__, None)
self.assertIs(P2.__bound__, None)