I've noticed a very odd bug since I updated my Eclipse.
The console area, where we see the stdout + stderr from the running processes appears to have lost it's scroll-bar. From time to time the object which manages this area seems to have become utterly confuised. The arrows at the top and bottom of the scroll bar do not work.
The easiest way to re-produce this fault is to begin a process which writes a lot of content to stdout. After a few seconds I get an eclipse Error dialog.
The window title is "Multiple Problems have occurred".
The box has a red X icon, adjacent to an error message "An internal error has occurred"
The list of error windows all have the text "Reveal End of Document". If I click on details I get the follow-on message
An internal error has occurred.
39
When this error condition occurs, I can sometimes scroll using the arrow keys, however scrolling occasionally causes the console area to mess up. I've googled that "Reveal End of Document" is supposed to be an exclipse IDE function which ought to cause a console to jump to the end.
Does anybody have an idea what might be going on? How can I fix this problem? It's really annoying.
Using Eclipse 3.6 on an up to date Sun JDK with Pydev plugin on Windows XP 32 bit & latest PyDev
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I've noticed a very odd bug since I updated my Eclipse.
The console area, where we see the stdout + stderr from the running processes appears to have lost it's scroll-bar. From time to time the object which manages this area seems to have become utterly confuised. The arrows at the top and bottom of the scroll bar do not work.
The easiest way to re-produce this fault is to begin a process which writes a lot of content to stdout. After a few seconds I get an eclipse Error dialog.
The window title is "Multiple Problems have occurred".
The box has a red X icon, adjacent to an error message "An internal error has occurred"
The list of error windows all have the text "Reveal End of Document". If I click on details I get the follow-on message
An internal error has occurred.
39
When this error condition occurs, I can sometimes scroll using the arrow keys, however scrolling occasionally causes the console area to mess up. I've googled that "Reveal End of Document" is supposed to be an exclipse IDE function which ought to cause a console to jump to the end.
Does anybody have an idea what might be going on? How can I fix this problem? It's really annoying.
Using Eclipse 3.6 on an up to date Sun JDK with Pydev plugin on Windows XP 32 bit & latest PyDev
I've also raised this topic on StackOverflow
On Pydev 1.6.1 and Eclipse 3.6, with the following program:
s = '*' * 1000
while True:
print s
it seems to work fine for me (left it running for a minute and all ways fine).
Do you have better instructions on how to reproduce it? (a sample program would be best).
Cheers,
Fabio