https://github.com/python/cpython/commit/dbdbef3668293abdceac2b8a7b3e4615e6bde143 commit: dbdbef3668293abdceac2b8a7b3e4615e6bde143 branch: main author: Jonathon Vandezande <[email protected]> committer: terryjreedy <[email protected]> date: 2024-08-01T21:31:37-04:00 summary:
Fixes typo in idlelib/idle_test/example_stub.pyi (#122520) --------- Co-authored-by: Terry Jan Reedy <[email protected]> files: M Lib/idlelib/idle_test/example_stub.pyi diff --git a/Lib/idlelib/idle_test/example_stub.pyi b/Lib/idlelib/idle_test/example_stub.pyi index 17b58010a9d8de..abcdbc17529974 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: ... _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3/lists/python-checkins.python.org/ Member address: [email protected]
