summaryrefslogtreecommitdiff
path: root/astroid/inference.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/inference.py
parent8e747ae2a9a5d0f9c8005e2444bb2c6734209621 (diff)
downloadastroid-a1f308f23554a55c732ddea741ecb52903c75b52.tar.gz
First pass of the Python 3.5 support.
Diffstat (limited to 'astroid/inference.py')
-rw-r--r--astroid/inference.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/astroid/inference.py b/astroid/inference.py
index b3242da..3cc0149 100644
--- a/astroid/inference.py
+++ b/astroid/inference.py
@@ -104,9 +104,7 @@ def infer_call(self, context=None):
"""infer a Call node by trying to guess what the function returns"""
callcontext = context.clone()
callcontext.callcontext = contextmod.CallContext(args=self.args,
- keywords=self.keywords,
- starargs=self.starargs,
- kwargs=self.kwargs)
+ keywords=self.keywords)
callcontext.boundnode = None
for callee in self.func.infer(context):
if callee is util.YES: