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


Python util.grok_environment_error方法代碼示例

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


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

示例1: remove_tree

# 需要導入模塊: from distutils import util [as 別名]
# 或者: from distutils.util import grok_environment_error [as 別名]
def remove_tree(directory, verbose=1, dry_run=0):
    """Recursively remove an entire directory tree.

    Any errors are ignored (apart from being reported to stdout if 'verbose'
    is true).
    """
    from distutils.util import grok_environment_error
    global _path_created

    if verbose >= 1:
        log.info("removing '%s' (and everything under it)", directory)
    if dry_run:
        return
    cmdtuples = []
    _build_cmdtuple(directory, cmdtuples)
    for cmd in cmdtuples:
        try:
            cmd[0](cmd[1])
            # remove dir from cache if it's already there
            abspath = os.path.abspath(cmd[1])
            if abspath in _path_created:
                del _path_created[abspath]
        except (IOError, OSError), exc:
            log.warn(grok_environment_error(
                    exc, "error removing %s: " % directory)) 
開發者ID:glmcdona,項目名稱:meddle,代碼行數:27,代碼來源:dir_util.py

示例2: remove_tree

# 需要導入模塊: from distutils import util [as 別名]
# 或者: from distutils.util import grok_environment_error [as 別名]
def remove_tree (directory, verbose=0, dry_run=0):
    """Recursively remove an entire directory tree.  Any errors are ignored
    (apart from being reported to stdout if 'verbose' is true).
    """
    from distutils.util import grok_environment_error
    global _path_created

    log.info("removing '%s' (and everything under it)", directory)
    if dry_run:
        return
    cmdtuples = []
    _build_cmdtuple(directory, cmdtuples)
    for cmd in cmdtuples:
        try:
            apply(cmd[0], (cmd[1],))
            # remove dir from cache if it's already there
            abspath = os.path.abspath(cmd[1])
            if _path_created.has_key(abspath):
                del _path_created[abspath]
        except (IOError, OSError), exc:
            log.warn(grok_environment_error(
                    exc, "error removing %s: " % directory)) 
開發者ID:ofermend,項目名稱:medicare-demo,代碼行數:24,代碼來源:dir_util.py

示例3: test_grok_environment_error

# 需要導入模塊: from distutils import util [as 別名]
# 或者: from distutils.util import grok_environment_error [as 別名]
def test_grok_environment_error(self):
        # test obsolete function to ensure backward compat (#4931)
        exc = IOError("Unable to find batch file")
        msg = grok_environment_error(exc)
        self.assertEqual(msg, "error: Unable to find batch file") 
開發者ID:aliyun,項目名稱:oss-ftp,代碼行數:7,代碼來源:test_util.py


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