File: __init__.py

package info (click to toggle)
turing 0.11-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 10,340 kB
  • sloc: python: 106,582; xml: 101; makefile: 53; sh: 29
file content (20 lines) | stat: -rw-r--r-- 470 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
"""
This packages contains the available python widgets:

    - PyCodeEdit
    - PyInteractiveConsole

"""
from .code_edit import PyCodeEditBase, PyCodeEdit
from .interactive import PyInteractiveConsole
# todo PyOutlineTreeWidget is deprecated and should be removed soon.
from .outline import PyOutlineTreeWidget
from .console import PyConsole

__all__ = [
    'PyCodeEdit',
    'PyConsole',
    'PyCodeEditBase',
    'PyInteractiveConsole',
    'PyOutlineTreeWidget'
]