]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
The compiler class for EMX was removed
authorÉric Araujo <merwok@netwok.org>
Wed, 1 Jun 2011 13:20:44 +0000 (15:20 +0200)
committerÉric Araujo <merwok@netwok.org>
Wed, 1 Jun 2011 13:20:44 +0000 (15:20 +0200)
Lib/packaging/compiler/__init__.py
Lib/packaging/compiler/ccompiler.py

index 34315aa3cc75d72c4bf04ba89c202bf3697df7ab..e267e9ffde2dea25d2718412082bb8421535d2d5 100644 (file)
@@ -83,19 +83,16 @@ def customize_compiler(compiler):
 # patterns. Order is important; platform mappings are preferred over
 # OS names.
 _default_compilers = (
-
     # Platform string mappings
 
     # on a cygwin built python we can use gcc like an ordinary UNIXish
     # compiler
     ('cygwin.*', 'unix'),
-    ('os2emx', 'emx'),
 
     # OS name mappings
     ('posix', 'unix'),
     ('nt', 'msvc'),
-
-    )
+)
 
 def get_default_compiler(osname=None, platform=None):
     """ Determine the default compiler to use for the given platform.
index ef806a2a6500c6ed88aa35b3df12dad196bc2769..d2743274fd458ccb9838ec96be97641e6c11be6b 100644 (file)
@@ -352,7 +352,7 @@ class CCompiler:
         return macros, objects, extra, pp_opts, build
 
     def _get_cc_args(self, pp_opts, debug, before):
-        # works for unixccompiler, emxccompiler, cygwinccompiler
+        # works for unixccompiler and cygwinccompiler
         cc_args = pp_opts + ['-c']
         if debug:
             cc_args[:0] = ['-g']