]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Docs: Use `PY_VERSION_HEX` for version comparison (GH-100179)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Sat, 17 Dec 2022 07:49:49 +0000 (23:49 -0800)
committerGitHub <noreply@github.com>
Sat, 17 Dec 2022 07:49:49 +0000 (23:49 -0800)
(cherry picked from commit 0264f634f720fbf12afaf1715a53cd1495fbd85b)

Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com>
Doc/c-api/apiabiversion.rst
Doc/whatsnew/3.11.rst

index 85b6e2f373877f29001f6d4e1c139eb4792d14bd..62d542966622cedc87fbfdd6187c2416d072977b 100644 (file)
@@ -58,6 +58,8 @@ See :ref:`stable` for a discussion of API and ABI stability across versions.
    Thus ``3.4.1a2`` is hexversion ``0x030401a2`` and ``3.10.0`` is
    hexversion ``0x030a00f0``.
 
+   Use this for numeric comparisons, e.g. ``#if PY_VERSION_HEX >= ...``.
+
    This version is also available via the symbol :data:`Py_Version`.
 
 .. c:var:: const unsigned long Py_Version
index f09ccb133fbc88e8ce15077d13a21b034ad8d5a3..4244875f6c69b95b8d62610297dbc9ec8fad5ed4 100644 (file)
@@ -2320,7 +2320,7 @@ Porting to Python 3.11
   can define the following macros and use them throughout
   the code (credit: these were copied from the ``mypy`` codebase)::
 
-    #if PY_MAJOR_VERSION >= 3 && PY_MINOR_VERSION >= 8
+    #if PY_VERSION_HEX >= 0x03080000
     #  define CPy_TRASHCAN_BEGIN(op, dealloc) Py_TRASHCAN_BEGIN(op, dealloc)
     #  define CPy_TRASHCAN_END(op) Py_TRASHCAN_END
     #else