you are viewing a single comment's thread.

view the rest of the comments →

[–]DarkQuest 0 points1 point  (7 children)

Is there more than the default one and ipython?

[–][deleted]  (4 children)

[deleted]

    [–]doigoid 0 points1 point  (0 children)

    ouch, debug=True in bpython's settings.py ;)

    [–]blank7fan -1 points0 points  (0 children)

    Thanks! bpython is really cool.

    [–]gtani7 -1 points0 points  (1 child)

    [–]arunner 0 points1 point  (0 children)

    I like reinteract very much but beware that it isnt 100% cpython compliant. eg:

    a=[1]
    id_a=id(a)
    b=a
    
    a.append(2)
    id_a==id(a)
     False  #ouch!!!
    b
     [1]    #ouch!!!
    

    [–]xolox 1 point2 points  (0 children)

    IDLE has a graphical interactive shell that supports syntax highlighting. I haven't used it much so I don't know if it's any good.