I was trying to debug a jython program for a long time that I was running in Eclipse using the PyDev plugin, but it worked once I ran it from the terminal instead. I suspected it might be that the user input wasn't working on the Eclipse console, so I tried running the most basic input program for jython I could think of
name = raw_input("What is your name? ")
print "Hello %s" % (name)
When this runs it outputs
What is your name?
and when I type in the console, the normal green text appears, but upon hitting enter, nothing happens. How can I get the console to feed the input back to the process?
EDIT: The input is fed to the program upon pressing Terminate, so it outputs
Hello name
Also, this is only happening when using PyDev, input works fine when running java code in the java perspective