summarylogtreecommitdiffstats
path: root/rebulk.patch
diff options
context:
space:
mode:
Diffstat (limited to 'rebulk.patch')
-rw-r--r--rebulk.patch11
1 files changed, 11 insertions, 0 deletions
diff --git a/rebulk.patch b/rebulk.patch
new file mode 100644
index 000000000000..9793452e81c1
--- /dev/null
+++ b/rebulk.patch
@@ -0,0 +1,11 @@
+diff --git a/rebulk/loose.py b/rebulk/loose.py
+index 5e747a8..e92d594 100644
+--- a/rebulk/loose.py
++++ b/rebulk/loose.py
+@@ -56,7 +56,7 @@ def call(function, *args, **kwargs):
+ :rtype: object
+ """
+ func = constructor_args if isclass(function) else function_args
+- call_args, call_kwargs = func(function, *args, **kwargs)
++ call_args, call_kwargs = func(function, *args, ignore_unused=True, **kwargs)
+ return function(*call_args, **call_kwargs)