1import sys 2import importlib 3 4 5def bypass_compiler_fixup(cmd, args): 6 return cmd 7 8 9if sys.platform == 'darwin': 10 compiler_fixup = importlib.import_module('_osx_support').compiler_fixup 11else: 12 compiler_fixup = bypass_compiler_fixup 13
1import sys 2import importlib 3 4 5def bypass_compiler_fixup(cmd, args): 6 return cmd 7 8 9if sys.platform == 'darwin': 10 compiler_fixup = importlib.import_module('_osx_support').compiler_fixup 11else: 12 compiler_fixup = bypass_compiler_fixup 13