##// END OF EJS Templates
updated references to configuration file options to specify the class as well as the option itself
Erik Tollerud -
Show More
@@ -641,9 +641,9 b' Currently the magic system has the following functions:\\n"""'
641 641
642 642 -i/-c: make the pattern case insensitive/sensitive. If neither of
643 643 these options are given, the default is read from your configuration
644 file, with the option name 'wildcards_case_sensitive'. If this option
645 is not specified in your configuration file, IPython's internal
646 default is to do a case sensitive search.
644 file, with the option ``InteractiveShell.wildcards_case_sensitive``.
645 If this option is not specified in your configuration file, IPython's
646 internal default is to do a case sensitive search.
647 647
648 648 -e/-s NAMESPACE: exclude/search a given namespace. The pattern you
649 649 specifiy can be searched in any of the following namespaces:
@@ -1230,7 +1230,7 b' Currently the magic system has the following functions:\\n"""'
1230 1230 this feature on and off.
1231 1231
1232 1232 The initial state of this feature is set in your configuration
1233 file (the option is called 'pdb').
1233 file (the option is ``InteractiveShell.pdb``).
1234 1234
1235 1235 If you want to just activate the debugger AFTER an exception has fired,
1236 1236 without having to type '%pdb on' and rerunning your code, you can use
@@ -2269,10 +2269,11 b' Currently the magic system has the following functions:\\n"""'
2269 2269 docstring for how to change the editor hook.
2270 2270
2271 2271 You can also set the value of this editor via the command line option
2272 '-editor' or in your configuration file. This is useful if you wish to
2273 use specifically for IPython an editor different from your typical
2274 default (and for Windows users who typically don't set environment
2275 variables).
2272 '-editor' or in your configuration file (via the
2273 ``TerminalInteractiveShell.editor`` option). This is useful if you wish
2274 to use an editor specifcally for IPython that is different from your
2275 typical default (and for Windows users who typically don't set
2276 environment variables).
2276 2277
2277 2278 This command allows you to conveniently edit multi-line code right in
2278 2279 your IPython session.
@@ -3,10 +3,11 b''
3 3 Limitations:
4 4
5 5 - When generating examples for use as doctests, make sure that you have
6 pretty-printing OFF. This can be done either by setting the 'pprint' option
7 in your configuration file to 'False', or by interactively disabling it with
8 %Pprint. This is required so that IPython output matches that of normal
9 Python, which is used by doctest for internal execution.
6 pretty-printing OFF. This can be done either by setting the
7 ``PlainTextFormatter.pprint`` option in your configuration file to False, or
8 by interactively disabling it with %Pprint. This is required so that IPython
9 output matches that of normal Python, which is used by doctest for internal
10 execution.
10 11
11 12 - Do not rely on specific prompt numbers for results (such as using
12 13 '_34==True', for example). For IPython tests run via an external process the
General Comments 0
You need to be logged in to leave comments. Login now