6 """ |
6 """ |
7 Module implementing a dialog showing the output of a pip command. |
7 Module implementing a dialog showing the output of a pip command. |
8 """ |
8 """ |
9 |
9 |
10 from __future__ import unicode_literals |
10 from __future__ import unicode_literals |
11 try: |
|
12 str = unicode # __IGNORE_EXCEPTION__ |
|
13 except NameError: |
|
14 pass |
|
15 |
11 |
16 from PyQt5.QtCore import pyqtSlot, Qt, QCoreApplication, QTimer, \ |
12 from PyQt5.QtCore import pyqtSlot, Qt, QCoreApplication, QTimer, \ |
17 QProcess |
13 QProcess |
18 from PyQt5.QtWidgets import QDialog, QDialogButtonBox, QAbstractButton |
14 from PyQt5.QtWidgets import QDialog, QDialogButtonBox, QAbstractButton |
19 |
15 |