[3.11] IDLE: Add util and stub example comments (GH-113222) (#113224)

(cherry picked from commit cde1335485)

Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
This commit is contained in:
Miss Islington (bot) 2023-12-17 02:20:36 +01:00 committed by GitHub
parent 11401e2c79
commit fbaf00ee57
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 3 deletions

View file

@ -13,9 +13,9 @@ TODO:
* warning stuff (pyshell, run).
"""
# .pyw is for Windows; .pyi is for stub files.
py_extensions = ('.py', '.pyw', '.pyi') # Order needed for open/save dialogs.
# .pyw is for Windows; .pyi is for typing stub files.
# The extension order is needed for iomenu open/save dialogs.
py_extensions = ('.py', '.pyw', '.pyi')
if __name__ == '__main__':
from unittest import main