summaryrefslogtreecommitdiff
path: root/Lib/idlelib/format.py
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2019-11-20 01:18:39 -0500
committerGitHub <noreply@github.com>2019-11-20 01:18:39 -0500
commitb8462477bfd01ff21461065d5063e6b0238ca809 (patch)
tree266c7a274d833dbc1d0cb8a3581375fc66305f4e /Lib/idlelib/format.py
parent7483451577916e693af6d20cf520b2cc7e2174d2 (diff)
downloadcpython-git-b8462477bfd01ff21461065d5063e6b0238ca809.tar.gz
bpo-38636: Fix IDLE tab toggle and file indent width (GH-17008)
These Format menu functions (default shortcuts Alt-T and Alt-U) were mistakenly disabled in 3.7.5 and 3.8.0.
Diffstat (limited to 'Lib/idlelib/format.py')
-rw-r--r--Lib/idlelib/format.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/idlelib/format.py b/Lib/idlelib/format.py
index bced4c1770..2b09805657 100644
--- a/Lib/idlelib/format.py
+++ b/Lib/idlelib/format.py
@@ -353,8 +353,7 @@ class FormatRegion:
maxvalue=16)
-# With mixed indents not allowed, these are semi-useless and not unittested.
-class Indents: # pragma: no cover
+class Indents:
"Change future indents."
def __init__(self, editwin):