From 181a69b44846a024b16e8c98c6dcd56f75389618 Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner <inform@tiker.net> Date: Wed, 30 Mar 2016 12:27:50 -0500 Subject: [PATCH] Py2 fix --- pyopencl/__init__.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/pyopencl/__init__.py b/pyopencl/__init__.py index c8390361..7576680e 100644 --- a/pyopencl/__init__.py +++ b/pyopencl/__init__.py @@ -358,7 +358,12 @@ class Program(object): # {{{ build - _find_unsafe = re.compile(br'[^\w@%+=:,./-]', re.ASCII).search + if six.PY3: + _find_unsafe_re_opts = re.ASCII + else: + _find_unsafe_re_opts = 0 + + _find_unsafe = re.compile(br'[^\w@%+=:,./-]', _find_unsafe_re_opts).search @classmethod def _shlex_quote(cls, s): -- GitLab