4 # |
4 # |
5 |
5 |
6 """ |
6 """ |
7 Module implementing a dialog to show help about rope. |
7 Module implementing a dialog to show help about rope. |
8 """ |
8 """ |
9 |
|
10 from __future__ import unicode_literals |
|
11 try: |
|
12 str = unicode # __IGNORE_WARNING__ __IGNORE_EXCEPTION__ |
|
13 except NameError: |
|
14 pass |
|
15 |
|
16 |
9 |
17 from PyQt5.QtCore import Qt |
10 from PyQt5.QtCore import Qt |
18 from PyQt5.QtGui import QTextDocument, QTextCursor |
11 from PyQt5.QtGui import QTextDocument, QTextCursor |
19 from PyQt5.QtWidgets import QDialog, QDialogButtonBox |
12 from PyQt5.QtWidgets import QDialog, QDialogButtonBox |
20 |
13 |