Tim Peters:

+ Set usetabs=1.  Editing pyclbr.py was driving me nuts <0.6 wink>.
usetabs=1 is the Emacs pymode default too, and thanks to indentwidth !=
tabwidth magical usetabs disabling, new files are still created with tabs
turned off.  The only implication is that if you open a file whose first
indent is a single tab, IDLE will now magically use tabs for that file (and
set indentwidth to 8).  Note that the whole scheme doesn't work right for
PythonWin, though, since Windows users typically set tabwidth to 4; Mark
probably has to hide the IDLE algorithm from them (which he already knows).

+ Changed comment_region_event to stick "##" in front of every line.  The
"holes" previously left on blank lines were visually confusing (made it
needlessly hard to figure out what to uncomment later).
diff --git a/Tools/idle/AutoIndent.py b/Tools/idle/AutoIndent.py
index 9c088fa..1bdb05b 100644
--- a/Tools/idle/AutoIndent.py
+++ b/Tools/idle/AutoIndent.py
@@ -99,7 +99,7 @@
     # tab setting causes it to use an entirely different tabbing algorithm,
     # treating tab stops as fixed distances from the left margin.
     # Nobody expects this, so for now tabwidth should never be changed.
-    usetabs = 0
+    usetabs = 1
     indentwidth = 4
     tabwidth = TK_TABWIDTH_DEFAULT
 
@@ -349,8 +349,7 @@
         head, tail, chars, lines = self.get_region()
         for pos in range(len(lines)):
             line = lines[pos]
-            if line:
-                lines[pos] = '##' + line
+            lines[pos] = '##' + line
         self.set_region(head, tail, chars, lines)
 
     def uncomment_region_event(self, event):