]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fixes typo in idlelib/idle_test/example_stub.pyi (#122520)
authorJonathon Vandezande <jevandezande@gmail.com>
Fri, 2 Aug 2024 01:31:37 +0000 (21:31 -0400)
committerGitHub <noreply@github.com>
Fri, 2 Aug 2024 01:31:37 +0000 (21:31 -0400)
---------
Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
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: ...