From f454b242889d62982c898f6a5519269818005611 Mon Sep 17 00:00:00 2001 From: Andrew Murray Date: Tue, 14 Jul 2020 22:37:03 +1000 Subject: [PATCH] Removed domain reference for external method --- src/PIL/ImageWin.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/PIL/ImageWin.py b/src/PIL/ImageWin.py index afba61c32..2ca4acdf8 100644 --- a/src/PIL/ImageWin.py +++ b/src/PIL/ImageWin.py @@ -88,8 +88,8 @@ class Dib: Copy the bitmap contents to a device context. :param handle: Device context (HDC), cast to a Python integer, or an - HDC or HWND instance. In PythonWin, you can use the - :py:meth:`CDC.GetHandleAttrib` to get a suitable handle. + HDC or HWND instance. In PythonWin, you can use + ``CDC.GetHandleAttrib()`` to get a suitable handle. """ if isinstance(handle, HWND): dc = self.image.getdc(handle)