You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mxe/src/python-0070-mingw-use-backs...

13 lines
503 B

diff -urN a-3.3.0/Lib/compileall.py b-3.3.0/Lib/compileall.py
--- a-3.3.0/Lib/compileall.py Fri Nov 16 17:35:37 2012
+++ b-3.3.0/Lib/compileall.py Fri Nov 16 17:36:36 2012
@@ -47,6 +47,8 @@
if name == '__pycache__':
continue
fullname = os.path.join(dir, name)
+ if sys.platform == "win32" and sys.version.find("GCC") >= 0:
+ fullname = fullname.replace('\\','/')
if ddir is not None:
dfile = os.path.join(ddir, name)
else: