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 (45 lines) | stat: -rw-r--r-- 1,174 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
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
"""
This package contains the bases classes of pyqode and some utility
functions.

"""
from .code_edit import CodeEdit
from .decoration import TextDecoration
from .encodings import ENCODINGS_MAP, convert_to_codec_key
from .manager import Manager
from .mode import Mode
from .panel import Panel
from .syntax_highlighter import ColorScheme
from .syntax_highlighter import PYGMENTS_STYLES
from .syntax_highlighter import SyntaxHighlighter
from .syntax_highlighter import TextBlockUserData
from .utils import TextHelper, TextBlockHelper
from .utils import get_block_symbol_data
from .utils import DelayJobRunner
from .folding import FoldDetector
from .folding import IndentFoldDetector
from .folding import CharBasedFoldDetector
from .folding import FoldScope


__all__ = [
    'convert_to_codec_key',
    'get_block_symbol_data',
    'CharBasedFoldDetector',
    'CodeEdit',
    'ColorScheme',
    'DelayJobRunner',
    'ENCODINGS_MAP',
    'FoldDetector',
    'IndentFoldDetector',
    'FoldScope',
    'Manager',
    'Mode',
    'Panel',
    'PYGMENTS_STYLES',
    'SyntaxHighlighter',
    'TextBlockUserData',
    'TextDecoration',
    'TextHelper',
    'TextBlockHelper'
]