DDeepin Developerfeat: Init commit
b83cb584创建于 2022年10月19日历史提交
from python_threads import *

action = ActionGroup()
count = 1
for child in action.GetActionList():
    if child.val != count:
        raise RuntimeError(
            "Expected: " + str(count) + " got: " + str(child.val))
    count = count + 1

# Was seg faulting at the end here