##// END OF EJS Templates
Merge pull request #12053 from noviluni/small_fixes...
Matthias Bussonnier -
r25389:fddf546b merge
parent child Browse files
Show More
@@ -7,7 +7,6 b' docs/source/api/generated'
7 docs/source/config/options
7 docs/source/config/options
8 docs/source/config/shortcuts/*.csv
8 docs/source/config/shortcuts/*.csv
9 docs/source/interactive/magics-generated.txt
9 docs/source/interactive/magics-generated.txt
10 docs/source/config/shortcuts/*.csv
11 docs/gh-pages
10 docs/gh-pages
12 jupyter_notebook/notebook/static/mathjax
11 jupyter_notebook/notebook/static/mathjax
13 jupyter_notebook/static/style/*.map
12 jupyter_notebook/static/style/*.map
@@ -155,7 +155,7 b' class Doc2UnitTester(object):'
155 # failed should contain at most one item. More than that
155 # failed should contain at most one item. More than that
156 # is a case we can't handle and should error out on
156 # is a case we can't handle and should error out on
157 if len(failed) > 1:
157 if len(failed) > 1:
158 err = "Invalid number of test results:" % failed
158 err = "Invalid number of test results: %s" % failed
159 raise ValueError(err)
159 raise ValueError(err)
160 # Report a normal failure.
160 # Report a normal failure.
161 self.fail('failed doctests: %s' % str(failed[0]))
161 self.fail('failed doctests: %s' % str(failed[0]))
@@ -225,7 +225,6 b" htmlhelp_basename = 'ipythondoc'"
225 intersphinx_mapping = {'python': ('https://docs.python.org/3/', None),
225 intersphinx_mapping = {'python': ('https://docs.python.org/3/', None),
226 'rpy2': ('https://rpy2.readthedocs.io/en/version_2.8.x/', None),
226 'rpy2': ('https://rpy2.readthedocs.io/en/version_2.8.x/', None),
227 'jupyterclient': ('https://jupyter-client.readthedocs.io/en/latest/', None),
227 'jupyterclient': ('https://jupyter-client.readthedocs.io/en/latest/', None),
228 'ipyparallel': ('https://ipyparallel.readthedocs.io/en/latest/', None),
229 'jupyter': ('https://jupyter.readthedocs.io/en/latest/', None),
228 'jupyter': ('https://jupyter.readthedocs.io/en/latest/', None),
230 'jedi': ('https://jedi.readthedocs.io/en/latest/', None),
229 'jedi': ('https://jedi.readthedocs.io/en/latest/', None),
231 'traitlets': ('https://traitlets.readthedocs.io/en/latest/', None),
230 'traitlets': ('https://traitlets.readthedocs.io/en/latest/', None),
General Comments 0
You need to be logged in to leave comments. Login now