eric6/Debugger/VariablesViewer.py

branch
without_py2_and_pyqt4
changeset 7192
a22eee00b052
parent 7031
6fafe9ed04b5
child 7229
53054eb5b15a
equal deleted inserted replaced
7191:960850ec284c 7192:a22eee00b052
6 """ 6 """
7 Module implementing the variables viewer view based on QTreeView. 7 Module implementing the variables viewer view based on QTreeView.
8 """ 8 """
9 9
10 from __future__ import unicode_literals 10 from __future__ import unicode_literals
11
12 try:
13 str = unicode
14 except NameError:
15 pass
16 11
17 import ast 12 import ast
18 13
19 from PyQt5.QtCore import (Qt, QAbstractItemModel, QModelIndex, QRegExp, 14 from PyQt5.QtCore import (Qt, QAbstractItemModel, QModelIndex, QRegExp,
20 QCoreApplication, QSortFilterProxyModel, pyqtSignal) 15 QCoreApplication, QSortFilterProxyModel, pyqtSignal)

eric ide

mercurial