-
Notifications
You must be signed in to change notification settings - Fork 5
<iframe> tag must have closing tag #25
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
Conversation
If closing tag is missing, some undefined behaviors will provides test failure.
Thank you for the contribution. I've found only one small issue. |
@frenzymadness |
Newer lxml like lxml 6 encodes and keeps control characters as neutralized form. It eliminates some evil attempts. Adds fixup to expected result text to pass doctest.
https://github.com/lxml/lxml/blob/lxml-6.0.0/CHANGES.txt#L59 > * Support for Python < 3.8 was removed. Drop py36 from test target list.
cbcd16f
to
d5f935c
Compare
@frenzymadness |
Thank you! You are reading my mind. We've just discussed that we no longer need to test lxml_html_clean with Python 3.6. Thank you also for the other fixes. |
This reverts commit 13447fd.
@frenzymadness |
I'm going to merge this and release it. Thanks a lot! |
Thank you! |
If closing tag is missing, some undefined behaviors will provides test failure.
This PR fixes #24 .