5 |
5 |
6 """ |
6 """ |
7 Module implementing a graphical Python shell. |
7 Module implementing a graphical Python shell. |
8 """ |
8 """ |
9 |
9 |
10 |
|
11 import sys |
10 import sys |
12 import re |
11 import re |
13 |
12 |
14 try: |
13 from enum import Enum |
15 from enum import Enum |
|
16 except ImportError: |
|
17 from ThirdParty.enum import Enum |
|
18 |
14 |
19 from PyQt5.QtCore import pyqtSignal, QFileInfo, Qt, QEvent |
15 from PyQt5.QtCore import pyqtSignal, QFileInfo, Qt, QEvent |
20 from PyQt5.QtGui import QClipboard, QPalette, QFont |
16 from PyQt5.QtGui import QClipboard, QPalette, QFont |
21 from PyQt5.QtWidgets import ( |
17 from PyQt5.QtWidgets import ( |
22 QDialog, QInputDialog, QApplication, QMenu, QWidget, QHBoxLayout, |
18 QDialog, QInputDialog, QApplication, QMenu, QWidget, QHBoxLayout, |