-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
Fix #9240: Unknown node error for pending_xref_condition is raised #9246
Fix #9240: Unknown node error for pending_xref_condition is raised #9246
Conversation
21b1eb1
to
b7e1c8f
Compare
… raised Unknown node error for pending_xref_condition is raised if an extension that does not support the node installs a missing-reference handler.
b7e1c8f
to
2d3d668
Compare
@@ -10,6 +10,8 @@ Incompatible changes | |||
* #9222: Update Underscore.js to 1.13.1 | |||
* #9217: manpage: Stop creating a section directory on build manpage by default | |||
(see :confval:`man_make_section_directory`) | |||
* #9240: Unknown node error for pending_xref_condition is raised if an extension |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@tk0miya I just noticed, that you put this in the Incompatible changes
section instead of Bugs fixed
. Also, this should probably read "Unknown node error for pending_xref_condition is no longer raised if ...".
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oops, it's my wrong...
…doc#9240) After sphinx-doc#9246, `find_pending_xref_conditions()` should be only called from intended modules. At present, the Python Domain is the only module to call it intendedly. Therefore, this removes the needless calls of the utility function from "unintended" modules.
…doc#9240) After sphinx-doc#9246, `find_pending_xref_conditions()` should be only called from intended modules. At present, the Python Domain is the only module to call it intendedly. Therefore, this removes the needless calls of the utility function from "unintended" modules.
Feature or Bugfix
Purpose
that does not support the node installs a missing-reference handler.
pending_xref_condition
#9240