diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-06-29 23:51:08 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-06-29 23:51:08 (GMT) |
commit | 4efb6e964376a46aaa3acf365a6627a37af236bf (patch) | |
tree | dc61305039a9561bec3693a76b56804984f87ddc /Lib/inspect.py | |
parent | 88e66254f90dcfd8287775bb0caee7916fb958b2 (diff) | |
download | cpython-4efb6e964376a46aaa3acf365a6627a37af236bf.zip cpython-4efb6e964376a46aaa3acf365a6627a37af236bf.tar.gz cpython-4efb6e964376a46aaa3acf365a6627a37af236bf.tar.bz2 |
Turns out Neil didn't intend for *all* of his gen-branch work to get
committed.
tokenize.py: I like these changes, and have tested them extensively
without even realizing it, so I just updated the docstring and the docs.
tabnanny.py: Also liked this, but did a little code fiddling. I should
really rewrite this to *exploit* generators, but that's near the bottom
of my effort/benefit scale so doubt I'll get to it anytime soon (it
would be most useful as a non-trivial example of ideal use of generators;
but test_generators.py has already grown plenty of food-for-thought
examples).
inspect.py: I'm sure Ping intended for this to continue running even
under 1.5.2, so I reverted this to the last pre-gen-branch version. The
"bugfix" I checked in in-between was actually repairing a bug *introduced*
by the conversion to generators, so it's OK that the reverted version
doesn't reflect that checkin.
Diffstat (limited to 'Lib/inspect.py')
-rw-r--r-- | Lib/inspect.py | 42 |
1 files changed, 23 insertions, 19 deletions
diff --git a/Lib/inspect.py b/Lib/inspect.py index eeb54d2..2d88bc1 100644 --- a/Lib/inspect.py +++ b/Lib/inspect.py @@ -349,28 +349,32 @@ class ListReader: return self.lines[i] else: return '' -def getblock(lines): - """Extract the block of code at the top of the given list of lines.""" - - indent = 0 - started = 0 - last = 0 - tokens = tokenize.generate_tokens(ListReader(lines).readline) - - for (type, token, (srow, scol), (erow, ecol), line) in tokens: - if not started: - if type == tokenize.NAME: - started = 1 +class EndOfBlock(Exception): pass + +class BlockFinder: + """Provide a tokeneater() method to detect the end of a code block.""" + def __init__(self): + self.indent = 0 + self.started = 0 + self.last = 0 + + def tokeneater(self, type, token, (srow, scol), (erow, ecol), line): + if not self.started: + if type == tokenize.NAME: self.started = 1 elif type == tokenize.NEWLINE: - last = srow + self.last = srow elif type == tokenize.INDENT: - indent = indent + 1 + self.indent = self.indent + 1 elif type == tokenize.DEDENT: - indent = indent - 1 - if indent == 0: - return lines[:last] - else: - raise ValueError, "unable to find block" + self.indent = self.indent - 1 + if self.indent == 0: raise EndOfBlock, self.last + +def getblock(lines): + """Extract the block of code at the top of the given list of lines.""" + try: + tokenize.tokenize(ListReader(lines).readline, BlockFinder().tokeneater) + except EndOfBlock, eob: + return lines[:eob.args[0]] def getsourcelines(object): """Return a list of source lines and starting line number for an object. |