From 2bc1bf80975ae8855a4d87b78c28b7673675e020 Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner <inform@tiker.net> Date: Mon, 28 Oct 2013 09:42:37 -0500 Subject: [PATCH] Fix object array check for numpy 1.7 (removal of numpy.object) --- pyopencl/array.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyopencl/array.py b/pyopencl/array.py index 8cefeb27..54a4a61e 100644 --- a/pyopencl/array.py +++ b/pyopencl/array.py @@ -476,7 +476,7 @@ class Array(object): # }}} - if dtype == np.object: + if dtype == object: raise TypeError("object arrays on the compute device are not allowed") self.queue = queue -- GitLab