コード例 #1
0
ファイル: gettext_scan.py プロジェクト: zssure-thu/spyder
# -*- coding: utf-8 -*-
#
# Copyright © 2009-2010 Pierre Raybaut
# Licensed under the terms of the MIT License
# (see spyderlib/__init__.py for details)

from gettext_helpers import do_rescan, do_rescan_files

if __name__ == "__main__":
    do_rescan("spyderlib")
    do_rescan_files(
        ["spyderplugins/p_pylint.py", "spyderplugins/widgets/pylintgui.py"],
        "p_pylint", "spyderplugins")
    do_rescan_files([
        "spyderplugins/p_profiler.py", "spyderplugins/widgets/profilergui.py"
    ], "p_profiler", "spyderplugins")
    do_rescan_files([
        "spyderplugins/p_breakpoints.py",
        "spyderplugins/widgets/breakpointsgui.py"
    ], "p_breakpoints", "spyderplugins")
コード例 #2
0
ファイル: gettext_scan.py プロジェクト: rlugojr/spyder-1
# -*- coding: utf-8 -*-
#
# Copyright © Spyder Project Contributors
# Licensed under the terms of the MIT License
# (see spyder/__init__.py for details)

from gettext_helpers import do_rescan, do_rescan_files

if __name__ == "__main__":
    do_rescan("spyder")
    do_rescan_files(
        ["spyder_pylint/pylint.py", "spyder_pylint/widgets/pylintgui.py"],
        "pylint", "spyder_pylint")
    do_rescan_files([
        "spyder_profiler/profiler.py", "spyder_profiler/widgets/profilergui.py"
    ], "profiler", "spyder_profiler")
    do_rescan_files([
        "spyder_breakpoints/breakpoints.py",
        "spyder_breakpoints/widgets/breakpointsgui.py"
    ], "breakpoints", "spyder_breakpoints")
コード例 #3
0
ファイル: gettext_scan.py プロジェクト: DLlearn/spyder
# -*- coding: utf-8 -*-
#
# Copyright © 2009-2010 Pierre Raybaut
# Licensed under the terms of the MIT License
# (see spyderlib/__init__.py for details)

from gettext_helpers import do_rescan, do_rescan_files

if __name__ == "__main__":
    do_rescan("spyderlib")
    do_rescan_files(["spyder_pylint/pylint.py",
                     "spyder_pylint/widgets/pylintgui.py"],
                     "pylint", "spyder_pylint")
    do_rescan_files(["spyder_profiler/profiler.py",
                     "spyder_profiler/widgets/profilergui.py"],
                     "profiler", "spyder_profiler")
    do_rescan_files(["spyder_breakpoints/breakpoints.py",
                     "spyder_breakpoints/widgets/breakpointsgui.py"],
                     "breakpoints", "spyder_breakpoints")
コード例 #4
0
ファイル: gettext_scan.py プロジェクト: 0xBADCA7/spyder
# -*- coding: utf-8 -*-
#
# Copyright © Spyder Project Contributors
# Licensed under the terms of the MIT License
# (see spyder/__init__.py for details)

from gettext_helpers import do_rescan, do_rescan_files

if __name__ == "__main__":
    do_rescan("spyder")
    do_rescan_files(["spyder_pylint/pylint.py",
                     "spyder_pylint/widgets/pylintgui.py"],
                     "pylint", "spyder_pylint")
    do_rescan_files(["spyder_profiler/profiler.py",
                     "spyder_profiler/widgets/profilergui.py"],
                     "profiler", "spyder_profiler")
    do_rescan_files(["spyder_breakpoints/breakpoints.py",
                     "spyder_breakpoints/widgets/breakpointsgui.py"],
                     "breakpoints", "spyder_breakpoints")