summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2024-09-02 11:26:55 (GMT)
committerGitHub <noreply@github.com>2024-09-02 11:26:55 (GMT)
commit39061814f20c13c45d190422358ab70e3233cdcc (patch)
treecb337eb7979717f835da32c610e174acc598e048
parentec92c8a01817d469c59c37908e6501262981baac (diff)
downloadcpython-39061814f20c13c45d190422358ab70e3233cdcc.zip
cpython-39061814f20c13c45d190422358ab70e3233cdcc.tar.gz
cpython-39061814f20c13c45d190422358ab70e3233cdcc.tar.bz2
[3.13] Fixes typo in idlelib/idle_test/example_stub.pyi (GH-122520) (#122738)
Fixes typo in idlelib/idle_test/example_stub.pyi (GH-122520) (cherry picked from commit dbdbef3668293abdceac2b8a7b3e4615e6bde143) Co-authored-by: Jonathon Vandezande <jevandezande@gmail.com>
-rw-r--r--Lib/idlelib/idle_test/example_stub.pyi2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/idle_test/example_stub.pyi b/Lib/idlelib/idle_test/example_stub.pyi
index 17b5801..abcdbc1 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: ...