Todo: 集成多平台 解决因SaiNiu线程抢占资源问题 本地提交测试环境打包 和 正式打包脚本与正式环境打包bat 提交Python32环境包 改进多日志文件生成情况修改打包日志细节

This commit is contained in:
2025-09-18 15:52:03 +08:00
parent 8b9fc925fa
commit 7cfc0c22b7
7608 changed files with 2424791 additions and 25 deletions

View File

@@ -0,0 +1,83 @@
# Test dynamic policy, and running object table.
import pythoncom
import winerror
from win32com.server.exception import COMException
iid = pythoncom.MakeIID("{b48969a0-784b-11d0-ae71-d23f56000000}")
class VeryPermissive:
def _dynamic_(self, name, lcid, wFlags, args):
if wFlags & pythoncom.DISPATCH_METHOD:
return getattr(self, name)(*args)
if wFlags & pythoncom.DISPATCH_PROPERTYGET:
try:
# to avoid problems with byref param handling, tuple results are converted to lists.
ret = self.__dict__[name]
if isinstance(ret, tuple):
ret = list(ret)
return ret
except KeyError: # Probably a method request.
raise COMException(scode=winerror.DISP_E_MEMBERNOTFOUND)
if wFlags & (
pythoncom.DISPATCH_PROPERTYPUT | pythoncom.DISPATCH_PROPERTYPUTREF
):
setattr(self, name, args[0])
return
raise COMException(scode=winerror.E_INVALIDARG, desc="invalid wFlags")
def write(self, *args):
if len(args) == 0:
raise COMException(
scode=winerror.DISP_E_BADPARAMCOUNT
) # Probably call as PROPGET.
for arg in args[:-1]:
print(arg, end=" ")
print(args[-1])
def Test():
import win32com.server.policy
import win32com.server.util
# import win32dbg;win32dbg.brk()
ob = win32com.server.util.wrap(
VeryPermissive(), usePolicy=win32com.server.policy.DynamicPolicy
)
try:
handle = pythoncom.RegisterActiveObject(ob, iid, 0)
except pythoncom.com_error as details:
print("Warning - could not register the object in the ROT:", details)
handle = None
try:
import win32com.client.dynamic
client = win32com.client.dynamic.Dispatch(iid)
client.ANewAttr = "Hello"
assert client.ANewAttr == "Hello", "Could not set dynamic property"
v = ["Hello", "From", "Python", 1.4]
client.TestSequence = v
assert v == list(
client.TestSequence
), f"Dynamic sequences not working! {v!r}/{client.testSequence!r}"
client.write("This", "output", "has", "come", "via", "testDynamic.py")
# Check our new "_FlagAsMethod" works (kinda!)
client._FlagAsMethod("NotReallyAMethod")
assert callable(client.NotReallyAMethod), "Method I flagged as callable isn't!"
client = None
finally:
if handle is not None:
pythoncom.RevokeActiveObject(handle)
print("Test worked!")
if __name__ == "__main__":
Test()