14 from eric7.EricWidgets import EricMessageBox |
14 from eric7.EricWidgets import EricMessageBox |
15 from eric7.EricWidgets.EricApplication import ericApp |
15 from eric7.EricWidgets.EricApplication import ericApp |
16 from eric7.UI import Info |
16 from eric7.UI import Info |
17 |
17 |
18 # Start-Of-Header |
18 # Start-Of-Header |
19 name = "Python re Wizard Plugin" |
19 __header__ = { |
20 author = "Detlev Offenbach <detlev@die-offenbachs.de>" |
20 "name": "Python re Wizard Plugin", |
21 autoactivate = True |
21 "author": "Detlev Offenbach <detlev@die-offenbachs.de>", |
22 deactivateable = True |
22 "autoactivate": True, |
23 version = Info.VersionOnly |
23 "deactivateable": True, |
24 className = "PyRegExpWizard" |
24 "version": Info.VersionOnly, |
25 packageName = "__core__" |
25 "className": "PyRegExpWizard", |
26 shortDescription = "Show the Python re wizard." |
26 "packageName": "__core__", |
27 longDescription = """This plugin shows the Python re wizard.""" |
27 "shortDescription": "Show the Python re wizard.", |
28 pyqtApi = 2 |
28 "longDescription": """This plugin shows the Python re wizard.""", |
|
29 "pyqtApi": 2, |
|
30 } |
29 # End-Of-Header |
31 # End-Of-Header |
30 |
32 |
31 error = "" |
33 error = "" # noqa: U200 |
32 |
34 |
33 |
35 |
34 class PyRegExpWizard(QObject): |
36 class PyRegExpWizard(QObject): |
35 """ |
37 """ |
36 Class implementing the Python re wizard plugin. |
38 Class implementing the Python re wizard plugin. |