7 lines
125 B
Python
7 lines
125 B
Python
from distutils.sysconfig import get_makefile_filename as m
|
|
from os.path import isfile
|
|
import sys
|
|
|
|
|
|
sys.exit(not isfile(m()))
|