Menu

Pydev 1.2.1 interacting with wxPython 2.6.3.2

2006-07-07
2013-03-15
  • Nobody/Anonymous

    When I use Pydev and write a buggy script that imports the wxPython library, the error output appears very briefly in an output window and then disappears.  This happens so quickly that I am unable to read exactly what the error output was.  As a result, it is impossible to debug programs that import the wxPython library.  Has anyone else run into this problem, or does anyone have any suggestions about how to fix it?

    Thanks!

     
    • Nobody/Anonymous

      FIXED!  The reason why the output was not being shown was that the output was being redirected by a redirect=True being passed to the application a la

      app = MyApp(redirect=True)

      Being a Python beginner I did not know the meaning of this flag until now...

      :-)