10 This is the main Python script that performs the necessary initialization |
10 This is the main Python script that performs the necessary initialization |
11 of the IDE and starts the Qt event loop. |
11 of the IDE and starts the Qt event loop. |
12 """ |
12 """ |
13 |
13 |
14 from __future__ import unicode_literals |
14 from __future__ import unicode_literals |
|
15 |
|
16 import Toolbox.PyQt4ImportHook # __IGNORE_WARNING__ |
15 |
17 |
16 try: # Only for Py2 |
18 try: # Only for Py2 |
17 import StringIO as io # __IGNORE_EXCEPTION__ |
19 import StringIO as io # __IGNORE_EXCEPTION__ |
18 import Utilities.compatibility_fixes # __IGNORE_WARNING__ |
20 import Utilities.compatibility_fixes # __IGNORE_WARNING__ |
19 except ImportError: |
21 except ImportError: |