From e75360c7f5e7fa62b31b7e9d6a20412f775bc17c Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+AA-Turner@users.noreply.github.com> Date: Fri, 11 Aug 2023 19:58:55 +0100 Subject: [PATCH] Remove trailing whitespace --- Doc/library/ctypes.rst | 1 - 1 file changed, 1 deletion(-) diff --git a/Doc/library/ctypes.rst b/Doc/library/ctypes.rst index 9cf5f707f1b1c3..db81aacbcfd90a 100644 --- a/Doc/library/ctypes.rst +++ b/Doc/library/ctypes.rst @@ -2040,7 +2040,6 @@ Utility functions Create a new pointer instance, pointing to *obj*. The returned object is of the type ``POINTER(type(obj))``. - Note: If you just want to pass a pointer to an object to a foreign function call, you should use ``byref(obj)`` which is much faster.