forked from pyQode/pyqode.python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
42 lines (37 loc) · 1.16 KB
/
__init__.py
File metadata and controls
42 lines (37 loc) · 1.16 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
# -*- coding: utf-8 -*-
"""
This package contains a series of python specific modes (calltips,
autoindent, code linting,...).
"""
from .autocomplete import PyAutoCompleteMode
from .autoindent import PyAutoIndentMode
from .calltips import CalltipsMode
from .comments import CommentsMode
from .frosted_checker import PyFlakesChecker
# for backward compatibility, will be removed in a future release
from .frosted_checker import PyFlakesChecker as FrostedCheckerMode
from .goto_assignements import Assignment
from .goto_assignements import GoToAssignmentsMode
from .indenter import PyIndenterMode
from .sh import PythonSH
from .pep8_checker import PEP8CheckerMode
try:
# load pyqode.python resources (code completion icons)
from pyqode.python._forms import pyqode_python_icons_rc # DO NOT REMOVE!!!
except ImportError:
# PyQt/PySide might not be available for the interpreter that run the
# backend
pass
__all__ = [
'Assignment',
'CalltipsMode',
'CommentsMode',
'PyFlakesChecker',
'FrostedCheckerMode',
'GoToAssignmentsMode',
'PEP8CheckerMode',
'PyAutoCompleteMode',
'PyAutoIndentMode',
'PyIndenterMode',
'PythonSH',
]