This question is about how to detect the version of the Python interpreter being used to execute an extension module, from within an extension module (i.e. one written in C).
As background, it's straightforward inside a Python extension module to get the version of Python against which the extension was compiled. You can just use one of the macros defined in patchlevel.h
that are included when including the standard Python header Python.h
(e.g. the macro PY_VERSION
).
My question is whether it's possible from within an extension module to get at run-time the version of the interpreter currently being used to run the extension. For example, if Python 2.5 is accidentally being used to run an extension module compiled against Python 2.7, I'd like to be able to detect that at run-time from within the extension module. For concreteness, let's assume the extension module is compiled against Python 2.7.
Use the
Py_GetVersion()
API: