Update mojo sdk to rev 1dc8a9a5db73d3718d99917fadf31f5fb2ebad4f
[chromium-blink-merge.git] / third_party / cython / src / Cython / Includes / cpython / version.pxd
blobe5aee0fb5e6c8c7d0acfffb459a0173fe3711f14
1 # Python version constants
3 # It's better to evaluate these at runtime (i.e. C compile time) using
5 #      if PY_MAJOR_VERSION >= 3:
6 #           do_stuff_in_Py3_0_and_later()
7 #      if PY_VERSION_HEX >= 0x02050000:
8 #           do_stuff_in_Py2_5_and_later()
10 # than using the IF/DEF statements, which are evaluated at Cython
11 # compile time.  This will keep your C code portable.
14 cdef extern from *:
15     # the complete version, e.g. 0x010502B2 == 1.5.2b2
16     int PY_VERSION_HEX
18     # the individual sections as plain numbers
19     int PY_MAJOR_VERSION
20     int PY_MINOR_VERSION
21     int PY_MICRO_VERSION
22     int PY_RELEASE_LEVEL
23     int PY_RELEASE_SERIAL
25     # Note: PY_RELEASE_LEVEL is one of
26     #    0xA (alpha)
27     #    0xB (beta)
28     #    0xC (release candidate)
29     #    0xF (final)
31     char PY_VERSION[]
32     char PY_PATCHLEVEL_REVISION[]