mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-12-23 11:12:47 +01:00
setup.py: In debug mode, display 2to3 logs.
This commit is contained in:
parent
e17cd0bd08
commit
d86dee6c9a
10
setup.py
10
setup.py
@ -81,9 +81,13 @@ elif sys.version_info[0] >= 3:
|
||||
'few minutes.')
|
||||
# For some reason, using open(os.devnull) makes the subprocess exit before
|
||||
# it finishes...
|
||||
subprocess.Popen([sys.executable, os.path.join('2to3', 'run.py')],
|
||||
stdout=tempfile.TemporaryFile(),
|
||||
stderr=tempfile.TemporaryFile()).wait()
|
||||
if debug:
|
||||
subprocess.Popen([sys.executable,
|
||||
os.path.join('2to3', 'run.py')]).wait()
|
||||
else:
|
||||
subprocess.Popen([sys.executable, os.path.join('2to3', 'run.py')],
|
||||
stdout=tempfile.TemporaryFile(),
|
||||
stderr=tempfile.TemporaryFile()).wait()
|
||||
if debug:
|
||||
print('DEBUG: Changing dir to py3k/')
|
||||
os.chdir('py3k')
|
||||
|
Loading…
Reference in New Issue
Block a user