From dbdbef3668293abdceac2b8a7b3e4615e6bde143 Mon Sep 17 00:00:00 2001 From: Jonathon Vandezande Date: Thu, 1 Aug 2024 21:31:37 -0400 Subject: [PATCH] Fixes typo in idlelib/idle_test/example_stub.pyi (#122520) --------- Co-authored-by: Terry Jan Reedy --- Lib/idlelib/idle_test/example_stub.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/idlelib/idle_test/example_stub.pyi b/Lib/idlelib/idle_test/example_stub.pyi index 17b58010a9d..abcdbc17529 100644 --- a/Lib/idlelib/idle_test/example_stub.pyi +++ b/Lib/idlelib/idle_test/example_stub.pyi @@ -1,4 +1,4 @@ -" Example to test recognition of .pyi file as Python source code. +# An example file to test recognition of a .pyi file as Python source code. class Example: def method(self, argument1: str, argument2: list[int]) -> None: ...