> The above executes without problem for me regardless of whether python- > mode has been explicitly loaded. I have python mode py-version "5.1.0" on > my machine. My guess is that python-mode changed the session prompt in > such a way that Babel can not tell when execution has completed. I have > the following in my *Python* session buffer after execution [1], what are > the contents of your *Python* session buffer after you have C-g'd out of the > loop? > > Best, > > Footnotes: > [1] *Python* > >>> print "%d + %d = %d" % (2, 3, 2+3) > 2 + 3 = 5 > 2**5 > >>> > 32 > >>> > >>> > >>> 'org_babel_python_eoe' > >>> 'org_babel_python_eoe' > >>> print "%d + %d = %d" % (2, 3, 2+3) > 2 + 3 = 5 > >>> 2**5 > 32 > >>> > >>> > >>> > >>> 'org_babel_python_eoe' > 'org_babel_python_eoe' > >>> > -- > Eric Schulte > http://cs.unm.edu/~eschulte/
Hi Eric. I'm using python-mode 6.0.6, and have it set up to use ipython as the default python shell. Here's what I see: -------------- Enthought Python Distribution -- www.enthought.com Python 2.7.2 |EPD 7.2-2 (32-bit)| (default, Sep 14 2011, 11:02:05) [MSC v.1500 32 bit (Intel)] Type "copyright", "credits" or "license" for more information. IPython 0.12 -- An enhanced Interactive Python. ? -> Introduction and overview of IPython's features. %quickref -> Quick reference. help -> Python's own help system. object? -> Details about 'object', use 'object??' for extra details. In [1]: In [2]: print "%d + %d = %d" % (2, 3, 2+3) 2**5 2 + 3 = 5 In [3]: Out[3]: 32 In [4]: In [4]: In [4]: 'org_babel_python_eoe' In [4]: Out[4]: 'org_babel_python_eoe' In [5]: ----------------