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


Python os._name方法代碼示例

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


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

示例1: should_do_markup

# 需要導入模塊: import os [as 別名]
# 或者: from os import _name [as 別名]
def should_do_markup(file):
    if os.environ.get('PY_COLORS') == '1':
        return True
    if os.environ.get('PY_COLORS') == '0':
        return False
    return hasattr(file, 'isatty') and file.isatty() \
           and os.environ.get('TERM') != 'dumb' \
           and not (sys.platform.startswith('java') and os._name == 'nt') 
開發者ID:pytest-dev,項目名稱:py,代碼行數:10,代碼來源:terminalwriter.py

示例2: set_mode

# 需要導入模塊: import os [as 別名]
# 或者: from os import _name [as 別名]
def set_mode(self, bits, mask, files):
        if os.name == 'posix' or (os.name == 'java' and os._name == 'posix'):
            # Set the executable bits (owner, group, and world) on
            # all the files specified.
            for f in files:
                if self.dry_run:
                    logger.info("changing mode of %s", f)
                else:
                    mode = (os.stat(f).st_mode | bits) & mask
                    logger.info("changing mode of %s to %o", f, mode)
                    os.chmod(f, mode) 
開發者ID:Frank-qlu,項目名稱:recruit,代碼行數:13,代碼來源:util.py

示例3: __init__

# 需要導入模塊: import os [as 別名]
# 或者: from os import _name [as 別名]
def __init__(self, source_dir, target_dir, add_launchers=True,
                 dry_run=False, fileop=None):
        self.source_dir = source_dir
        self.target_dir = target_dir
        self.add_launchers = add_launchers
        self.force = False
        self.clobber = False
        # It only makes sense to set mode bits on POSIX.
        self.set_mode = (os.name == 'posix') or (os.name == 'java' and
                                                 os._name == 'posix')
        self.variants = set(('', 'X.Y'))
        self._fileop = fileop or FileOperator(dry_run)

        self._is_nt = os.name == 'nt' or (
            os.name == 'java' and os._name == 'nt') 
開發者ID:Frank-qlu,項目名稱:recruit,代碼行數:17,代碼來源:scripts.py

示例4: best

# 需要導入模塊: import os [as 別名]
# 或者: from os import _name [as 別名]
def best(cls):
        """
        Select the best ScriptWriter for this environment.
        """
        if sys.platform == 'win32' or (os.name == 'java' and os._name == 'nt'):
            return WindowsScriptWriter.best()
        else:
            return cls 
開發者ID:jpush,項目名稱:jbox,代碼行數:10,代碼來源:easy_install.py


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