]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.12] Fixes typo in idlelib/idle_test/example_stub.pyi (GH-122520) (#122591)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Fri, 2 Aug 2024 02:01:49 +0000 (04:01 +0200)
committerGitHub <noreply@github.com>
Fri, 2 Aug 2024 02:01:49 +0000 (22:01 -0400)
---------
(cherry picked from commit dbdbef3668293abdceac2b8a7b3e4615e6bde143)

Co-authored-by: Jonathon Vandezande <jevandezande@gmail.com>
Lib/idlelib/idle_test/example_stub.pyi

index 17b58010a9d8de8f6737998d6277dc51c823841e..abcdbc17529974ca9892cb0b70f30425160bb279 100644 (file)
@@ -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: ...