eric5_configure.py

changeset 3534
325a637dbb14
parent 3178
f25fc1364c88
child 3656
441956d8fce5
equal deleted inserted replaced
3531:c4b36c72184d 3534:325a637dbb14
7 """ 7 """
8 Eric5 Configure. 8 Eric5 Configure.
9 9
10 This is the main Python script to configure the eric5 IDE from the outside. 10 This is the main Python script to configure the eric5 IDE from the outside.
11 """ 11 """
12
13 from __future__ import unicode_literals
14 try: # Only for Py2
15 import sip
16 sip.setapi('QString', 2)
17 sip.setapi('QVariant', 2)
18 import Utilities.compatibility_fixes # __IGNORE_WARNING__
19 except (ImportError):
20 pass
12 21
13 import sys 22 import sys
14 import os 23 import os
15 24
16 for arg in sys.argv: 25 for arg in sys.argv:

eric ide

mercurial