From: Jonathon Vandezande Date: Fri, 2 Aug 2024 01:31:37 +0000 (-0400) Subject: Fixes typo in idlelib/idle_test/example_stub.pyi (#122520) X-Git-Tag: v3.14.0a1~910 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=dbdbef3668293abdceac2b8a7b3e4615e6bde143;p=thirdparty%2FPython%2Fcpython.git Fixes typo in idlelib/idle_test/example_stub.pyi (#122520) --------- Co-authored-by: Terry Jan Reedy --- diff --git a/Lib/idlelib/idle_test/example_stub.pyi b/Lib/idlelib/idle_test/example_stub.pyi index 17b58010a9d8..abcdbc175299 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: ...