File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -60,8 +60,8 @@ PythonCall.fix_qt_plugin_path
6060## IPython
6161
6262The ` juliacall.ipython ` IPython extension adds these features to your IPython session:
63- - The line magic ` %jl code ` executes the given Julia code in-line.
64- - The cell magic ` %%jl ` executes a cell of Julia code.
63+ - The line magic ` %julia code ` executes the given Julia code in-line.
64+ - The cell magic ` %%julia ` executes a cell of Julia code.
6565- Julia's ` stdout ` and ` stderr ` are redirected to IPython.
6666- Calling ` display(x) ` from Julia will display ` x ` in IPython.
6767
Original file line number Diff line number Diff line change 4242* Adds ` PythonCall.GC.disable() ` and ` PythonCall.GC.enable() ` .
4343* Experimental new function ` juliacall.interactive() ` allows the Julia async event loop to
4444 run in the background of the Python REPL.
45- * Experimental new IPython extension ` juliacall.ipython ` providing the ` %jl ` and ` %%jl `
45+ * Experimental new IPython extension ` juliacall.ipython ` providing the ` %julia ` and ` %%julia `
4646 magics for executing Julia code.
4747* Experimental new module ` juliacall.importer ` allowing you to write Python modules in
4848 Julia.
Original file line number Diff line number Diff line change 66Enable the extension by calling the magic '%load_ext juliacall.ipython'.
77
88Features:
9- - Magic `%jl code` to evaluate a piece of Julia code in-line.
10- - Cell magic `%%jl ` to evaluate a cell of Julia code.
9+ - Magic `%julia code` to evaluate a piece of Julia code in-line.
10+ - Cell magic `%%julia ` to evaluate a cell of Julia code.
1111- Julia's stdin and stdout are redirected to Python's stdin and stdout.
1212- Calling Julia's 'display(x)' function will display 'x' in IPython.
1313"""
You can’t perform that action at this time.
0 commit comments