当前位置: 首页>>代码示例>>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;未经允许,请勿转载。