summaryrefslogtreecommitdiff
path: root/Cython/Compiler/TypeSlots.py
diff options
context:
space:
mode:
Diffstat (limited to 'Cython/Compiler/TypeSlots.py')
-rw-r--r--Cython/Compiler/TypeSlots.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Cython/Compiler/TypeSlots.py b/Cython/Compiler/TypeSlots.py
index c260ada1d..d7b68bbd3 100644
--- a/Cython/Compiler/TypeSlots.py
+++ b/Cython/Compiler/TypeSlots.py
@@ -515,8 +515,8 @@ class BinopSlot(SyntheticSlot):
SyntheticSlot.__init__(
self, slot_name, [left_method, right_method], "0", is_binop=True, **kargs)
# MethodSlot causes special method registration.
- self.left_slot = MethodSlot(signature, "", left_method)
- self.right_slot = MethodSlot(signature, "", right_method)
+ self.left_slot = MethodSlot(signature, "", left_method, **kargs)
+ self.right_slot = MethodSlot(signature, "", right_method, **kargs)
class RichcmpSlot(MethodSlot):