[Python-checkins] python/dist/src/Tools/scripts pindent.py, 1.12, 1.12.12.1
birkenfeld@users.sourceforge.net
birkenfeld at users.sourceforge.net
Sun Jun 26 22:22:48 CEST 2005
Update of /cvsroot/python/python/dist/src/Tools/scripts
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15567/Tools/scripts
Modified Files:
Tag: release24-maint
pindent.py
Log Message:
backport 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.12.12.1
diff -u -d -r1.12 -r1.12.12.1
--- pindent.py 13 May 2003 18:14:25 -0000 1.12
+++ pindent.py 26 Jun 2005 20:22:46 -0000 1.12.12.1
@@ -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