mirror of
https://github.com/python/cpython.git
synced 2025-10-20 00:13:47 +00:00
gh-139783: Fix inspect.getsourcelines() for the case when a decorator is followed by a comment or an empty line (GH-139836)
This commit is contained in:
parent
e31c22dbf9
commit
f4104f5d74
4 changed files with 21 additions and 1 deletions
|
@ -1065,7 +1065,9 @@ def __init__(self):
|
|||
|
||||
def tokeneater(self, type, token, srowcol, erowcol, line):
|
||||
if not self.started and not self.indecorator:
|
||||
if type == tokenize.INDENT or token == "async":
|
||||
if type in (tokenize.INDENT, tokenize.COMMENT, tokenize.NL):
|
||||
pass
|
||||
elif token == "async":
|
||||
pass
|
||||
# skip any decorators
|
||||
elif token == "@":
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue