Example #1
0
def _init():
    import sys

    sys_path = sys.path[:]

    _gtk.init_check()

    # init_check calls PySys_SetArgv which calls sys.path.insert(0, ''),
    # which causes problems for pychecker, restore it if modified.
    if sys.path != sys_path:
        sys.path = sys_path

    # install the default log handlers
    _gtk.add_log_handlers()
Example #2
0
def _init():
    import sys

    sys_path = sys.path[:]

    _gtk.init_check()

    # init_check calls PySys_SetArgv which calls sys.path.insert(0, ''),
    # which causes problems for pychecker, restore it if modified.
    if sys.path != sys_path:
        sys.path[:] = sys_path

    # install the default log handlers
    _gtk.add_log_handlers()
Example #3
0
def _init():
    import sys

    try:
        sys_path = sys.path[:]

        try:
            _gtk.init_check()
        except RuntimeError, e:
            import warnings
            warnings.warn(str(e), _gtk.Warning)
    finally:
        # init_check calls PySys_SetArgv which calls sys.path.insert(0, ''),
        # which causes problems for pychecker, restore it if modified.
        if sys.path != sys_path:
            sys.path[:] = sys_path

    # install the default log handlers
    _gtk.add_log_handlers()
Example #4
0
def _init():
    import sys

    try:
        sys_path = sys.path[:]

        try:
            _gtk.init_check()
        except RuntimeError, e:
            import warnings
            warnings.warn(str(e), _gtk.Warning)
    finally:
        # init_check calls PySys_SetArgv which calls sys.path.insert(0, ''),
        # which causes problems for pychecker, restore it if modified.
        if sys.path != sys_path:
            sys.path[:] = sys_path

    # install the default log handlers
    _gtk.add_log_handlers()