mirror of
https://github.com/boostorg/histogram.git
synced 2026-02-20 14:52:12 +00:00
10 lines
293 B
Python
10 lines
293 B
Python
import sys
|
|
from distutils import sysconfig
|
|
|
|
s = "using python : {version} : {prefix} : {inc} ;\n".format(
|
|
version=sysconfig.get_python_version(),
|
|
prefix=sysconfig.get_config_var("prefix"),
|
|
inc=sysconfig.get_python_inc())
|
|
|
|
sys.stdout.write(s)
|