diff options
author | Anton Samokhvalov <pg83@yandex.ru> | 2022-02-10 16:45:15 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:45:15 +0300 |
commit | 72cb13b4aff9bc9cf22e49251bc8fd143f82538f (patch) | |
tree | da2c34829458c7d4e74bdfbdf85dff449e9e7fb8 /contrib/tools/cython/Cython/Includes/cpython/version.pxd | |
parent | 778e51ba091dc39e7b7fcab2b9cf4dbedfb6f2b5 (diff) | |
download | ydb-72cb13b4aff9bc9cf22e49251bc8fd143f82538f.tar.gz |
Restoring authorship annotation for Anton Samokhvalov <pg83@yandex.ru>. Commit 1 of 2.
Diffstat (limited to 'contrib/tools/cython/Cython/Includes/cpython/version.pxd')
-rw-r--r-- | contrib/tools/cython/Cython/Includes/cpython/version.pxd | 64 |
1 files changed, 32 insertions, 32 deletions
diff --git a/contrib/tools/cython/Cython/Includes/cpython/version.pxd b/contrib/tools/cython/Cython/Includes/cpython/version.pxd index ce31b249cf..4799b36ebe 100644 --- a/contrib/tools/cython/Cython/Includes/cpython/version.pxd +++ b/contrib/tools/cython/Cython/Includes/cpython/version.pxd @@ -1,32 +1,32 @@ -# Python version constants -# -# It's better to evaluate these at runtime (i.e. C compile time) using -# -# if PY_MAJOR_VERSION >= 3: -# do_stuff_in_Py3_0_and_later() -# if PY_VERSION_HEX >= 0x02070000: -# do_stuff_in_Py2_7_and_later() -# -# than using the IF/DEF statements, which are evaluated at Cython -# compile time. This will keep your C code portable. - - -cdef extern from *: - # the complete version, e.g. 0x010502B2 == 1.5.2b2 - int PY_VERSION_HEX - - # the individual sections as plain numbers - int PY_MAJOR_VERSION - int PY_MINOR_VERSION - int PY_MICRO_VERSION - int PY_RELEASE_LEVEL - int PY_RELEASE_SERIAL - - # Note: PY_RELEASE_LEVEL is one of - # 0xA (alpha) - # 0xB (beta) - # 0xC (release candidate) - # 0xF (final) - - char PY_VERSION[] - char PY_PATCHLEVEL_REVISION[] +# Python version constants +# +# It's better to evaluate these at runtime (i.e. C compile time) using +# +# if PY_MAJOR_VERSION >= 3: +# do_stuff_in_Py3_0_and_later() +# if PY_VERSION_HEX >= 0x02070000: +# do_stuff_in_Py2_7_and_later() +# +# than using the IF/DEF statements, which are evaluated at Cython +# compile time. This will keep your C code portable. + + +cdef extern from *: + # the complete version, e.g. 0x010502B2 == 1.5.2b2 + int PY_VERSION_HEX + + # the individual sections as plain numbers + int PY_MAJOR_VERSION + int PY_MINOR_VERSION + int PY_MICRO_VERSION + int PY_RELEASE_LEVEL + int PY_RELEASE_SERIAL + + # Note: PY_RELEASE_LEVEL is one of + # 0xA (alpha) + # 0xB (beta) + # 0xC (release candidate) + # 0xF (final) + + char PY_VERSION[] + char PY_PATCHLEVEL_REVISION[] |