⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 emit.py

📁 The BuildBot is a system to automate the compile/test cycle required by most software projects. CVS
💻 PY
字号:
#! /usr/bin/pythonimport os, syssys.stdout.write("this is stdout in subdir\n")sys.stderr.write("this is stderr\n")if os.environ.has_key("EMIT_TEST"):    sys.stdout.write("EMIT_TEST: %s\n" % os.environ["EMIT_TEST"])open("log1.out","wt").write("this is log1\n")rc = int(sys.argv[1])sys.exit(rc)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -