##// END OF EJS Templates
Merge pull request #2179 from dopplershift/pylab-switch...
Merge pull request #2179 from dopplershift/pylab-switch Enable switching %pylab mode between inline and a single gui mode in a single notebook. With this merge, `%pylab` can be called interactively to toggle inline/GUI (matplotlib floating windows) mode. After initializing `%pylab inline`, now one can call `%pylab` without arguments to activate the default GUI or ask for a specific one as usual. IPython will detect if a different GUI is requested if one was already activated and will refuse to do so (to prevent multiple event loops from running concurrently, which often leads to problems).

File last commit:

r5342:0a49a993
r8027:6dac6929 merge
Show More
irunner.1
51 lines | 1.3 KiB | application/x-troff | GroffLexer
Fernando Perez
Fix padding of matplotlib figures, after much whining from Stefan :)
r4254 .TH IRUNNER 1 "July 15, 2011" "" ""
Stephan Peijnik
Add missing man pages contributed by Debian's Stephan Peijnik....
r2098 .SH NAME
\fBirunner \- interactive runner interface
.SH SYNOPSIS
.nf
.fam C
\fBirunner\fP [\fIoptions\fP] \fIfile_to_run\fP
.fam T
.fi
.SH DESCRIPTION
irunner is an interface to the various interactive runners
available in IPython's \fBirunner\fP module.
Julian Taylor
irunner: doc update...
r4274 It can used to run scripts as if they where typed up
interactively.
Stephan Peijnik
Add missing man pages contributed by Debian's Stephan Peijnik....
r2098 .PP
The already implemented runners are listed below; adding
one for a new program is a trivial task, see the source
for examples.
.SH OPTIONS
.TP
.B
\-h, \-\-help
show this help message and exit
.TP
.B
\-\-ipython
IPython interactive runner (default).
.TP
.B
\-\-python
Python interactive runner.
.TP
.B
\-\-sage
SAGE interactive runner.
.SH EXAMPLE
irunner.py \-\-python \-\- \-\-help
will pass \-\-help to the python runner.
Similarly,
irunner.py \-\-ipython \-\- \-\-interact script.ipy
.SH SEE ALSO
.BR ipython(1)
.br
.SH AUTHOR
Julian Taylor
escape minus signs in manpages...
r5342 \fBirunner\fP is an extension of Ken Schutte <kschutte\-AT\-csail.mit.edu>'s
script contributed on the ipython\-user list:
http://mail.scipy.org/pipermail/ipython\-user/2006\-May/003539.html
Stephan Peijnik
Add missing man pages contributed by Debian's Stephan Peijnik....
r2098 .PP
Fernando Perez
BUG: fix #368719, removed top-level debian/ directory....
r2101 This manual page was written by Bernd Zeimetz <bernd@bzed.de>, for the Debian
project (but may be used by others). Modified by Fernando Perez
<Fernando.Perez@berkeley.edu> for inclusion in IPython.