diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2019-09-06 17:54:45 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-06 17:54:45 (GMT) |
commit | 38da805d563422cf1bb9cd9be24c73806840fe30 (patch) | |
tree | f23132ee1104b4586d25cb4b051716671ecb855a /Misc | |
parent | 74b662cf202753d224d82d5503974cce881f7436 (diff) | |
download | cpython-38da805d563422cf1bb9cd9be24c73806840fe30.zip cpython-38da805d563422cf1bb9cd9be24c73806840fe30.tar.gz cpython-38da805d563422cf1bb9cd9be24c73806840fe30.tar.bz2 |
bpo-38041: Refine IDLE Shell restart lines. (GH-15709)
Restart lines now always start with '=' and never end with ' ' and fill the width of the window unless that would require ending with ' ', which could be wrapped by itself and possible confusing the user.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/IDLE/2019-09-05-23-12-13.bpo-38041.nxmGGK.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/IDLE/2019-09-05-23-12-13.bpo-38041.nxmGGK.rst b/Misc/NEWS.d/next/IDLE/2019-09-05-23-12-13.bpo-38041.nxmGGK.rst new file mode 100644 index 0000000..0aa254e --- /dev/null +++ b/Misc/NEWS.d/next/IDLE/2019-09-05-23-12-13.bpo-38041.nxmGGK.rst @@ -0,0 +1,3 @@ +Shell restart lines now fill the window width, always start with '=', +and avoid wrapping unnecessarily. The line will still wrap if the +included file name is long relative to the width. |