[Python-checkins] r81514 - python/branches/py3k/Lib/sysconfig.py

tarek.ziade python-checkins at python.org
Tue May 25 11:47:06 CEST 2010


Author: tarek.ziade
Date: Tue May 25 11:47:06 2010
New Revision: 81514

Log:
added the list of public APIs in sysconfig

Modified:
   python/branches/py3k/Lib/sysconfig.py

Modified: python/branches/py3k/Lib/sysconfig.py
==============================================================================
--- python/branches/py3k/Lib/sysconfig.py	(original)
+++ python/branches/py3k/Lib/sysconfig.py	Tue May 25 11:47:06 2010
@@ -5,6 +5,10 @@
 import os
 from os.path import pardir, realpath
 
+__all__ = ['parse_config_h', 'get_config_h_filename', 'get_scheme_names',
+           'get_path_names', 'get_paths', 'get_path', 'get_config_vars',
+           'get_config_var', 'get_platform', 'get_python_version']
+
 _INSTALL_SCHEMES = {
     'posix_prefix': {
         'stdlib': '{base}/lib/python{py_version_short}',


More information about the Python-checkins mailing list