[Python-checkins] python/dist/src/Lib inspect.py,1.58,1.59
jlgijsbers at users.sourceforge.net
jlgijsbers at users.sourceforge.net
Sun Dec 12 17:46:30 CET 2004
- Previous message: [Python-checkins] python/dist/src/Lib/test inspect_fodder.py, NONE,
1.1 inspect_fodder2.py, NONE, 1.1 test_inspect.py, 1.16, 1.17
- Next message: [Python-checkins] python/dist/src/Lib/test inspect_fodder2.py, 1.1,
1.2 test_inspect.py, 1.17, 1.18
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /cvsroot/python/python/dist/src/Lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19116
Modified Files:
inspect.py
Log Message:
Patch #1011890: fix inspect.getsource breaking with line-continuation &
more. Thanks to Simon Percivall!
The patch makes changes to inspect.py in two places:
* the pattern to match against functions at line 436 is
modified: lambdas should be matched even if not
preceded by whitespace, as long as "lambda" isn't part
of another word.
* the BlockFinder class is heavily modified. Changes are:
- checking for "def", "class" or "lambda" names
before setting self.started to True. Then checking the
same line for word characters after the colon (if the
colon is on that line). If so, and the line does not
end with a line continuation marker, raise EndOfBlock
immediately.
- adding self.passline to show that the line is to be
included and no more checking is necessary on that
line. Since a NEWLINE token is not generated when a
line continuation marker exists, this allows getsource
to continue with these functions even if the following
line would not be indented.
Also add a bunch of
'quite-unlikely-to-occur-in-real-life-but-working-anyway' tests.
Index: inspect.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/inspect.py,v
retrieving revision 1.58
retrieving revision 1.59
diff -u -d -r1.58 -r1.59
--- inspect.py 20 Sep 2004 18:08:31 -0000 1.58
+++ inspect.py 12 Dec 2004 16:46:28 -0000 1.59
@@ -432,7 +432,7 @@
if not hasattr(object, 'co_firstlineno'):
raise IOError('could not find function definition')
lnum = object.co_firstlineno - 1
- pat = re.compile(r'^(\s*def\s)|(.*\slambda(:|\s))|^(\s*@)')
+ pat = re.compile(r'^(\s*def\s)|(.*(?<!\w)lambda(:|\s))|^(\s*@)')
while lnum > 0:
if pat.match(lines[lnum]): break
lnum = lnum - 1
@@ -503,17 +503,28 @@
"""Provide a tokeneater() method to detect the end of a code block."""
def __init__(self):
self.indent = 0
- self.started = 0
+ self.started = False
+ self.passline = False
self.last = 0
def tokeneater(self, type, token, (srow, scol), (erow, ecol), line):
if not self.started:
- if '@' in line: pass
- elif type == tokenize.NAME: self.started = 1
+ if token in ("def", "class", "lambda"):
+ lastcolon = line.rfind(":")
+ if lastcolon:
+ oneline = re.search(r"\w", line[lastcolon:])
+ if oneline and line[-2:] != "\\\n":
+ raise EndOfBlock, srow
+ self.started = True
+ self.passline = True
elif type == tokenize.NEWLINE:
+ self.passline = False
self.last = srow
+ elif self.passline:
+ pass
elif type == tokenize.INDENT:
self.indent = self.indent + 1
+ self.passline = True
elif type == tokenize.DEDENT:
self.indent = self.indent - 1
if self.indent == 0:
- Previous message: [Python-checkins] python/dist/src/Lib/test inspect_fodder.py, NONE,
1.1 inspect_fodder2.py, NONE, 1.1 test_inspect.py, 1.16, 1.17
- Next message: [Python-checkins] python/dist/src/Lib/test inspect_fodder2.py, 1.1,
1.2 test_inspect.py, 1.17, 1.18
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the Python-checkins
mailing list