File: __init__.py

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

"""
from .goto import DlgGotoLine
from .encodings import DlgPreferredEncodingsEditor
from .encodings import DlgEncodingsChoice
from .unsaved_files import DlgUnsavedFiles

__all__ = [
    'DlgPreferredEncodingsEditor',
    'DlgGotoLine',
    'DlgUnsavedFiles',
    'DlgEncodingsChoice'
]