diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2021-02-24 00:39:51 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-24 00:39:51 (GMT) |
commit | 2827e8a177c2a6584fada594bca6829c53a2872f (patch) | |
tree | 4110f13a66a62ce34205652c8df4fd8bb506bad2 /Lib/idlelib/NEWS.txt | |
parent | b798ab06937f8bb24b444a49dd42e11fff15e654 (diff) | |
download | cpython-2827e8a177c2a6584fada594bca6829c53a2872f.zip cpython-2827e8a177c2a6584fada594bca6829c53a2872f.tar.gz cpython-2827e8a177c2a6584fada594bca6829c53a2872f.tar.bz2 |
bpo-43283: Add IDLE doc paragraph about print speed (GH-24615)
Printing to IDLE's Shell is often slower than printing to a system
terminal, but it can be made faster by pre-formatting a single
string before printing.
Diffstat (limited to 'Lib/idlelib/NEWS.txt')
-rw-r--r-- | Lib/idlelib/NEWS.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Lib/idlelib/NEWS.txt b/Lib/idlelib/NEWS.txt index 840fc62..30d5b2f 100644 --- a/Lib/idlelib/NEWS.txt +++ b/Lib/idlelib/NEWS.txt @@ -3,6 +3,10 @@ Released on 2021-10-04? ====================================== +bpo-43283: Document why printing to IDLE's Shell is often slower than +printing to a system terminal and that it can be made faster by +pre-formatting a single string before printing. + bpo-23544: Disable Debug=>Stack Viewer when user code is running or Debugger is active, to prevent hang or crash. Patch by Zackery Spytz. |