Commit 4d4456f2 authored by Tarek Ziadé's avatar Tarek Ziadé

Merged revisions 68929 via svnmerge from

svn+ssh://pythondev@svn.python.org/python/trunk

........
  r68929 | tarek.ziade | 2009-01-25 19:19:25 +0100 (Sun, 25 Jan 2009) | 1 line

  Fixed #4863: removed distutils.mwerkscompiler
........
parent 7ce17fe1
...@@ -1004,7 +1004,6 @@ _default_compilers = ( ...@@ -1004,7 +1004,6 @@ _default_compilers = (
# OS name mappings # OS name mappings
('posix', 'unix'), ('posix', 'unix'),
('nt', 'msvc'), ('nt', 'msvc'),
('mac', 'mwerks'),
) )
...@@ -1042,8 +1041,6 @@ compiler_class = { 'unix': ('unixccompiler', 'UnixCCompiler', ...@@ -1042,8 +1041,6 @@ compiler_class = { 'unix': ('unixccompiler', 'UnixCCompiler',
"Mingw32 port of GNU C Compiler for Win32"), "Mingw32 port of GNU C Compiler for Win32"),
'bcpp': ('bcppcompiler', 'BCPPCompiler', 'bcpp': ('bcppcompiler', 'BCPPCompiler',
"Borland C++ Compiler"), "Borland C++ Compiler"),
'mwerks': ('mwerkscompiler', 'MWerksCompiler',
"MetroWerks CodeWarrior"),
'emx': ('emxccompiler', 'EMXCCompiler', 'emx': ('emxccompiler', 'EMXCCompiler',
"EMX port of GNU C Compiler for OS/2"), "EMX port of GNU C Compiler for OS/2"),
} }
......
This diff is collapsed.
...@@ -144,6 +144,8 @@ Core and Builtins ...@@ -144,6 +144,8 @@ Core and Builtins
Library Library
------- -------
- Issue #4863: distutils.mwerkscompiler has been removed.
- Fix and properly document the multiprocessing module's logging - Fix and properly document the multiprocessing module's logging
support, expose the internal levels and provide proper usage support, expose the internal levels and provide proper usage
examples. examples.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment