From aba95ea9730a69b759819974f647100dc0a96da3 Mon Sep 17 00:00:00 2001 From: Antti Haapala Date: Tue, 6 Feb 2024 19:11:56 +0200 Subject: [PATCH] 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`](https://docs.python.org/3.10/library/ctypes.html#accessing-values-exported-from-dlls). --- Doc/library/ctypes.rst | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Doc/library/ctypes.rst b/Doc/library/ctypes.rst index ef3a9a0f5898af..b75bcadd728b4f 100644 --- a/Doc/library/ctypes.rst +++ b/Doc/library/ctypes.rst @@ -1113,10 +1113,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.