test-libpython-version.c 136 B

1234567891011
  1. // SPDX-License-Identifier: GPL-2.0
  2. #include <Python.h>
  3. #if PY_VERSION_HEX >= 0x03000000
  4. #error
  5. #endif
  6. int main(void)
  7. {
  8. return 0;
  9. }