Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ Include/opcode_ids.h generated
Include/token.h generated
Lib/_opcode_metadata.py generated
Lib/keyword.py generated
Lib/idlelib/help.html generated
Lib/test/certdata/*.pem generated
Lib/test/certdata/*.0 generated
Lib/test/levenshtein_examples.json generated
Expand Down
8 changes: 4 additions & 4 deletions Doc/library/idle.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ IDLE --- Python editor and shell
single: Integrated Development Environment

..
Remember to update Lib/idlelib/help.html with idlelib.help.copy_source() when modifying this file.
Remember to update Lib/idlelib/help.html with idlelib.help.copy_strip() when modifying this file.

--------------

Expand Down Expand Up @@ -88,7 +88,7 @@ Save

Save As...
Save the current window with a Save As dialog. The file saved becomes the
new associated file for the window. (If your file namager is set to hide
new associated file for the window. (If your file manager is set to hide
extensions, the current extension will be omitted in the file name box.
If the new filename has no '.', '.py' and '.txt' will be added for Python
and text files, except that on macOS Aqua,'.py' is added for all files.)
Expand Down Expand Up @@ -204,9 +204,9 @@ New Indent Width
Open a dialog to change indent width. The accepted default by the Python
community is 4 spaces.

Strip Trailing Chitespace
Strip Trailing Whitespace
Remove trailing space and other whitespace characters after the last
non-whitespace character of a line by applying str.rstrip to each line,
non-whitespace character of a line by applying :meth:`str.rstrip` to each line,
including lines within multiline strings. Except for Shell windows,
remove extra newlines at the end of the file.

Expand Down
110 changes: 78 additions & 32 deletions Lib/idlelib/help.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading