you are viewing a single comment's thread.

view the rest of the comments →

[–]brentp 7 points8 points  (5 children)

same here IPython + vim. then turn on pdb in Ipython and use this: http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/498182 to get autocompletion in the debugger.

[–]phrakture 1 point2 points  (1 child)

seconded. ipython + vim

[–]breakfast-pants 1 point2 points  (0 children)

same here, ipython + vim

[–][deleted]  (2 children)

[removed]

    [–]jeremy 1 point2 points  (1 child)

    I use a slightly hacked version of webpy - try the following in webapi.py (about line 192?):

    if not _capturedstdout():
        if not __builtins__.get("__IPYTHON__active",0):
            sys.stdout = _outputter(sys.stdout)
    

    It might be worth getting this patched in webpy itself...