当前位置: 首页>>代码示例>>Python>>正文


Python Popen.sort方法代码示例

本文整理汇总了Python中subprocess.Popen.sort方法的典型用法代码示例。如果您正苦于以下问题:Python Popen.sort方法的具体用法?Python Popen.sort怎么用?Python Popen.sort使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在subprocess.Popen的用法示例。


在下文中一共展示了Popen.sort方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: Popen

# 需要导入模块: from subprocess import Popen [as 别名]
# 或者: from subprocess.Popen import sort [as 别名]
    'qemu-old',
    'stp/papers/',
    'stp/tests',
    # The following directory contains a symlink to /dev/random
    # which makes QtCreator search go crazy
    'klee/runtime/POSIX/testing-dir',
]

if os.path.isdir('.git'):
    git_files = Popen(['git', 'ls-files'],
                  stdout=PIPE).communicate()[0].split('\n')
else:
    sys.stderr.write('This is not a git repository!\n')
    sys.exit(1)

git_files.sort()

dirs = set([""])
s2e_files = open('s2e.files', 'w')
s2e_includes = open('s2e.includes', 'w')
for fname in git_files:
    for b in blacklist:
        if fname.startswith(b):
            break
    else:
        if not os.path.isdir(fname):
            s2e_files.write(fname + '\n')

            fdir = fname
            while fdir != "":
                fdir = os.path.dirname(fdir)
开发者ID:Bletchley13,项目名称:s2e-xyj,代码行数:33,代码来源:s2e.refresh_project.py

示例2: list_branches

# 需要导入模块: from subprocess import Popen [as 别名]
# 或者: from subprocess.Popen import sort [as 别名]
 def list_branches(self):
     'list existing branches, with current branch first'
     l = Popen(["git", "branch"], stdout=PIPE).communicate()[0].split('\n')[:-1]
     l.sort(reverse=True) # force starred branch to be first
     return [s[2:] for s in l]
开发者ID:messiahwang,项目名称:gitpublish,代码行数:7,代码来源:core.py


注:本文中的subprocess.Popen.sort方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。