Minjae - 2012-08-25

This is the actual (correct) behavior of ipython running from terminal

:~$ ipython
Python 2.7.3 (default, Aug 1 2012, 05:14:39)
Type "copyright", "credits" or "license" for more information.

IPython 0.13 -- 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]: "hello"
Out[1]: 'hello'

In [2]: "hi"
Out[2]: 'hi'

In [3]: "bye"
Out[3]: 'bye'

The "Out" buffer increases in numbering as we expect. Also, "In" buffer is clearly marked as well.