當前位置: 首頁>>代碼示例>>Python>>正文


Python deprecation.install_warning_logger方法代碼示例

本文整理匯總了Python中pip.utils.deprecation.install_warning_logger方法的典型用法代碼示例。如果您正苦於以下問題:Python deprecation.install_warning_logger方法的具體用法?Python deprecation.install_warning_logger怎麽用?Python deprecation.install_warning_logger使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在pip.utils.deprecation的用法示例。


在下文中一共展示了deprecation.install_warning_logger方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: main

# 需要導入模塊: from pip.utils import deprecation [as 別名]
# 或者: from pip.utils.deprecation import install_warning_logger [as 別名]
def main(args=None):
    if args is None:
        args = sys.argv[1:]

    # Configure our deprecation warnings to be sent through loggers
    deprecation.install_warning_logger()

    autocomplete()

    try:
        cmd_name, cmd_args = parseopts(args)
    except PipError as exc:
        sys.stderr.write("ERROR: %s" % exc)
        sys.stderr.write(os.linesep)
        sys.exit(1)

    # Needed for locale.getpreferredencoding(False) to work
    # in pip.utils.encoding.auto_decode
    locale.setlocale(locale.LC_ALL, '')
    command = commands_dict[cmd_name](isolated=check_isolated(cmd_args))
    return command.main(cmd_args)


# ###########################################################
# # Writing freeze files 
開發者ID:jpush,項目名稱:jbox,代碼行數:27,代碼來源:__init__.py

示例2: main

# 需要導入模塊: from pip.utils import deprecation [as 別名]
# 或者: from pip.utils.deprecation import install_warning_logger [as 別名]
def main(args=None):
    if args is None:
        args = sys.argv[1:]

    # Configure our deprecation warnings to be sent through loggers
    deprecation.install_warning_logger()

    autocomplete()

    try:
        cmd_name, cmd_args = parseopts(args)
    except PipError as exc:
        sys.stderr.write("ERROR: %s" % exc)
        sys.stderr.write(os.linesep)
        sys.exit(1)

    # Needed for locale.getpreferredencoding(False) to work
    # in pip.utils.encoding.auto_decode
    try:
        locale.setlocale(locale.LC_ALL, '')
    except locale.Error as e:
        # setlocale can apparently crash if locale are uninitialized
        logger.debug("Ignoring error %s when setting locale", e)
    command = commands_dict[cmd_name](isolated=check_isolated(cmd_args))
    return command.main(cmd_args)


# ###########################################################
# # Writing freeze files 
開發者ID:Frank-qlu,項目名稱:recruit,代碼行數:31,代碼來源:__init__.py

示例3: main

# 需要導入模塊: from pip.utils import deprecation [as 別名]
# 或者: from pip.utils.deprecation import install_warning_logger [as 別名]
def main(args=None):
    if args is None:
        args = sys.argv[1:]

    # Enable our Deprecation Warnings
    for deprecation_warning in deprecation.DEPRECATIONS:
        warnings.simplefilter("default", deprecation_warning)

    # Configure our deprecation warnings to be sent through loggers
    deprecation.install_warning_logger()

    autocomplete()

    try:
        cmd_name, cmd_args = parseopts(args)
    except PipError as exc:
        sys.stderr.write("ERROR: %s" % exc)
        sys.stderr.write(os.linesep)
        sys.exit(1)

    command = commands_dict[cmd_name](isolated=check_isolated(cmd_args))
    return command.main(cmd_args)


# ###########################################################
# # Writing freeze files 
開發者ID:chalasr,項目名稱:Flask-P2P,代碼行數:28,代碼來源:__init__.py

示例4: main

# 需要導入模塊: from pip.utils import deprecation [as 別名]
# 或者: from pip.utils.deprecation import install_warning_logger [as 別名]
def main(args=None):
    if args is None:
        args = sys.argv[1:]

    if 'virtualenv' in args:
        print("""
WARNING: using virtualenv with conda is untested and not recommended.
    We suggest using the conda command to create environments instead.
    For more information about creating conda environments, please see:
        http://docs.continuum.io/conda/examples/create.html
""")
        sys.stdout.write("Proceed (y/n)? ")
        sys.stdout.flush()
        proceed = sys.stdin.readline()
        if proceed.strip().lower() not in ('y', 'yes'):
            sys.exit(0)

    # Enable our Deprecation Warnings
    for deprecation_warning in deprecation.DEPRECATIONS:
        warnings.simplefilter("default", deprecation_warning)

    # Configure our deprecation warnings to be sent through loggers
    deprecation.install_warning_logger()

    autocomplete()

    try:
        cmd_name, cmd_args = parseopts(args)
    except PipError as exc:
        sys.stderr.write("ERROR: %s" % exc)
        sys.stderr.write(os.linesep)
        sys.exit(1)

    command = commands_dict[cmd_name](isolated=check_isolated(cmd_args))
    return command.main(cmd_args)


# ###########################################################
# # Writing freeze files 
開發者ID:nccgroup,項目名稱:Splunking-Crime,代碼行數:41,代碼來源:__init__.py


注:本文中的pip.utils.deprecation.install_warning_logger方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。