# Verify that errors (stderr) show up in the Capture output window. # Syntax errors include "^" position cursor, but not lines related to proxy. # Syntax errors occur before code is run, so no prior print() output appears. print('syntax error follows...') # <= doesn't show up (as expected) x = 1 ? 2 # expected result in Capture window: """ File "C:\MY-STUFF\Code\pymailgui\PyMailGui-PP4E\PP4E\Gui\TextEditor\docetc\RunCode-examples\errors-syntax.py", line 6 x = 1 ? 2 ^ SyntaxError: invalid syntax [EOF] """