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
29 lines (26 loc) · 730 Bytes
/
__init__.py
File metadata and controls
29 lines (26 loc) · 730 Bytes
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
# -*- coding: utf-8 -*-
"""
The backend package contains everything needed to implement the
server side of a python editor.
"""
from .workers import calltips
from .workers import defined_names
from .workers import goto_assignments
from .workers import icon_from_typename
from .workers import quick_doc
from .workers import run_pyflakes
# for backward compatibility, will be removed in a future release
from .workers import run_pyflakes as run_frosted
from .workers import run_pep8
from .workers import JediCompletionProvider
__all__ = [
'calltips',
'defined_names',
'goto_assignments',
'icon_from_typename',
'quick_doc',
'run_pyflakes',
'run_frosted',
'run_pep8',
'JediCompletionProvider'
]