From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Fri, 2 Aug 2024 02:01:49 +0000 (+0200) Subject: [3.12] Fixes typo in idlelib/idle_test/example_stub.pyi (GH-122520) (#122591) X-Git-Tag: v3.12.5~22 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c654bcec3ce1c431f25c135e4b7abaf6a78b93b0;p=thirdparty%2FPython%2Fcpython.git [3.12] Fixes typo in idlelib/idle_test/example_stub.pyi (GH-122520) (#122591) --------- (cherry picked from commit dbdbef3668293abdceac2b8a7b3e4615e6bde143) Co-authored-by: Jonathon Vandezande --- 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: ...