[Python-checkins] python/dist/src/Tools/scripts pindent.py, 1.12, 1.13
birkenfeld@users.sourceforge.net
birkenfeld at users.sourceforge.net
Sun Jun 26 22:20:50 CEST 2005
Update of /cvsroot/python/python/dist/src/Tools/scripts
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14449/Tools/scripts
Modified Files:
pindent.py
Log Message:
bug [ 1072853 ] thisid not intialized in pindent.py script
Index: pindent.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Tools/scripts/pindent.py,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- pindent.py 13 May 2003 18:14:25 -0000 1.12
+++ pindent.py 26 Jun 2005 20:20:48 -0000 1.13
@@ -238,6 +238,7 @@
self.indentsize = 1
stack = []
todo = []
+ thisid = ''
current, firstkw, lastkw, topid = 0, '', '', ''
while 1:
line = self.getline()
More information about the Python-checkins
mailing list