SF patch #634557: inspect.BlockFinder didn't do a good enough job finding

the end of code blocks.

Patch contributed by Patrick O'Brien.
This commit is contained in:
Raymond Hettinger 2003-01-19 13:21:20 +00:00
parent e701dcbabd
commit 2e7b748a9e
1 changed files with 2 additions and 0 deletions

View File

@ -501,6 +501,8 @@ class BlockFinder:
elif type == tokenize.DEDENT:
self.indent = self.indent - 1
if self.indent == 0: raise EndOfBlock, self.last
elif type == tokenize.NAME and scol == 0:
raise EndOfBlock, self.last
def getblock(lines):
"""Extract the block of code at the top of the given list of lines."""