[IPython-dev] Broken autocall in trunk/
Fernando Perez
Fernando.Perez at colorado.edu
Wed Feb 8 16:22:48 EST 2006
Ville Vainio wrote:
> On 2/7/06, Fernando Perez <Fernando.Perez at colorado.edu> wrote:
>
>
>>I'm reverting to using 0.7.1fix1, please let us know when this is working again.
>
>
> It should be working now, try it again.
IPython 0.7.2.svn -- An enhanced Interactive Python.
? -> Introduction to IPython's features.
%magic -> Information about IPython's 'magic' % functions.
help -> Python's own help system.
object? -> Details about 'object'. ?object also works, ?? prints more.
In [1]: def foo(*x): pass
...:
In [2]: /foo 1,2
------> foo(1,2)
In [3]: ;foo a b c
------> foo("a b c")
In [4]: ,foo a b c
------> foo("a", "b", "c")
Looks OK, thanks.
f
More information about the IPython-dev
mailing list