eric6/QScintilla/Shell.py

branch
maintenance
changeset 7737
5371a22cf2aa
parent 7560
343db73c4842
parent 7703
1f800f8295ea
child 7824
096b3ebc1409
equal deleted inserted replaced
7691:e2b36c2167b7 7737:5371a22cf2aa
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,

eric ide

mercurial