]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-115091: Remove a left-over sentence that refers to Py_OptimizeFlag from ctypes...
authorAntti Haapala <antti.haapala@interjektio.fi>
Mon, 26 Feb 2024 09:22:54 +0000 (11:22 +0200)
committerGitHub <noreply@github.com>
Mon, 26 Feb 2024 09:22:54 +0000 (10:22 +0100)
Remove a left-over sentence that refers to Py_OptimizeFlag

Remove a left-over sentence that refers to an example that was present in Python 3.10 and was using ``Py_OptimizeFlag``.

Doc/library/ctypes.rst

index 702955659a3bb97e4877af3aa82eb5651c7977bc..eed18201e3ede0575a96e9483859ce7ec9408d25 100644 (file)
@@ -1117,10 +1117,6 @@ api::
    >>> print(hex(version.value))
    0x30c00a0
 
-If the interpreter would have been started with :option:`-O`, the sample would
-have printed ``c_long(1)``, or ``c_long(2)`` if :option:`-OO` would have been
-specified.
-
 An extended example which also demonstrates the use of pointers accesses the
 :c:data:`PyImport_FrozenModules` pointer exported by Python.