home *** CD-ROM | disk | FTP | other *** search
/ Freelog 125 / Freelog_MarsAvril2015_No125.iso / Bureautique / LibreOffice / LibreOffice_4.3.5_Win_x86.msi / sysconfig.py < prev    next >
Text File  |  2014-12-12  |  22KB  |  598 lines

  1. """Provide access to Python's configuration information.  The specific
  2. configuration variables available depend heavily on the platform and
  3. configuration.  The values may be retrieved using
  4. get_config_var(name), and the list of variables is available via
  5. get_config_vars().keys().  Additional convenience functions are also
  6. available.
  7.  
  8. Written by:   Fred L. Drake, Jr.
  9. Email:        <fdrake@acm.org>
  10. """
  11.  
  12. import os
  13. import re
  14. import sys
  15.  
  16. from .errors import DistutilsPlatformError
  17.  
  18. # These are needed in a couple of spots, so just compute them once.
  19. PREFIX = os.path.normpath(sys.prefix)
  20. EXEC_PREFIX = os.path.normpath(sys.exec_prefix)
  21. BASE_PREFIX = os.path.normpath(sys.base_prefix)
  22. BASE_EXEC_PREFIX = os.path.normpath(sys.base_exec_prefix)
  23.  
  24. # Path to the base directory of the project. On Windows the binary may
  25. # live in project/PCBuild9.  If we're dealing with an x64 Windows build,
  26. # it'll live in project/PCbuild/amd64.
  27. # set for cross builds
  28. if "_PYTHON_PROJECT_BASE" in os.environ:
  29.     project_base = os.path.abspath(os.environ["_PYTHON_PROJECT_BASE"])
  30. else:
  31.     project_base = os.path.dirname(os.path.abspath(sys.executable))
  32. if os.name == "nt" and "pcbuild" in project_base[-8:].lower():
  33.     project_base = os.path.abspath(os.path.join(project_base, os.path.pardir))
  34. # PC/VS7.1
  35. if os.name == "nt" and "\\pc\\v" in project_base[-10:].lower():
  36.     project_base = os.path.abspath(os.path.join(project_base, os.path.pardir,
  37.                                                 os.path.pardir))
  38. # PC/AMD64
  39. if os.name == "nt" and "\\pcbuild\\amd64" in project_base[-14:].lower():
  40.     project_base = os.path.abspath(os.path.join(project_base, os.path.pardir,
  41.                                                 os.path.pardir))
  42.  
  43. # python_build: (Boolean) if true, we're either building Python or
  44. # building an extension with an un-installed Python, so we use
  45. # different (hard-wired) directories.
  46. # Setup.local is available for Makefile builds including VPATH builds,
  47. # Setup.dist is available on Windows
  48. def _is_python_source_dir(d):
  49.     for fn in ("Setup.dist", "Setup.local"):
  50.         if os.path.isfile(os.path.join(d, "Modules", fn)):
  51.             return True
  52.     return False
  53. _sys_home = getattr(sys, '_home', None)
  54. if _sys_home and os.name == 'nt' and \
  55.     _sys_home.lower().endswith(('pcbuild', 'pcbuild\\amd64')):
  56.     _sys_home = os.path.dirname(_sys_home)
  57.     if _sys_home.endswith('pcbuild'):   # must be amd64
  58.         _sys_home = os.path.dirname(_sys_home)
  59. def _python_build():
  60.     if _sys_home:
  61.         return _is_python_source_dir(_sys_home)
  62.     return _is_python_source_dir(project_base)
  63. python_build = _python_build()
  64.  
  65. # Calculate the build qualifier flags if they are defined.  Adding the flags
  66. # to the include and lib directories only makes sense for an installation, not
  67. # an in-source build.
  68. build_flags = ''
  69. try:
  70.     if not python_build:
  71.         build_flags = sys.abiflags
  72. except AttributeError:
  73.     # It's not a configure-based build, so the sys module doesn't have
  74.     # this attribute, which is fine.
  75.     pass
  76.  
  77. def get_python_version():
  78.     """Return a string containing the major and minor Python version,
  79.     leaving off the patchlevel.  Sample return values could be '1.5'
  80.     or '2.2'.
  81.     """
  82.     return sys.version[:3]
  83.  
  84.  
  85. def get_python_inc(plat_specific=0, prefix=None):
  86.     """Return the directory containing installed Python header files.
  87.  
  88.     If 'plat_specific' is false (the default), this is the path to the
  89.     non-platform-specific header files, i.e. Python.h and so on;
  90.     otherwise, this is the path to platform-specific header files
  91.     (namely pyconfig.h).
  92.  
  93.     If 'prefix' is supplied, use it instead of sys.base_prefix or
  94.     sys.base_exec_prefix -- i.e., ignore 'plat_specific'.
  95.     """
  96.     if prefix is None:
  97.         prefix = plat_specific and BASE_EXEC_PREFIX or BASE_PREFIX
  98.     if os.name == "posix":
  99.         if python_build:
  100.             # Assume the executable is in the build directory.  The
  101.             # pyconfig.h file should be in the same directory.  Since
  102.             # the build directory may not be the source directory, we
  103.             # must use "srcdir" from the makefile to find the "Include"
  104.             # directory.
  105.             base = _sys_home or project_base
  106.             if plat_specific:
  107.                 return base
  108.             if _sys_home:
  109.                 incdir = os.path.join(_sys_home, get_config_var('AST_H_DIR'))
  110.             else:
  111.                 incdir = os.path.join(get_config_var('srcdir'), 'Include')
  112.             return os.path.normpath(incdir)
  113.         python_dir = 'python' + get_python_version() + build_flags
  114.         return os.path.join(prefix, "include", python_dir)
  115.     elif os.name == "nt":
  116.         return os.path.join(prefix, "include")
  117.     elif os.name == "os2":
  118.         return os.path.join(prefix, "Include")
  119.     else:
  120.         raise DistutilsPlatformError(
  121.             "I don't know where Python installs its C header files "
  122.             "on platform '%s'" % os.name)
  123.  
  124.  
  125. def get_python_lib(plat_specific=0, standard_lib=0, prefix=None):
  126.     """Return the directory containing the Python library (standard or
  127.     site additions).
  128.  
  129.     If 'plat_specific' is true, return the directory containing
  130.     platform-specific modules, i.e. any module from a non-pure-Python
  131.     module distribution; otherwise, return the platform-shared library
  132.     directory.  If 'standard_lib' is true, return the directory
  133.     containing standard Python library modules; otherwise, return the
  134.     directory for site-specific modules.
  135.  
  136.     If 'prefix' is supplied, use it instead of sys.base_prefix or
  137.     sys.base_exec_prefix -- i.e., ignore 'plat_specific'.
  138.     """
  139.     if prefix is None:
  140.         if standard_lib:
  141.             prefix = plat_specific and BASE_EXEC_PREFIX or BASE_PREFIX
  142.         else:
  143.             prefix = plat_specific and EXEC_PREFIX or PREFIX
  144.  
  145.     if os.name == "posix":
  146.         libpython = os.path.join(prefix,
  147.                                  "lib", "python" + get_python_version())
  148.         if standard_lib:
  149.             return libpython
  150.         else:
  151.             return os.path.join(libpython, "site-packages")
  152.     elif os.name == "nt":
  153.         if standard_lib:
  154.             return os.path.join(prefix, "Lib")
  155.         else:
  156.             if get_python_version() < "2.2":
  157.                 return prefix
  158.             else:
  159.                 return os.path.join(prefix, "Lib", "site-packages")
  160.     elif os.name == "os2":
  161.         if standard_lib:
  162.             return os.path.join(prefix, "Lib")
  163.         else:
  164.             return os.path.join(prefix, "Lib", "site-packages")
  165.     else:
  166.         raise DistutilsPlatformError(
  167.             "I don't know where Python installs its library "
  168.             "on platform '%s'" % os.name)
  169.  
  170.  
  171.  
  172. def customize_compiler(compiler):
  173.     """Do any platform-specific customization of a CCompiler instance.
  174.  
  175.     Mainly needed on Unix, so we can plug in the information that
  176.     varies across Unices and is stored in Python's Makefile.
  177.     """
  178.     if compiler.compiler_type == "unix":
  179.         if sys.platform == "darwin":
  180.             # Perform first-time customization of compiler-related
  181.             # config vars on OS X now that we know we need a compiler.
  182.             # This is primarily to support Pythons from binary
  183.             # installers.  The kind and paths to build tools on
  184.             # the user system may vary significantly from the system
  185.             # that Python itself was built on.  Also the user OS
  186.             # version and build tools may not support the same set
  187.             # of CPU architectures for universal builds.
  188.             global _config_vars
  189.             if not _config_vars.get('CUSTOMIZED_OSX_COMPILER', ''):
  190.                 import _osx_support
  191.                 _osx_support.customize_compiler(_config_vars)
  192.                 _config_vars['CUSTOMIZED_OSX_COMPILER'] = 'True'
  193.  
  194.         (cc, cxx, opt, cflags, ccshared, ldshared, shlib_suffix, ar, ar_flags) = \
  195.             get_config_vars('CC', 'CXX', 'OPT', 'CFLAGS',
  196.                             'CCSHARED', 'LDSHARED', 'SHLIB_SUFFIX', 'AR', 'ARFLAGS')
  197.  
  198.         if 'CC' in os.environ:
  199.             newcc = os.environ['CC']
  200.             if (sys.platform == 'darwin'
  201.                     and 'LDSHARED' not in os.environ
  202.                     and ldshared.startswith(cc)):
  203.                 # On OS X, if CC is overridden, use that as the default
  204.                 #       command for LDSHARED as well
  205.                 ldshared = newcc + ldshared[len(cc):]
  206.             cc = newcc
  207.         if 'CXX' in os.environ:
  208.             cxx = os.environ['CXX']
  209.         if 'LDSHARED' in os.environ:
  210.             ldshared = os.environ['LDSHARED']
  211.         if 'CPP' in os.environ:
  212.             cpp = os.environ['CPP']
  213.         else:
  214.             cpp = cc + " -E"           # not always
  215.         if 'LDFLAGS' in os.environ:
  216.             ldshared = ldshared + ' ' + os.environ['LDFLAGS']
  217.         if 'CFLAGS' in os.environ:
  218.             cflags = opt + ' ' + os.environ['CFLAGS']
  219.             ldshared = ldshared + ' ' + os.environ['CFLAGS']
  220.         if 'CPPFLAGS' in os.environ:
  221.             cpp = cpp + ' ' + os.environ['CPPFLAGS']
  222.             cflags = cflags + ' ' + os.environ['CPPFLAGS']
  223.             ldshared = ldshared + ' ' + os.environ['CPPFLAGS']
  224.         if 'AR' in os.environ:
  225.             ar = os.environ['AR']
  226.         if 'ARFLAGS' in os.environ:
  227.             archiver = ar + ' ' + os.environ['ARFLAGS']
  228.         else:
  229.             archiver = ar + ' ' + ar_flags
  230.  
  231.         cc_cmd = cc + ' ' + cflags
  232.         compiler.set_executables(
  233.             preprocessor=cpp,
  234.             compiler=cc_cmd,
  235.             compiler_so=cc_cmd + ' ' + ccshared,
  236.             compiler_cxx=cxx,
  237.             linker_so=ldshared,
  238.             linker_exe=cc,
  239.             archiver=archiver)
  240.  
  241.         compiler.shared_lib_extension = shlib_suffix
  242.  
  243.  
  244. def get_config_h_filename():
  245.     """Return full pathname of installed pyconfig.h file."""
  246.     if python_build:
  247.         if os.name == "nt":
  248.             inc_dir = os.path.join(_sys_home or project_base, "PC")
  249.         else:
  250.             inc_dir = _sys_home or project_base
  251.     else:
  252.         inc_dir = get_python_inc(plat_specific=1)
  253.     if get_python_version() < '2.2':
  254.         config_h = 'config.h'
  255.     else:
  256.         # The name of the config.h file changed in 2.2
  257.         config_h = 'pyconfig.h'
  258.     return os.path.join(inc_dir, config_h)
  259.  
  260.  
  261. def get_makefile_filename():
  262.     """Return full pathname of installed Makefile from the Python build."""
  263.     if python_build:
  264.         return os.path.join(_sys_home or project_base, "Makefile")
  265.     lib_dir = get_python_lib(plat_specific=0, standard_lib=1)
  266.     config_file = 'config-{}{}'.format(get_python_version(), build_flags)
  267.     return os.path.join(lib_dir, config_file, 'Makefile')
  268.  
  269.  
  270. def parse_config_h(fp, g=None):
  271.     """Parse a config.h-style file.
  272.  
  273.     A dictionary containing name/value pairs is returned.  If an
  274.     optional dictionary is passed in as the second argument, it is
  275.     used instead of a new dictionary.
  276.     """
  277.     if g is None:
  278.         g = {}
  279.     define_rx = re.compile("#define ([A-Z][A-Za-z0-9_]+) (.*)\n")
  280.     undef_rx = re.compile("/[*] #undef ([A-Z][A-Za-z0-9_]+) [*]/\n")
  281.     #
  282.     while True:
  283.         line = fp.readline()
  284.         if not line:
  285.             break
  286.         m = define_rx.match(line)
  287.         if m:
  288.             n, v = m.group(1, 2)
  289.             try: v = int(v)
  290.             except ValueError: pass
  291.             g[n] = v
  292.         else:
  293.             m = undef_rx.match(line)
  294.             if m:
  295.                 g[m.group(1)] = 0
  296.     return g
  297.  
  298.  
  299. # Regexes needed for parsing Makefile (and similar syntaxes,
  300. # like old-style Setup files).
  301. _variable_rx = re.compile("([a-zA-Z][a-zA-Z0-9_]+)\s*=\s*(.*)")
  302. _findvar1_rx = re.compile(r"\$\(([A-Za-z][A-Za-z0-9_]*)\)")
  303. _findvar2_rx = re.compile(r"\${([A-Za-z][A-Za-z0-9_]*)}")
  304.  
  305. def parse_makefile(fn, g=None):
  306.     """Parse a Makefile-style file.
  307.  
  308.     A dictionary containing name/value pairs is returned.  If an
  309.     optional dictionary is passed in as the second argument, it is
  310.     used instead of a new dictionary.
  311.     """
  312.     from distutils.text_file import TextFile
  313.     fp = TextFile(fn, strip_comments=1, skip_blanks=1, join_lines=1, errors="surrogateescape")
  314.  
  315.     if g is None:
  316.         g = {}
  317.     done = {}
  318.     notdone = {}
  319.  
  320.     while True:
  321.         line = fp.readline()
  322.         if line is None: # eof
  323.             break
  324.         m = _variable_rx.match(line)
  325.         if m:
  326.             n, v = m.group(1, 2)
  327.             v = v.strip()
  328.             # `$$' is a literal `$' in make
  329.             tmpv = v.replace('$$', '')
  330.  
  331.             if "$" in tmpv:
  332.                 notdone[n] = v
  333.             else:
  334.                 try:
  335.                     v = int(v)
  336.                 except ValueError:
  337.                     # insert literal `$'
  338.                     done[n] = v.replace('$$', '$')
  339.                 else:
  340.                     done[n] = v
  341.  
  342.     # Variables with a 'PY_' prefix in the makefile. These need to
  343.     # be made available without that prefix through sysconfig.
  344.     # Special care is needed to ensure that variable expansion works, even
  345.     # if the expansion uses the name without a prefix.
  346.     renamed_variables = ('CFLAGS', 'LDFLAGS', 'CPPFLAGS')
  347.  
  348.     # do variable interpolation here
  349.     while notdone:
  350.         for name in list(notdone):
  351.             value = notdone[name]
  352.             m = _findvar1_rx.search(value) or _findvar2_rx.search(value)
  353.             if m:
  354.                 n = m.group(1)
  355.                 found = True
  356.                 if n in done:
  357.                     item = str(done[n])
  358.                 elif n in notdone:
  359.                     # get it on a subsequent round
  360.                     found = False
  361.                 elif n in os.environ:
  362.                     # do it like make: fall back to environment
  363.                     item = os.environ[n]
  364.  
  365.                 elif n in renamed_variables:
  366.                     if name.startswith('PY_') and name[3:] in renamed_variables:
  367.                         item = ""
  368.  
  369.                     elif 'PY_' + n in notdone:
  370.                         found = False
  371.  
  372.                     else:
  373.                         item = str(done['PY_' + n])
  374.                 else:
  375.                     done[n] = item = ""
  376.                 if found:
  377.                     after = value[m.end():]
  378.                     value = value[:m.start()] + item + after
  379.                     if "$" in after:
  380.                         notdone[name] = value
  381.                     else:
  382.                         try: value = int(value)
  383.                         except ValueError:
  384.                             done[name] = value.strip()
  385.                         else:
  386.                             done[name] = value
  387.                         del notdone[name]
  388.  
  389.                         if name.startswith('PY_') \
  390.                             and name[3:] in renamed_variables:
  391.  
  392.                             name = name[3:]
  393.                             if name not in done:
  394.                                 done[name] = value
  395.             else:
  396.                 # bogus variable reference; just drop it since we can't deal
  397.                 del notdone[name]
  398.  
  399.     fp.close()
  400.  
  401.     # strip spurious spaces
  402.     for k, v in done.items():
  403.         if isinstance(v, str):
  404.             done[k] = v.strip()
  405.  
  406.     # save the results in the global dictionary
  407.     g.update(done)
  408.     return g
  409.  
  410.  
  411. def expand_makefile_vars(s, vars):
  412.     """Expand Makefile-style variables -- "${foo}" or "$(foo)" -- in
  413.     'string' according to 'vars' (a dictionary mapping variable names to
  414.     values).  Variables not present in 'vars' are silently expanded to the
  415.     empty string.  The variable values in 'vars' should not contain further
  416.     variable expansions; if 'vars' is the output of 'parse_makefile()',
  417.     you're fine.  Returns a variable-expanded version of 's'.
  418.     """
  419.  
  420.     # This algorithm does multiple expansion, so if vars['foo'] contains
  421.     # "${bar}", it will expand ${foo} to ${bar}, and then expand
  422.     # ${bar}... and so forth.  This is fine as long as 'vars' comes from
  423.     # 'parse_makefile()', which takes care of such expansions eagerly,
  424.     # according to make's variable expansion semantics.
  425.  
  426.     while True:
  427.         m = _findvar1_rx.search(s) or _findvar2_rx.search(s)
  428.         if m:
  429.             (beg, end) = m.span()
  430.             s = s[0:beg] + vars.get(m.group(1)) + s[end:]
  431.         else:
  432.             break
  433.     return s
  434.  
  435.  
  436. _config_vars = None
  437.  
  438. def _init_posix():
  439.     """Initialize the module as appropriate for POSIX systems."""
  440.     g = {}
  441.     # load the installed Makefile:
  442.     try:
  443.         filename = get_makefile_filename()
  444.         parse_makefile(filename, g)
  445.     except IOError as msg:
  446.         my_msg = "invalid Python installation: unable to open %s" % filename
  447.         if hasattr(msg, "strerror"):
  448.             my_msg = my_msg + " (%s)" % msg.strerror
  449.  
  450.         raise DistutilsPlatformError(my_msg)
  451.  
  452.     # load the installed pyconfig.h:
  453.     try:
  454.         filename = get_config_h_filename()
  455.         with open(filename) as file:
  456.             parse_config_h(file, g)
  457.     except IOError as msg:
  458.         my_msg = "invalid Python installation: unable to open %s" % filename
  459.         if hasattr(msg, "strerror"):
  460.             my_msg = my_msg + " (%s)" % msg.strerror
  461.  
  462.         raise DistutilsPlatformError(my_msg)
  463.  
  464.     # On AIX, there are wrong paths to the linker scripts in the Makefile
  465.     # -- these paths are relative to the Python source, but when installed
  466.     # the scripts are in another directory.
  467.     if python_build:
  468.         g['LDSHARED'] = g['BLDSHARED']
  469.  
  470.     elif get_python_version() < '2.1':
  471.         # The following two branches are for 1.5.2 compatibility.
  472.         if sys.platform == 'aix4':          # what about AIX 3.x ?
  473.             # Linker script is in the config directory, not in Modules as the
  474.             # Makefile says.
  475.             python_lib = get_python_lib(standard_lib=1)
  476.             ld_so_aix = os.path.join(python_lib, 'config', 'ld_so_aix')
  477.             python_exp = os.path.join(python_lib, 'config', 'python.exp')
  478.  
  479.             g['LDSHARED'] = "%s %s -bI:%s" % (ld_so_aix, g['CC'], python_exp)
  480.  
  481.     global _config_vars
  482.     _config_vars = g
  483.  
  484.  
  485. def _init_nt():
  486.     """Initialize the module as appropriate for NT"""
  487.     g = {}
  488.     # set basic install directories
  489.     g['LIBDEST'] = get_python_lib(plat_specific=0, standard_lib=1)
  490.     g['BINLIBDEST'] = get_python_lib(plat_specific=1, standard_lib=1)
  491.  
  492.     # XXX hmmm.. a normal install puts include files here
  493.     g['INCLUDEPY'] = get_python_inc(plat_specific=0)
  494.  
  495.     g['SO'] = '.pyd'
  496.     g['EXT_SUFFIX'] = '.pyd'
  497.     g['EXE'] = ".exe"
  498.     g['VERSION'] = get_python_version().replace(".", "")
  499.     g['BINDIR'] = os.path.dirname(os.path.abspath(sys.executable))
  500.  
  501.     global _config_vars
  502.     _config_vars = g
  503.  
  504.  
  505. def _init_os2():
  506.     """Initialize the module as appropriate for OS/2"""
  507.     g = {}
  508.     # set basic install directories
  509.     g['LIBDEST'] = get_python_lib(plat_specific=0, standard_lib=1)
  510.     g['BINLIBDEST'] = get_python_lib(plat_specific=1, standard_lib=1)
  511.  
  512.     # XXX hmmm.. a normal install puts include files here
  513.     g['INCLUDEPY'] = get_python_inc(plat_specific=0)
  514.  
  515.     g['SO'] = '.pyd'
  516.     g['EXT_SUFFIX'] = '.pyd'
  517.     g['EXE'] = ".exe"
  518.  
  519.     global _config_vars
  520.     _config_vars = g
  521.  
  522.  
  523. def get_config_vars(*args):
  524.     """With no arguments, return a dictionary of all configuration
  525.     variables relevant for the current platform.  Generally this includes
  526.     everything needed to build extensions and install both pure modules and
  527.     extensions.  On Unix, this means every variable defined in Python's
  528.     installed Makefile; on Windows it's a much smaller set.
  529.  
  530.     With arguments, return a list of values that result from looking up
  531.     each argument in the configuration variable dictionary.
  532.     """
  533.     global _config_vars
  534.     if _config_vars is None:
  535.         func = globals().get("_init_" + os.name)
  536.         if func:
  537.             func()
  538.         else:
  539.             _config_vars = {}
  540.  
  541.         # Normalized versions of prefix and exec_prefix are handy to have;
  542.         # in fact, these are the standard versions used most places in the
  543.         # Distutils.
  544.         _config_vars['prefix'] = PREFIX
  545.         _config_vars['exec_prefix'] = EXEC_PREFIX
  546.  
  547.         # Always convert srcdir to an absolute path
  548.         srcdir = _config_vars.get('srcdir', project_base)
  549.         if os.name == 'posix':
  550.             if python_build:
  551.                 # If srcdir is a relative path (typically '.' or '..')
  552.                 # then it should be interpreted relative to the directory
  553.                 # containing Makefile.
  554.                 base = os.path.dirname(get_makefile_filename())
  555.                 srcdir = os.path.join(base, srcdir)
  556.             else:
  557.                 # srcdir is not meaningful since the installation is
  558.                 # spread about the filesystem.  We choose the
  559.                 # directory containing the Makefile since we know it
  560.                 # exists.
  561.                 srcdir = os.path.dirname(get_makefile_filename())
  562.         _config_vars['srcdir'] = os.path.abspath(os.path.normpath(srcdir))
  563.  
  564.         # Convert srcdir into an absolute path if it appears necessary.
  565.         # Normally it is relative to the build directory.  However, during
  566.         # testing, for example, we might be running a non-installed python
  567.         # from a different directory.
  568.         if python_build and os.name == "posix":
  569.             base = project_base
  570.             if (not os.path.isabs(_config_vars['srcdir']) and
  571.                 base != os.getcwd()):
  572.                 # srcdir is relative and we are not in the same directory
  573.                 # as the executable. Assume executable is in the build
  574.                 # directory and make srcdir absolute.
  575.                 srcdir = os.path.join(base, _config_vars['srcdir'])
  576.                 _config_vars['srcdir'] = os.path.normpath(srcdir)
  577.  
  578.         # OS X platforms require special customization to handle
  579.         # multi-architecture, multi-os-version installers
  580.         if sys.platform == 'darwin':
  581.             import _osx_support
  582.             _osx_support.customize_config_vars(_config_vars)
  583.  
  584.     if args:
  585.         vals = []
  586.         for name in args:
  587.             vals.append(_config_vars.get(name))
  588.         return vals
  589.     else:
  590.         return _config_vars
  591.  
  592. def get_config_var(name):
  593.     """Return the value of a single variable using the dictionary
  594.     returned by 'get_config_vars()'.  Equivalent to
  595.     get_config_vars().get(name)
  596.     """
  597.     return get_config_vars().get(name)
  598.