Update of /cvsroot/pywin32/pywin32/Pythonwin/pywin/idle
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1697
Modified Files:
Tag: py3k
AutoIndent.py
Log Message:
Uncomment guess_indent
Index: AutoIndent.py
===================================================================
RCS file: /cvsroot/pywin32/pywin32/Pythonwin/pywin/idle/AutoIndent.py,v
retrieving revision 1.3.2.3
retrieving revision 1.3.2.4
diff -C2 -d -r1.3.2.3 -r1.3.2.4
*** AutoIndent.py 11 Sep 2008 07:51:22 -0000 1.3.2.3
--- AutoIndent.py 15 Sep 2008 05:05:11 -0000 1.3.2.4
***************
*** 102,106 ****
def set_indentation_params(self, ispythonsource, guess=1):
if guess and ispythonsource:
! i = 4 ## self.guess_indent()
if 2 <= i <= 8:
self.indentwidth = i
--- 102,106 ----
def set_indentation_params(self, ispythonsource, guess=1):
if guess and ispythonsource:
! i = self.guess_indent()
if 2 <= i <= 8:
self.indentwidth = i
|