summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2021-02-24 00:39:51 (GMT)
committerGitHub <noreply@github.com>2021-02-24 00:39:51 (GMT)
commit2827e8a177c2a6584fada594bca6829c53a2872f (patch)
tree4110f13a66a62ce34205652c8df4fd8bb506bad2 /Misc
parentb798ab06937f8bb24b444a49dd42e11fff15e654 (diff)
downloadcpython-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 'Misc')
-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.