API 和 ABI 版本管理¶
Build-time version constants¶
CPython exposes its version number in the following macros.
Note that these correspond to the version code is built with.
See Py_Version
for the version used at run time.
请参阅 C API 的稳定性 查看跨版本的 API 和 ABI 稳定情。
-
PY_MAJOR_VERSION¶
3
(3.4.1a2
中的第一段)。
-
PY_MINOR_VERSION¶
4
(3.4.1a2
中的第二段)。
-
PY_MICRO_VERSION¶
1
(3.4.1a2
中第三段的数字)。
-
PY_RELEASE_LEVEL¶
a
(3.4.1a2
中第3段的字母)。 可能为0xA
即 alpha,0xB
即 beta,0xC
即 release candidate 或0xF
即 final。
-
PY_RELEASE_SERIAL¶
2
(3.4.1a2
中的末尾数字)。 零代表最终发布版。
-
PY_VERSION_HEX¶
The Python version number encoded in a single integer. See
Py_PACK_FULL_VERSION()
for the encoding details.Use this for numeric comparisons, for example,
#if PY_VERSION_HEX >= ...
.
Run-time version¶
-
const unsigned long Py_Version¶
- 属于 稳定 ABI 自 3.11 版起.
The Python runtime version number encoded in a single constant integer. See
Py_PACK_FULL_VERSION()
for the encoding details. This contains the Python version used at run time.Use this for numeric comparisons, for example,
if (Py_Version >= ...)
.Added in version 3.11.
Bit-packing macros¶
-
uint32_t Py_PACK_FULL_VERSION(int major, int minor, int micro, int release_level, int release_serial)¶
- 属于 稳定 ABI 自 3.14 版起.
Return the given version, encoded as a single 32-bit integer with the following structure:
Argument
No. of bits
Bit mask
Bit shift
Example values
3.4.1a2
3.10.0
major
8
0xFF000000
24
0x03
0x03
minor
8
0x00FF0000
16
0x04
0x0A
micro
8
0x0000FF00
8
0x01
0x00
release_level
4
0x000000F0
4
0xA
0xF
release_serial
4
0x0000000F
0
0x2
0x0
For example:
Version
Py_PACK_FULL_VERSION
argumentsEncoded version
3.4.1a2
(3, 4, 1, 0xA, 2)
0x030401a2
3.10.0
(3, 10, 0, 0xF, 0)
0x030a00f0
Out-of range bits in the arguments are ignored. That is, the macro can be defined as:
#ifndef Py_PACK_FULL_VERSION #define Py_PACK_FULL_VERSION(X, Y, Z, LEVEL, SERIAL) ( \ (((X) & 0xff) << 24) | \ (((Y) & 0xff) << 16) | \ (((Z) & 0xff) << 8) | \ (((LEVEL) & 0xf) << 4) | \ (((SERIAL) & 0xf) << 0)) #endif
Py_PACK_FULL_VERSION
is primarily a macro, intended for use in#if
directives, but it is also available as an exported function.Added in version 3.14.