Source code for pyqode.python.backend

# -*- 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_frosted
from .workers import run_pep8
from .workers import JediCompletionProvider


__all__ = [
    'calltips',
    'defined_names',
    'goto_assignments',
    'icon_from_typename',
    'quick_doc',
    'run_frosted',
    'run_pep8',
    'JediCompletionProvider'
]