diff options
| author | Claudiu Popa <pcmanticore@gmail.com> | 2016-12-30 14:21:23 +0200 |
|---|---|---|
| committer | Claudiu Popa <pcmanticore@gmail.com> | 2016-12-30 14:21:23 +0200 |
| commit | 1ba08bb3bc871eddaed1810311d8b365dc1542f5 (patch) | |
| tree | 292cef2223f34a4b50dc4b51c8484f6bf76ee34a /astroid/protocols.py | |
| parent | 25c94a9b3d5f7a6080f8a820cb8708bde22e70f2 (diff) | |
| download | astroid-git-1ba08bb3bc871eddaed1810311d8b365dc1542f5.tar.gz | |
Add missing parameter to default implementation.
Diffstat (limited to 'astroid/protocols.py')
| -rw-r--r-- | astroid/protocols.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/astroid/protocols.py b/astroid/protocols.py index cb071a02..baf3762e 100644 --- a/astroid/protocols.py +++ b/astroid/protocols.py @@ -134,7 +134,7 @@ for _KEY, _IMPL in list(BIN_OP_IMPL.items()): @util.singledispatch -def infer_binary_op(self, operator, other, context, method, nodes): +def infer_binary_op(self, opnode, operator, other, context, method, nodes): raise exceptions.BinaryOperationNotSupportedError |
