You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
binding\python\bench_test.py文件的第96行代码: if region != ps[2]:
忽略了原始IP文件中的换行符‘\r’,会导致查询测试执行失败,调试结果如下图所示:
代码修改为: if region != ps[2].replace('\r', ''):
查询测试即可成功运行。
冒昧请教,不知可否请您@luckydog6132 确认一下该问题是否是我的个例。
谢谢!
The text was updated successfully, but these errors were encountered:
binding\python\bench_test.py文件的第96行代码:
if region != ps[2]:
忽略了原始IP文件中的换行符‘\r’,会导致查询测试执行失败,调试结果如下图所示:
代码修改为:
if region != ps[2].replace('\r', ''):
查询测试即可成功运行。
冒昧请教,不知可否请您@luckydog6132 确认一下该问题是否是我的个例。
谢谢!
The text was updated successfully, but these errors were encountered: