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
26 lines (20 loc) · 683 Bytes
/
__init__.py
File metadata and controls
26 lines (20 loc) · 683 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
# -*- coding: utf-8 -*-
"""
This packages contains the python specific panels:
- QuickDocPanel: show docstring of functions/classes.
- SymbolBrowserPanel: combo box that shows the symbols
in the current document.
"""
from pyqode.python.panels.symbol_browser import SymbolBrowserPanel
from pyqode.python.panels.quick_doc import QuickDocPanel
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__ = [
'QuickDocPanel',
'SymbolBrowserPanel',
]