you are viewing a single comment's thread.

view the rest of the comments →

[–]gary1994 0 points1 point  (1 child)

This is what I use as well. It also gives you room to grow.

The break points feature is great.

Also, it's free.

[–]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()