File: __init__.py

package info (click to toggle)
turing 0.11-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 10,340 kB
  • sloc: python: 106,582; xml: 101; makefile: 53; sh: 29
file content (29 lines) | stat: -rw-r--r-- 730 bytes parent folder | download | duplicates (5)
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'
]