comparison: Utilities/PySideImporter.py
Utilities/PySideImporter.py
- changeset 4555
- 861e1741985c
- parent 4543
- 2e6a880670e9
- child 4631
- 5c1a96925da4
equal
deleted
inserted
replaced
4 # |
4 # |
5 |
5 |
6 """ |
6 """ |
7 Module to check for the presence of PySide by importing it. |
7 Module to check for the presence of PySide by importing it. |
8 """ |
8 """ |
9 |
|
10 from __future__ import unicode_literals |
|
11 |
9 |
12 import sys |
10 import sys |
13 |
11 |
14 if __name__ == "__main__": |
12 if __name__ == "__main__": |
15 try: |
13 try: |
19 ret = 1 |
17 ret = 1 |
20 |
18 |
21 sys.exit(ret) |
19 sys.exit(ret) |
22 |
20 |
23 # |
21 # |
24 # eflag: FileType = Python2 |
22 # eflag: noqa = M702 |