RefactoringRope/HelpDialog.py

changeset 303
313fbf9c86d9
parent 302
2e853e2f2430
child 326
67bcde9c65b9
equal deleted inserted replaced
302:2e853e2f2430 303:313fbf9c86d9
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 9
10 from __future__ import unicode_literals 10 from __future__ import unicode_literals
11 try:
12 str = unicode # __IGNORE_WARNING__ __IGNORE_EXCEPTION__
13 except NameError:
14 pass
15
11 16
12 from PyQt5.QtCore import Qt 17 from PyQt5.QtCore import Qt
13 from PyQt5.QtGui import QTextDocument, QTextCursor 18 from PyQt5.QtGui import QTextDocument, QTextCursor
14 from PyQt5.QtWidgets import QDialog, QDialogButtonBox 19 from PyQt5.QtWidgets import QDialog, QDialogButtonBox
15 20

eric ide

mercurial