PyInstaller/PyInstallerExecDialog.py

changeset 28
3c8dbc198753
parent 26
e4135114d483
child 34
784d24a61fdf
equal deleted inserted replaced
27:25ff8953e335 28:3c8dbc198753
5 5
6 """ 6 """
7 Module implementing a dialog to show the output of the pyinstaller/pyi-makespec 7 Module implementing a dialog to show the output of the pyinstaller/pyi-makespec
8 process. 8 process.
9 """ 9 """
10
11 from __future__ import unicode_literals
12 try:
13 str = unicode
14 except NameError:
15 pass
16 10
17 import os 11 import os
18 12
19 from PyQt5.QtCore import pyqtSlot, QProcess, QTimer 13 from PyQt5.QtCore import pyqtSlot, QProcess, QTimer
20 from PyQt5.QtWidgets import QDialog, QDialogButtonBox, QAbstractButton 14 from PyQt5.QtWidgets import QDialog, QDialogButtonBox, QAbstractButton

eric ide

mercurial