From 109e381a639e69d05ac7bbeef56660f1602d4790 Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner Date: Sun, 5 Apr 2026 15:38:49 -0500 Subject: [PATCH] Fix 'writeable' typo --- src/wrap_cl.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wrap_cl.hpp b/src/wrap_cl.hpp index 743bbe9b2..f15afba46 100644 --- a/src/wrap_cl.hpp +++ b/src/wrap_cl.hpp @@ -3673,7 +3673,7 @@ namespace pyopencl #ifdef PYPY_VERSION // FIXME: get a read-only buffer // Not quite honest, but Pypy doesn't consider numpy arrays - // created from objects with the __array_interface__ writeable. + // created from objects with the __array_interface__ writable. ward->get(holder.ptr(), PyBUF_ANY_CONTIGUOUS); #else ward->get(holder.ptr(), PyBUF_ANY_CONTIGUOUS | PyBUF_WRITABLE);