diff options
author | Yury Selivanov <yselivanov@sprymix.com> | 2015-07-21 19:01:52 +0300 |
---|---|---|
committer | Yury Selivanov <yselivanov@sprymix.com> | 2015-07-21 19:01:52 +0300 |
commit | e4e811d65b51478392a7c69e83b38c6930012eb7 (patch) | |
tree | 36228ce64ec8a50737933259ac9aa33cffd68faf /Lib/inspect.py | |
parent | 036a71bf25b84fab72b023eaf9591e9c16ae2c52 (diff) | |
download | cpython-git-e4e811d65b51478392a7c69e83b38c6930012eb7.tar.gz |
Issue #24669: Fix inspect.getsource() for 'async def' functions.
Patch by Kai Groner.
Diffstat (limited to 'Lib/inspect.py')
-rw-r--r-- | Lib/inspect.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/inspect.py b/Lib/inspect.py index 42f24cddba..4c1ac1f283 100644 --- a/Lib/inspect.py +++ b/Lib/inspect.py @@ -798,7 +798,7 @@ def findsource(object): if not hasattr(object, 'co_firstlineno'): raise OSError('could not find function definition') lnum = object.co_firstlineno - 1 - pat = re.compile(r'^(\s*def\s)|(.*(?<!\w)lambda(:|\s))|^(\s*@)') + pat = re.compile(r'^(\s*def\s)|(\s*async\s+def\s)|(.*(?<!\w)lambda(:|\s))|^(\s*@)') while lnum > 0: if pat.match(lines[lnum]): break lnum = lnum - 1 |