-
-
Notifications
You must be signed in to change notification settings - Fork 768
Expand file tree
/
Copy pathutils.py
More file actions
48 lines (36 loc) · 1.17 KB
/
utils.py
File metadata and controls
48 lines (36 loc) · 1.17 KB
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
"""Pymode utils."""
import os.path
import sys
import threading
import warnings
from contextlib import contextmanager
from io import StringIO
import vim # noqa
DEBUG = int(vim.eval('g:pymode_debug'))
warnings.filterwarnings('ignore')
@contextmanager
def silence_stderr():
"""Redirect stderr."""
if DEBUG:
yield
else:
with threading.Lock():
stderr = sys.stderr
sys.stderr = StringIO()
yield
with threading.Lock():
sys.stderr = stderr
def patch_paths():
"""Patch python sys.path.
Load required modules from the plugin's sources.
"""
dir_script = os.path.dirname(os.path.abspath(__file__))
sys.path.insert(0, os.path.join(dir_script, 'libs'))
if sys.platform == 'win32' or sys.platform == 'msys':
dir_submodule = os.path.abspath(os.path.join(dir_script,
'..', 'submodules'))
sub_modules = os.listdir(dir_submodule)
for module in sub_modules:
module_full_path = os.path.join(dir_submodule, module)
if module_full_path not in sys.path:
sys.path.insert(0, module_full_path)