Skip to content
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

Allow more low-level parser configuration in ElementTree #63682

Open
brechtm mannequin opened this issue Nov 3, 2013 · 6 comments
Open

Allow more low-level parser configuration in ElementTree #63682

brechtm mannequin opened this issue Nov 3, 2013 · 6 comments
Labels
3.10 only security fixes topic-XML type-bug An unexpected behavior, bug, or error

Comments

@brechtm
Copy link
Mannequin

brechtm mannequin commented Nov 3, 2013

BPO 19483
Nosy @scoder, @bitdancer
Files
  • Screenshot_20200223-214519.png
  • Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.

    Show more details

    GitHub fields:

    assignee = None
    closed_at = None
    created_at = <Date 2013-11-03.10:58:40.547>
    labels = ['expert-XML', 'type-bug', '3.10']
    title = 'Allow more low-level parser configuration in ElementTree'
    updated_at = <Date 2020-09-08.05:01:02.719>
    user = 'https://bugs.python.org/brechtm'

    bugs.python.org fields:

    activity = <Date 2020-09-08.05:01:02.719>
    actor = 'scoder'
    assignee = 'none'
    closed = False
    closed_date = None
    closer = None
    components = ['XML']
    creation = <Date 2013-11-03.10:58:40.547>
    creator = 'brechtm'
    dependencies = []
    files = ['48904']
    hgrepos = []
    issue_num = 19483
    keywords = []
    message_count = 6.0
    messages = ['202011', '202034', '202037', '202040', '202049', '376546']
    nosy_count = 4.0
    nosy_names = ['scoder', 'r.david.murray', 'eli.bendersky', 'brechtm']
    pr_nums = []
    priority = 'normal'
    resolution = None
    stage = None
    status = 'open'
    superseder = None
    type = 'behavior'
    url = 'https://bugs.python.org/issue19483'
    versions = ['Python 3.10']

    @brechtm
    Copy link
    Mannequin Author

    brechtm mannequin commented Nov 3, 2013

    With Python 3.2, I subclassed ElementTree.XMLParser to set ExternalEntityRefHandler on the XMLParser's (expat) 'parser' member. I understand the 'parser' member is not part of the public API, but this was the only way to customize the parser without having to write a parser from scratch.

    With 3.3, cElementTree replaces the Python implementation by default. Its XMLParser class has no accessible 'parser' member to configure. Unfortunately, there does not seem to be a way to use the pure-Python XMLParser, which would still allow for customization of the parser. Why is the Python version still in the library if it can't be accessed? Only for platforms where the C extension is not available?

    I see two possible solutions:

    1. Have XMLParser (both the C and Python versions) accept an optional parser argument, so that a custom parser can be passed in.

    2. Make the Python version of ElementTree available again.

    My other option is to copy the Python XMLParser version into my project. I would like to avoid this, as this would duplicate a lot of perfectly good code.
    Perhaps there are other solutions?

    @brechtm brechtm mannequin added topic-XML type-bug An unexpected behavior, bug, or error labels Nov 3, 2013
    @bitdancer
    Copy link
    Member

    It is there so that Python implementations (other than cPython) that do not have ElementTree accelerator modules can fall back on the pure python version.

    You can import the pure python version in cPython by blocking the import of the C accelerator:

       import sys
       sys.modules['_elementtree'] = None
       import xml.etree.ElementTree

    I'll leave this open to see what the xml experts think about the custom parser idea.

    @scoder
    Copy link
    Contributor

    scoder commented Nov 3, 2013

    Brecht Machiels, 03.11.2013 11:58:

    With Python 3.2, I subclassed ElementTree.XMLParser to set ExternalEntityRefHandler on the XMLParser's (expat) 'parser' member

    This sounds like a request for a missing feature to me. Here is how lxml
    handles it:

    http://lxml.de/resolvers.html

    I understand the 'parser' member is not part of the public API

    Correct, although the fact that it is not prefixed with an underscore is
    rather unfortunate. IMHO, there is no guarantee that the underlying parser
    will always be expat, and in fact, it is not in lxml.

    I see two possible solutions:

    1. Have XMLParser (both the C and Python versions) accept an optional parser argument, so that a custom parser can be passed in.

    -1. IMHO, the underlying parser should not be made a part of the API.
    Instead, whatever features it provides that are needed on user side should
    be mapped and abstracted in one way or another. Resolving external entity
    references is something that should not be done as low-level as expat.

    @brechtm
    Copy link
    Mannequin Author

    brechtm mannequin commented Nov 3, 2013

    You can import the pure python version in cPython by blocking the import > of the C accelerator:

    import sys
    sys.modules['_elementtree'] = None
    import xml.etree.ElementTree

    This will not work if xml.etree.ElementTree was already imported by another module, I think. Of course, you can take care of that case, but it doesn't get any prettier (I have done this for now).

    Any objections to making the pure Python versions available under a different name?

    @bitdancer
    Copy link
    Member

    Yes, you have to do the sys.modules set at the start of your application.

    The python module is what gets imported, it is just that the C classes override some of the classes from the Python module when they are imported. So no, there's no way to make the pure python available in cPython other than blocking the _elementtree import at application startup.

    If you want to discuss changing this fact, it would be a broader discussion in the context of PEP-399, and should take place on the python-dev mailing list.

    @scoder
    Copy link
    Contributor

    scoder commented Sep 8, 2020

    Changing subject to make it clear what this ticket is really about.

    @scoder scoder added the 3.10 only security fixes label Sep 8, 2020
    @scoder scoder changed the title Pure-Python ElementTree classes no longer available since 3.3 Allow more low-level parser configuration in ElementTree Sep 8, 2020
    @ezio-melotti ezio-melotti transferred this issue from another repository Apr 10, 2022
    Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
    Labels
    3.10 only security fixes topic-XML type-bug An unexpected behavior, bug, or error
    Projects
    None yet
    Development

    No branches or pull requests

    2 participants