Ai
2 Star 0 Fork 0

chromium_develop/chromium_tools

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
README.py 894 Bytes
一键复制 编辑 原始数据 按行查看 历史
李想 提交于 2022-08-16 16:29 +08:00 . chromium origin init
#!/usr/bin/env python
# coding=utf-8
# Copyright 2012 The LUCI Authors. All rights reserved.
# Use of this source code is governed under the Apache License, Version 2.0
# that can be found in the LICENSE file.
###
# Run me to generate the documentation!
###
# Line too long (NN/80)
# pylint: disable=C0301
"""Test tracing and isolation infrastructure.
A few scripts have strict dependency rules:
- The pure tracing scripts (trace_*.py) do not know about isolate
infrastructure.
"""
import os
import sys
def main():
for i in sorted(os.listdir(os.path.dirname(os.path.abspath(__file__)))):
if not i.endswith('.py') or i == 'PRESUBMIT.py':
continue
module = __import__(i[:-3])
if hasattr(module, '__doc__'):
print(module.__name__)
print(''.join(' %s\n' % i for i in module.__doc__.splitlines()))
return 0
if __name__ == '__main__':
sys.exit(main())
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/chromium_develop/chromium_tools.git
git@gitee.com:chromium_develop/chromium_tools.git
chromium_develop
chromium_tools
chromium_tools
master

搜索帮助