summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2021-02-24 01:47:06 (GMT)
committerGitHub <noreply@github.com>2021-02-24 01:47:06 (GMT)
commitbdf0fece5bbc2fc9fffbf0f314c7022e24e747df (patch)
tree12006f491ad9bea9e2590fbab4bb3ee17a197311 /Misc/NEWS.d
parent9dd018e35cce30bc2545290b6083dbf6e50d7b61 (diff)
downloadcpython-bdf0fece5bbc2fc9fffbf0f314c7022e24e747df.zip
cpython-bdf0fece5bbc2fc9fffbf0f314c7022e24e747df.tar.gz
cpython-bdf0fece5bbc2fc9fffbf0f314c7022e24e747df.tar.bz2
bpo-43283: Add IDLE doc paragraph about print speed (GH-24615) (GH-24632)
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. (cherry picked from commit 2827e8a177c2a6584fada594bca6829c53a2872f) Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/IDLE/2021-02-21-16-30-10.bpo-43283.DLBwYn.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/IDLE/2021-02-21-16-30-10.bpo-43283.DLBwYn.rst b/Misc/NEWS.d/next/IDLE/2021-02-21-16-30-10.bpo-43283.DLBwYn.rst
new file mode 100644
index 0000000..7a627af
--- /dev/null
+++ b/Misc/NEWS.d/next/IDLE/2021-02-21-16-30-10.bpo-43283.DLBwYn.rst
@@ -0,0 +1,3 @@
+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.