13 lines
556 B
Diff
13 lines
556 B
Diff
diff -Naur Python-3.5.0-orig/Lib/compileall.py Python-3.5.0/Lib/compileall.py
|
|
--- Python-3.5.0-orig/Lib/compileall.py 2015-09-13 14:41:20.000000000 +0300
|
|
+++ Python-3.5.0/Lib/compileall.py 2015-09-21 13:42:18.631005600 +0300
|
|
@@ -38,6 +38,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:
|