forked from SublimeCodeIntel/SublimeCodeIntel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsgmlop.py
25 lines (25 loc) · 937 Bytes
/
sgmlop.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
try:
from _local_arch.sgmlop import *
platform = "Local arch"
except ImportError:
try:
from _linux_libcpp6_x86_64.sgmlop import *
platform = "Linux 64 bits"
except ImportError:
try:
from _linux_libcpp6_x86.sgmlop import *
platform = "Linux 32 bits"
except ImportError:
try:
from _win64.sgmlop import *
platform = "Windows 64 bits"
except ImportError:
try:
from _win32.sgmlop import *
platform = "Windows 32 bits"
except ImportError:
try:
from _macosx_universal.sgmlop import *
platform = "MacOS X Universal"
except ImportError:
raise ImportError("Could not find a suitable sgmlop binary for your platform and architecture.")