IDLE: Add util and stub example comments (#113222)

This commit is contained in:
Terry Jan Reedy 2023-12-16 19:51:25 -05:00 committed by GitHub
parent 2f0ec7fa94
commit cde1335485
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 3 deletions

View file

@ -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: ...