本文介绍了如何在不卸载 PythonWin 的情况下禁用 PythonWin 的“将输出重定向到 win32trace 远程收集器"功能?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

当我运行 wxPython 应用程序时,它会打印字符串将输出重定向到 win32trace 远程收集器",我必须打开 PythonWin 的跟踪收集器工具才能查看该跟踪输出.

When I run a wxPython application, it prints the string “Redirecting output to win32trace remote collector”and I must open PythonWin's trace collector tool to view that trace output.

由于我对收集此输出不感兴趣,我应该如何禁用此功能?

Since I'm not interested in collecting this output, how should I disable this feature?

推荐答案

你甚至可以在实例化 wx.App() 时传递它:

You can even pass that when you instantiate your wx.App():

if __name__ == "__main__":
    app = wx.App(redirect=False) #or 0
    app.MainLoop()

wxPython wx.App 文档

这篇关于如何在不卸载 PythonWin 的情况下禁用 PythonWin 的“将输出重定向到 win32trace 远程收集器"功能?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-18 20:07