eric5_configure.py

branch
Py2 comp.
changeset 2526
a91cba8291b9
parent 2525
8b507a9a2d40
child 2538
b2642e7a4c18
equal deleted inserted replaced
2525:8b507a9a2d40 2526:a91cba8291b9
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 12
13 from __future__ import unicode_literals # __IGNORE_WARNING__ 13 from __future__ import unicode_literals # __IGNORE_WARNING__
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
14 21
15 import sys 22 import sys
16 import os 23 import os
17 24
18 for arg in sys.argv: 25 for arg in sys.argv:

eric ide

mercurial