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
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