aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/idlelib/idle_test
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2023-12-16 19:51:25 -0500
committerGitHub <noreply@github.com>2023-12-17 00:51:25 +0000
commitcde1335485b7bffb12c378d230ae48ad77d76ab1 (patch)
tree484097d58891213609bcf966ba75d35ab6a02138 /Lib/idlelib/idle_test
parent2f0ec7fa9450caeac820a6dc819d17d14fd16a4b (diff)
downloadcpython-cde1335485b7bffb12c378d230ae48ad77d76ab1.tar.gz
cpython-cde1335485b7bffb12c378d230ae48ad77d76ab1.zip
IDLE: Add util and stub example comments (#113222)
Diffstat (limited to 'Lib/idlelib/idle_test')
-rw-r--r--Lib/idlelib/idle_test/example_stub.pyi2
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/idlelib/idle_test/example_stub.pyi b/Lib/idlelib/idle_test/example_stub.pyi
index a9811a78d10..17b58010a9d 100644
--- a/Lib/idlelib/idle_test/example_stub.pyi
+++ b/Lib/idlelib/idle_test/example_stub.pyi
@@ -1,2 +1,4 @@
+" Example to test recognition of .pyi file as Python source code.
+
class Example:
def method(self, argument1: str, argument2: list[int]) -> None: ...