本文整理汇总了Python中types.SimpleNamespace.stdout方法的典型用法代码示例。如果您正苦于以下问题:Python SimpleNamespace.stdout方法的具体用法?Python SimpleNamespace.stdout怎么用?Python SimpleNamespace.stdout使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类types.SimpleNamespace
的用法示例。
在下文中一共展示了SimpleNamespace.stdout方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: runner
# 需要导入模块: from types import SimpleNamespace [as 别名]
# 或者: from types.SimpleNamespace import stdout [as 别名]
def runner(retcode=0, *args):
retcode, stdout, stderr = cmd[args] & TEE(retcode=retcode)
end(db_run, session, stdout, stderr)
r = SimpleNamespace()
r.retcode = retcode
r.stdout = stdout
r.stderr = stderr
r.session = session
r.db_run = db_run
return r
示例2: run_varying_nfs
# 需要导入模块: from types import SimpleNamespace [as 别名]
# 或者: from types.SimpleNamespace import stdout [as 别名]
def run_varying_nfs(self, mock_path_read_text):
instance = FakeEdenInstance(self.make_temporary_directory())
v = SimpleNamespace(
mount_dir="mount_dir", shared_path="shared_path", instance=instance
)
mock_path_read_text.return_value = v.shared_path
v.client_path = str(instance.create_test_mount(v.mount_dir).path)
dry_run = True
out = TestOutput()
v.exit_code = doctor.cure_what_ails_you(
instance,
dry_run,
instance.mount_table,
fs_util=filesystem.LinuxFsUtil(),
process_finder=self.make_process_finder(),
out=out,
)
v.stdout = out.getvalue()
return v