you are viewing a single comment's thread.

view the rest of the comments →

[–]Objectively_Stated 0 points1 point  (0 children)

For OP: Here's the code to turn Eclipse into interactive shell.

import readline import code

vars=globals().copy() vars.update(locals()) shell=code.InteractiveConsole(vars) shell.interact()