8000 Docs: specify XML document name in xml.etree.elementtree example by moshekaplan · Pull Request #24223 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

Docs: specify XML document name in xml.etree.elementtree example #24223

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 3 commits into from
Apr 1, 2024
Merged
Changes from 1 commit
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
Next Next commit
xml.etree.elementtree: Specify XML document name
The xpath-support section references that it uses the `countrydata` XML document located in the Parsing XML section.
However, the Parsing XML section does not explicitly state that the XML document is named `countrydata`. 
This change adds the name `countrydata` to the Parsing XML section.
  • Loading branch information
moshekaplan authored Jan 15, 2021
commit 9ea14df4a55af54596b6db87470672520e822b86
2 changes: 1 addition & 1 deletion Doc/library/xml.etree.elementtree.rst
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ and its sub-elements are done on the :class:`Element` level.
Parsing XML
^^^^^^^^^^^

We'll be using the following XML document as the sample data for this section:
We'll be using the following ``countrydata`` XML document as the sample data for this section:

.. code-block:: xml

Expand Down
0