306 exit(7) |
306 exit(7) |
307 |
307 |
308 if doCompile: |
308 if doCompile: |
309 print("\nCompiling source files ...") |
309 print("\nCompiling source files ...") |
310 if sys.version_info[0] == 3: |
310 if sys.version_info[0] == 3: |
311 skipRe = re.compile(r"DebugClients[\\/]Python[\\/]") |
311 skipRe = re.compile(r"DebugClients[\\/]Python2[\\/]") |
312 else: |
312 else: |
313 skipRe = re.compile(r"DebugClients[\\/]Python3[\\/]") |
313 skipRe = re.compile(r"DebugClients[\\/]Python3[\\/]") |
314 # Hide compile errors (mainly because of Py2/Py3 differences) |
314 # Hide compile errors (mainly because of Py2/Py3 differences) |
315 sys.stdout = io.StringIO() |
315 sys.stdout = io.StringIO() |
316 if distDir: |
316 if distDir: |