From: Georg Brandl Date: Tue, 29 Dec 2009 11:25:38 +0000 (+0000) Subject: Fix wrong markup. X-Git-Tag: v2.7a2~94 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c2aad8ad15ee786048bd6f05ef4e49f7f05a7461;p=thirdparty%2FPython%2Fcpython.git Fix wrong markup. --- diff --git a/Doc/library/ctypes.rst b/Doc/library/ctypes.rst index 44416963c281..582300c28c41 100644 --- a/Doc/library/ctypes.rst +++ b/Doc/library/ctypes.rst @@ -513,8 +513,8 @@ to be passed by value. This is also known as *passing parameters by reference*. :mod:`ctypes` exports the :func:`byref` function which is used to pass parameters by reference. The same effect can be achieved with the -:cfunc:`pointer` function, although :cfunc:`pointer` does a lot more work since -it constructs a real pointer object, so it is faster to use :func:`byref` if you +:func:`pointer` function, although :func:`pointer` does a lot more work since it +constructs a real pointer object, so it is faster to use :func:`byref` if you don't need the pointer object in Python itself:: >>> i = c_int()