Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Fix doc build on 3.10.x #29943

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 18, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions galleries/users_explain/figure/interactive_guide.rst
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ with what is displayed on the screen. This is intended to be used to
determine if ``draw_idle`` should be called to schedule a re-rendering
of the figure.

Each artist has a `.Artist.stale_callback` attribute which holds a callback
Each artist has a `!Artist.stale_callback` attribute which holds a callback
with the signature ::

def callback(self: Artist, val: bool) -> None:
Expand All @@ -343,7 +343,7 @@ default callback is `None`. If you call `.pyplot.ion` and are not in
`~.backend_bases.FigureCanvasBase.draw_idle` on any stale figures
after having executed the user's input, but before returning the prompt
to the user. If you are not using `.pyplot` you can use the callback
`Figure.stale_callback` attribute to be notified when a figure has
`!Figure.stale_callback` attribute to be notified when a figure has
become stale.


Expand Down Expand Up @@ -424,7 +424,7 @@ IPython / prompt_toolkit
With IPython >= 5.0 IPython has changed from using CPython's readline
based prompt to a ``prompt_toolkit`` based prompt. ``prompt_toolkit``
has the same conceptual input hook, which is fed into ``prompt_toolkit`` via the
:meth:`IPython.terminal.interactiveshell.TerminalInteractiveShell.inputhook`
:meth:`!IPython.terminal.interactiveshell.TerminalInteractiveShell.inputhook`
method. The source for the ``prompt_toolkit`` input hooks lives at
``IPython.terminal.pt_inputhooks``.

Expand Down