OpenQuizz
Une application de gestion des contenus pédagogiques
setuptools._distutils.sysconfig Namespace Reference

Functions

def get_python_version ()
 
def get_python_inc (plat_specific=0, prefix=None)
 
def get_python_lib (plat_specific=0, standard_lib=0, prefix=None)
 
def customize_compiler (compiler)
 
def get_config_h_filename ()
 
def get_makefile_filename ()
 
def parse_config_h (fp, g=None)
 
def parse_makefile (fn, g=None)
 
def expand_makefile_vars (s, vars)
 
def get_config_vars (*args)
 
def get_config_var (name)
 

Variables

 IS_PYPY
 
 PREFIX
 
 EXEC_PREFIX
 
 BASE_PREFIX
 
 BASE_EXEC_PREFIX
 
 project_base
 
 python_build
 
 build_flags
 

Detailed Description

Provide access to Python's configuration information.  The specific
configuration variables available depend heavily on the platform and
configuration.  The values may be retrieved using
get_config_var(name), and the list of variables is available via
get_config_vars().keys().  Additional convenience functions are also
available.

Written by:   Fred L. Drake, Jr.
Email:        <fdrake@acm.org>

Function Documentation

◆ customize_compiler()

def setuptools._distutils.sysconfig.customize_compiler (   compiler)
Do any platform-specific customization of a CCompiler instance.

Mainly needed on Unix, so we can plug in the information that
varies across Unices and is stored in Python's Makefile.

◆ expand_makefile_vars()

def setuptools._distutils.sysconfig.expand_makefile_vars (   s,
  vars 
)
Expand Makefile-style variables -- "${foo}" or "$(foo)" -- in
'string' according to 'vars' (a dictionary mapping variable names to
values).  Variables not present in 'vars' are silently expanded to the
empty string.  The variable values in 'vars' should not contain further
variable expansions; if 'vars' is the output of 'parse_makefile()',
you're fine.  Returns a variable-expanded version of 's'.

◆ get_config_h_filename()

def setuptools._distutils.sysconfig.get_config_h_filename ( )
Return full pathname of installed pyconfig.h file.

◆ get_config_var()

def setuptools._distutils.sysconfig.get_config_var (   name)
Return the value of a single variable using the dictionary
returned by 'get_config_vars()'.  Equivalent to
get_config_vars().get(name)

◆ get_config_vars()

def setuptools._distutils.sysconfig.get_config_vars ( args)
With no arguments, return a dictionary of all configuration
variables relevant for the current platform.  Generally this includes
everything needed to build extensions and install both pure modules and
extensions.  On Unix, this means every variable defined in Python's
installed Makefile; on Windows it's a much smaller set.

With arguments, return a list of values that result from looking up
each argument in the configuration variable dictionary.

◆ get_makefile_filename()

def setuptools._distutils.sysconfig.get_makefile_filename ( )
Return full pathname of installed Makefile from the Python build.

◆ get_python_inc()

def setuptools._distutils.sysconfig.get_python_inc (   plat_specific = 0,
  prefix = None 
)
Return the directory containing installed Python header files.

If 'plat_specific' is false (the default), this is the path to the
non-platform-specific header files, i.e. Python.h and so on;
otherwise, this is the path to platform-specific header files
(namely pyconfig.h).

If 'prefix' is supplied, use it instead of sys.base_prefix or
sys.base_exec_prefix -- i.e., ignore 'plat_specific'.

◆ get_python_lib()

def setuptools._distutils.sysconfig.get_python_lib (   plat_specific = 0,
  standard_lib = 0,
  prefix = None 
)
Return the directory containing the Python library (standard or
site additions).

If 'plat_specific' is true, return the directory containing
platform-specific modules, i.e. any module from a non-pure-Python
module distribution; otherwise, return the platform-shared library
directory.  If 'standard_lib' is true, return the directory
containing standard Python library modules; otherwise, return the
directory for site-specific modules.

If 'prefix' is supplied, use it instead of sys.base_prefix or
sys.base_exec_prefix -- i.e., ignore 'plat_specific'.

◆ get_python_version()

def setuptools._distutils.sysconfig.get_python_version ( )
Return a string containing the major and minor Python version,
leaving off the patchlevel.  Sample return values could be '1.5'
or '2.2'.

◆ parse_config_h()

def setuptools._distutils.sysconfig.parse_config_h (   fp,
  g = None 
)
Parse a config.h-style file.

A dictionary containing name/value pairs is returned.  If an
optional dictionary is passed in as the second argument, it is
used instead of a new dictionary.

◆ parse_makefile()

def setuptools._distutils.sysconfig.parse_makefile (   fn,
  g = None 
)
Parse a Makefile-style file.

A dictionary containing name/value pairs is returned.  If an
optional dictionary is passed in as the second argument, it is
used instead of a new dictionary.

Variable Documentation

◆ BASE_EXEC_PREFIX

BASE_EXEC_PREFIX

◆ BASE_PREFIX

BASE_PREFIX

◆ build_flags

build_flags

◆ EXEC_PREFIX

EXEC_PREFIX

◆ IS_PYPY

IS_PYPY

◆ PREFIX

PREFIX

◆ project_base

project_base

◆ python_build

python_build