From a657804e2e62444c85b0654be020913e1f62a516 Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner <inform@tiker.net> Date: Mon, 21 Mar 2016 14:35:20 -0500 Subject: [PATCH] Fix missing import of 'intern' --- pyopencl/tools.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pyopencl/tools.py b/pyopencl/tools.py index bbb59927..b1383cb7 100644 --- a/pyopencl/tools.py +++ b/pyopencl/tools.py @@ -1,9 +1,6 @@ """Various helpful bits and pieces without much of a common theme.""" -from __future__ import division -from __future__ import absolute_import -import six -from six.moves import zip +from __future__ import division, absolute_import __copyright__ = "Copyright (C) 2010 Andreas Kloeckner" @@ -31,6 +28,9 @@ OTHER DEALINGS IN THE SOFTWARE. """ +import six +from six.moves import zip, intern + import numpy as np from decorator import decorator import pyopencl as cl -- GitLab