7228:6037ddba57aa | 7229:53054eb5b15a |
---|---|
6 """ | 6 """ |
7 Module implementing a widget to visualize the Python AST for some Python | 7 Module implementing a widget to visualize the Python AST for some Python |
8 sources. | 8 sources. |
9 """ | 9 """ |
10 | 10 |
11 from __future__ import unicode_literals | |
12 | 11 |
13 import ast | 12 import ast |
14 | 13 |
15 from PyQt5.QtCore import pyqtSlot, Qt, QTimer | 14 from PyQt5.QtCore import pyqtSlot, Qt, QTimer |
16 from PyQt5.QtGui import QCursor, QBrush | 15 from PyQt5.QtGui import QCursor, QBrush |