##// END OF EJS Templates
Bit nitpicky about rst markup, find more errors.
Matthias Bussonnier -
Show More
@@ -75,7 +75,7 b' def embed_kernel(module=None, local_ns=None, **kwargs):'
75
75
76 Parameters
76 Parameters
77 ----------
77 ----------
78 module : ModuleType, optional
78 module : types.ModuleType, optional
79 The module to load into IPython globals (default: caller)
79 The module to load into IPython globals (default: caller)
80 local_ns : dict, optional
80 local_ns : dict, optional
81 The namespace to load into IPython user namespace (default: caller)
81 The namespace to load into IPython user namespace (default: caller)
@@ -66,6 +66,8 b' extensions = ['
66 'configtraits',
66 'configtraits',
67 ]
67 ]
68
68
69 nitpicky = True
70
69 # Add any paths that contain templates here, relative to this directory.
71 # Add any paths that contain templates here, relative to this directory.
70 templates_path = ['_templates']
72 templates_path = ['_templates']
71
73
@@ -206,8 +206,8 b' Make :magic:`%run -n -i ... <run>` work correctly. Earlier, if :magic:`%run` was'
206 passed both arguments, ``-n`` would be silently ignored. See :ghpull:`10308`
206 passed both arguments, ``-n`` would be silently ignored. See :ghpull:`10308`
207
207
208
208
209 The :cellmagic:`%%script`` (as well as :cellmagic:`%%bash``,
209 The :cellmagic:`%%script` (as well as :cellmagic:`%%bash`,
210 :cellmagic:`%%ruby``... ) cell magics now raise by default if the return code of
210 :cellmagic:`%%ruby`... ) cell magics now raise by default if the return code of
211 the given code is non-zero (thus halting execution of further cells in a
211 the given code is non-zero (thus halting execution of further cells in a
212 notebook). The behavior can be disable by passing the ``--no-raise-error`` flag.
212 notebook). The behavior can be disable by passing the ``--no-raise-error`` flag.
213
213
General Comments 0
You need to be logged in to leave comments. Login now