Todo: 集成多平台 解决因SaiNiu线程抢占资源问题 本地提交测试环境打包 和 正式打包脚本与正式环境打包bat 提交Python32环境包 改进多日志文件生成情况修改打包日志细节
This commit is contained in:
29
Utils/PythonNew32/Lib/site-packages/win32com/test/testROT.py
Normal file
29
Utils/PythonNew32/Lib/site-packages/win32com/test/testROT.py
Normal file
@@ -0,0 +1,29 @@
|
||||
import unittest
|
||||
|
||||
import pythoncom
|
||||
import win32com.test.util
|
||||
import winerror
|
||||
|
||||
|
||||
class TestROT(win32com.test.util.TestCase):
|
||||
def testit(self):
|
||||
ctx = pythoncom.CreateBindCtx()
|
||||
rot = pythoncom.GetRunningObjectTable()
|
||||
num = 0
|
||||
for mk in rot:
|
||||
name = mk.GetDisplayName(ctx, None)
|
||||
num += 1
|
||||
# Monikers themselves can iterate their contents (sometimes :)
|
||||
try:
|
||||
for sub in mk:
|
||||
num += 1
|
||||
except pythoncom.com_error as exc:
|
||||
if exc.hresult != winerror.E_NOTIMPL:
|
||||
raise
|
||||
|
||||
# if num < 2:
|
||||
# print("Only", num, "objects in the ROT - this is unusual")
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
unittest.main()
|
||||
Reference in New Issue
Block a user