The following forum message was posted by fabioz at 
http://sourceforge.net/projects/pydev/forums/forum/293649/topic/3923296:

It's strange that setting the PYTHONVERBOSE didn't show more information, so,
maybe the stderr/stdout is being swallowed for some reason...

So can someone (after changing PYTHONVERBOSE to True) also do the following
changes:

1. Change plugins\org.python.pydev_XXX\PySrc\pydevconsole.py and add the code
below as the 1st lines of the file:
import sys
sys.stderr = sys.stdout = open('c:/pydevconsole_output.txt', 'w')

2. Change 
plugins\org.python.pydev_XXX\PySrc\pydev_sitecustomize\sitecustomize.py
and add the code below as the 1st lines of the file:
import sys
sys.stderr = sys.stdout = open('c:/sitecustomize_output.txt', 'w')

Note that the paths with the opened files may need to be changed for each
system.

Later, please attach those files (which in this example would
be c:/sitecustomize_output.txt and c:/pydevconsole_output.txt) to the bug report
at https://sourceforge.net/tracker/index.php?func=detail&aid=3157697&group_id=85
796&atid=577329

Cheers,

Fabio

------------------------------------------------------------------------------
Protect Your Site and Customers from Malware Attacks
Learn about various malware tactics and how to avoid them. Understand 
malware threats, the impact they can have on your business, and how you 
can protect your company and customers by using code signing.
http://p.sf.net/sfu/oracle-sfdevnl
_______________________________________________
Pydev-users mailing list
Pydev-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pydev-users

Reply via email to