initial commit

This commit is contained in:
Victor Gallego Izquierdo
2024-04-12 13:37:14 +02:00
commit 01d17b8d00
1497 changed files with 277377 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
import sys
import importlib
def bypass_compiler_fixup(cmd, args):
return cmd
if sys.platform == 'darwin':
compiler_fixup = importlib.import_module('_osx_support').compiler_fixup
else:
compiler_fixup = bypass_compiler_fixup