diff options
author | Georg Brandl <georg@python.org> | 2005-06-26 20:20:48 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2005-06-26 20:20:48 (GMT) |
commit | 7e7688c2ec409c3eb5e441a01d0fa3f13481b54f (patch) | |
tree | 1786e9830be834de21f4151dda9a03c0d28bf8a7 /Tools | |
parent | 58bd19095a47c162f8fb889f2369bfc8562b1992 (diff) | |
download | cpython-7e7688c2ec409c3eb5e441a01d0fa3f13481b54f.zip cpython-7e7688c2ec409c3eb5e441a01d0fa3f13481b54f.tar.gz cpython-7e7688c2ec409c3eb5e441a01d0fa3f13481b54f.tar.bz2 |
bug [ 1072853 ] thisid not intialized in pindent.py script
Diffstat (limited to 'Tools')
-rwxr-xr-x | Tools/scripts/pindent.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Tools/scripts/pindent.py b/Tools/scripts/pindent.py index 39cdcc8..89ed9e6 100755 --- a/Tools/scripts/pindent.py +++ b/Tools/scripts/pindent.py @@ -238,6 +238,7 @@ class PythonIndenter: self.indentsize = 1 stack = [] todo = [] + thisid = '' current, firstkw, lastkw, topid = 0, '', '', '' while 1: line = self.getline() |