diff options
author | Tarek Ziadé <ziade.tarek@gmail.com> | 2010-05-25 09:47:06 (GMT) |
---|---|---|
committer | Tarek Ziadé <ziade.tarek@gmail.com> | 2010-05-25 09:47:06 (GMT) |
commit | 16ed6cb91d4af590b68a550d066fdc23c5ccc584 (patch) | |
tree | fe9aef4a5ea6d750a0c530325f9aa69cb03a394c /Lib | |
parent | a7514993637aa2f2514fd7e5ab195088efa31482 (diff) | |
download | cpython-16ed6cb91d4af590b68a550d066fdc23c5ccc584.zip cpython-16ed6cb91d4af590b68a550d066fdc23c5ccc584.tar.gz cpython-16ed6cb91d4af590b68a550d066fdc23c5ccc584.tar.bz2 |
added the list of public APIs in sysconfig
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/sysconfig.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Lib/sysconfig.py b/Lib/sysconfig.py index 007d82b..731aed3 100644 --- a/Lib/sysconfig.py +++ b/Lib/sysconfig.py @@ -5,6 +5,10 @@ import sys 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}', |