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) |