From d4cde947216b8758fb7cd8eb7b4de1c1b947a7ba Mon Sep 17 00:00:00 2001 From: Yongtao Huang Date: Tue, 16 Dec 2025 09:51:36 +0800 Subject: [PATCH] Post fix --- Lib/test/test_typing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_typing.py b/Lib/test/test_typing.py index 785f87260c7..48883d0f7f6 100644 --- a/Lib/test/test_typing.py +++ b/Lib/test/test_typing.py @@ -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)