1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
"""
Example that fails to execute
=============================
This example demonstrates a code block that raises an error and how any code
blocks that follow are not executed.
When scripts fail, their gallery thumbnail is replaced with the broken
image stamp. This allows easy identification in the gallery display.
You will also get the python traceback of the failed code block.
"""
# Code source: Óscar Nájera
# License: BSD 3 clause
# sphinx_gallery_line_numbers = True
import matplotlib.pyplot as plt
import numpy as np
plt.pcolormesh(np.random.randn(100, 100))
# %%
# This next block will raise a NameError
iae # noqa
# %%
# Sphinx gallery will stop executing the remaining code blocks after
# the exception has occurred in the example script. Nevertheless the
# html will still render all the example annotated text and
# code blocks, but no output will be shown.
# %%
# Here is another error raising block but will not be executed
plt.plot("Strings are not a valid argument for the plot function")
|