Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/check-python-headers
blob: 1c9988274280c575ce5642eab5cb96aa38538148 (plain)
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/env python

import sys
import os

path = os.path.join(sys.exec_prefix, 'include',
                    'python%s' % sys.version[0:3], 'Python.h')

if not os.path.isfile(path):
    sys.exit(1)