From 0d0fe4d3c98e02e7927a602d74de88ff3ff88ba5 Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner <inform@tiker.net> Date: Sun, 9 Jun 2013 18:28:57 -0400 Subject: [PATCH] Fix Python 2.5 syntax issue --- pyopencl/algorithm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyopencl/algorithm.py b/pyopencl/algorithm.py index 737666f4..f2eb9a1d 100644 --- a/pyopencl/algorithm.py +++ b/pyopencl/algorithm.py @@ -983,7 +983,7 @@ class ListOfListsBuilder: count_event = count_kernel(queue, gsize, lsize, *(tuple(count_list_args) + args + (n_objects,)), - wait_for=wait_for) + **dict(wait_for=wait_for)) # {{{ run scans -- GitLab