@@ -242,10 +242,9 @@ def lambda_eval(expression: Callable[[dict[str, Any]], Any],
242242 """
243243 Returns the result of an image function.
244244
245- In the current version, :py:mod:`~PIL.ImageMath` only supports
246- single-layer images. To process multi-band images, use the
247- :py:meth:`~PIL.Image.Image.split` method or :py:func:`~PIL.Image.merge`
248- function.
245+ :py:mod:`~PIL.ImageMath` only supports single-layer images. To process multi-band
246+ images, use the :py:meth:`~PIL.Image.Image.split` method or
247+ :py:func:`~PIL.Image.merge` function.
249248
250249 :param expression: A function that receives a dictionary.
251250 :param options: Values to add to the function's dictionary. You
@@ -281,10 +280,9 @@ def unsafe_eval(
281280 recommended to process expressions without considering this.
282281 :py:meth:`~lambda_eval` is a more secure alternative.
283282
284- In the current version, :py:mod:`~PIL.ImageMath` only supports
285- single-layer images. To process multi-band images, use the
286- :py:meth:`~PIL.Image.Image.split` method or :py:func:`~PIL.Image.merge`
287- function.
283+ :py:mod:`~PIL.ImageMath` only supports single-layer images. To process multi-band
284+ images, use the :py:meth:`~PIL.Image.Image.split` method or
285+ :py:func:`~PIL.Image.merge` function.
288286
289287 :param expression: A string containing a Python-style expression.
290288 :param options: Values to add to the evaluation context. You
0 commit comments