diff options
author | Yury Selivanov <yselivanov@sprymix.com> | 2015-07-23 08:54:35 +0300 |
---|---|---|
committer | Yury Selivanov <yselivanov@sprymix.com> | 2015-07-23 08:54:35 +0300 |
commit | 2f07a66dedb6f69cbe601f7ca2c3fca66898ffe3 (patch) | |
tree | 6c8fc0a96b616e02eab21f54afc4ba3dc6741235 /Lib/ast.py | |
parent | 943ddac14227bf9cdd224903bc5f5696997a0129 (diff) | |
download | cpython-git-2f07a66dedb6f69cbe601f7ca2c3fca66898ffe3.tar.gz |
Issue #24688: ast.get_docstring() for 'async def' functions.
Diffstat (limited to 'Lib/ast.py')
-rw-r--r-- | Lib/ast.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/ast.py b/Lib/ast.py index 02c3b2867f..03c30f66e9 100644 --- a/Lib/ast.py +++ b/Lib/ast.py @@ -194,7 +194,7 @@ def get_docstring(node, clean=True): be found. If the node provided does not have docstrings a TypeError will be raised. """ - if not isinstance(node, (FunctionDef, ClassDef, Module)): + if not isinstance(node, (AsyncFunctionDef, FunctionDef, ClassDef, Module)): raise TypeError("%r can't have docstrings" % node.__class__.__name__) if node.body and isinstance(node.body[0], Expr) and \ isinstance(node.body[0].value, Str): |