summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/sysconfig.py
diff options
context:
space:
mode:
authorÉric Araujo <merwok@netwok.org>2010-11-06 14:16:30 (GMT)
committerÉric Araujo <merwok@netwok.org>2010-11-06 14:16:30 (GMT)
commitdb553be7fb72f286faa59b42243bb6e0aa974dc6 (patch)
treebaccad4487a779dcc88426bc75975520a682eed5 /Lib/distutils/sysconfig.py
parentaa5f4aa8af4960fa0fbfd0a35837cd820f03e6da (diff)
downloadcpython-db553be7fb72f286faa59b42243bb6e0aa974dc6.zip
cpython-db553be7fb72f286faa59b42243bb6e0aa974dc6.tar.gz
cpython-db553be7fb72f286faa59b42243bb6e0aa974dc6.tar.bz2
Remove one trace of Mac OS 9 support (#7908 follow-up)
This was overlooked in r80804. This change is not really a bug fix, but the release manager agreed to it. There is no NEWS entry, like in the original commit.
Diffstat (limited to 'Lib/distutils/sysconfig.py')
-rw-r--r--Lib/distutils/sysconfig.py26
1 files changed, 0 insertions, 26 deletions
diff --git a/Lib/distutils/sysconfig.py b/Lib/distutils/sysconfig.py
index 9888cd5..33cc5a3 100644
--- a/Lib/distutils/sysconfig.py
+++ b/Lib/distutils/sysconfig.py
@@ -453,32 +453,6 @@ def _init_nt():
_config_vars = g
-def _init_mac():
- """Initialize the module as appropriate for Macintosh systems"""
- g = {}
- # set basic install directories
- g['LIBDEST'] = get_python_lib(plat_specific=0, standard_lib=1)
- g['BINLIBDEST'] = get_python_lib(plat_specific=1, standard_lib=1)
-
- # XXX hmmm.. a normal install puts include files here
- g['INCLUDEPY'] = get_python_inc(plat_specific=0)
-
- import MacOS
- if not hasattr(MacOS, 'runtimemodel'):
- g['SO'] = '.ppc.slb'
- else:
- g['SO'] = '.%s.slb' % MacOS.runtimemodel
-
- # XXX are these used anywhere?
- g['install_lib'] = os.path.join(EXEC_PREFIX, "Lib")
- g['install_platlib'] = os.path.join(EXEC_PREFIX, "Mac", "Lib")
-
- # These are used by the extension module build
- g['srcdir'] = ':'
- global _config_vars
- _config_vars = g
-
-
def _init_os2():
"""Initialize the module as appropriate for OS/2"""
g = {}