diff --git a/pyopencl/array.py b/pyopencl/array.py index 9f2cb67599e660c4376fef907b4470aef80573eb..3805d2d8e82b814e0c16b7258d1b2015b1753be7 100644 --- a/pyopencl/array.py +++ b/pyopencl/array.py @@ -687,7 +687,7 @@ class Array(object): :mod:`numpy.ndarray`. If *ary* is given, it must have the same shape and dtype. - .. versionchanged:: 2019.1 + .. versionchanged:: 2019.1.2 Calling with `async_=True` was deprecated and replaced by :meth:`get_async`. @@ -724,6 +724,8 @@ class Array(object): containing the host array `ary` and the :class:`pyopencl.NannyEvent` `event` returned by :meth:`pyopencl.enqueue_copy`. + + .. versionadded:: 2019.1.2 """ return self._get(queue=queue, ary=ary, async_=True, **kwargs)