本文整理汇总了Python中pyvirtualdisplay.smartdisplay.SmartDisplay.__enter__方法的典型用法代码示例。如果您正苦于以下问题:Python SmartDisplay.__enter__方法的具体用法?Python SmartDisplay.__enter__怎么用?Python SmartDisplay.__enter__使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pyvirtualdisplay.smartdisplay.SmartDisplay
的用法示例。
在下文中一共展示了SmartDisplay.__enter__方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: IOError
# 需要导入模块: from pyvirtualdisplay.smartdisplay import SmartDisplay [as 别名]
# 或者: from pyvirtualdisplay.smartdisplay.SmartDisplay import __enter__ [as 别名]
else:
raise IOError("Wine bottle is not valid")
try:
yield temp_dir
finally:
shutil.rmtree(temp_dir)
disp = SmartDisplay(visible=0, bgcolor="black")
master_prefix = create_wine_prefix(TEMPLATE)
atexit.register(master_prefix.__exit__, None, None, None)
atexit.register(disp.__exit__, None, None, None)
master_prefix = master_prefix.__enter__()
disp = disp.__enter__()
def check_change(temp, master):
dir_cmp = filecmp.dircmp(temp, master)
newfiles = dir_cmp.left_only
deletedfiles = dir_cmp.right_only
funnyfiles = dir_cmp.funny_files
(_, modifiedfiles, errors) = filecmp.cmpfiles(temp, master, dir_cmp.common_files, shallow=False)
funnyfiles.extend(errors)
for common_dir in dir_cmp.common_dirs:
new_dir1 = os.path.join(temp, common_dir)
new_dir2 = os.path.join(master, common_dir)
(a, b, c, d) = check_change(new_dir1, master=new_dir2)