summaryrefslogtreecommitdiff
path: root/astroid/scoped_nodes.py
diff options
context:
space:
mode:
authorClaudiu Popa <pcmanticore@gmail.com>2015-09-07 22:57:45 +0300
committerClaudiu Popa <pcmanticore@gmail.com>2015-09-07 22:57:45 +0300
commita1f308f23554a55c732ddea741ecb52903c75b52 (patch)
tree3261973adb5b3337e881a329c6d169f39c8d3813 /astroid/scoped_nodes.py
parent8e747ae2a9a5d0f9c8005e2444bb2c6734209621 (diff)
downloadastroid-a1f308f23554a55c732ddea741ecb52903c75b52.tar.gz
First pass of the Python 3.5 support.
Diffstat (limited to 'astroid/scoped_nodes.py')
-rw-r--r--astroid/scoped_nodes.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/astroid/scoped_nodes.py b/astroid/scoped_nodes.py
index 800df7e..da10fa2 100644
--- a/astroid/scoped_nodes.py
+++ b/astroid/scoped_nodes.py
@@ -954,6 +954,10 @@ class FunctionDef(bases.Statement, Lambda):
return True
+class AsyncFunctionDef(FunctionDef):
+ """Asynchronous function created with the `async` keyword."""
+
+
def _rec_get_names(args, names=None):
"""return a list of all argument names"""
if names is None: