Daniel Lovell added the comment:
I'm setting this back to closed as I unintentionally reopened. Please forgive
me as I'm new to the Python BPO. However, I did mean to continue the
conversation if not reopen the issue.
--
resolution: -> not a bug
status: o
Daniel Lovell added the comment:
Ah, I stupidly overlooked that as I'm only familiar with this HTML5
specification:
https://html.spec.whatwg.org/multipage/syntax.html#character-references
Where it states that characters MUST be terminated with a semicolon. Honestly
never seen it
New submission from Daniel Lovell :
html.entities.html5 keys should either require a trailing semicolon. The Python
docs say:
html.entities.html5
"A dictionary that maps HTML5 named character references [1] to the equivalent
Unicode character(s), e.g. html5['gt;'] ==
Daniel Lovell added the comment:
Thanks for the reply xtreak. I agree that changing the example to include
main() isn't necessary - I unintentionally included that from my example of the
case where the current version isn't functional.
In the PR I submitted on Github (https://
Change by Daniel Lovell :
--
keywords: +patch
pull_requests: +9484
stage: -> patch review
___
Python tracker
<https://bugs.python.org/issue35086>
___
___
Py
New submission from Daniel Lovell :
In the documentation for tkinter, "A Simple Hello World Program" Application
class does not hold onto the master Tk() instance as a class attribute. This is
a good practice, and newcomers to tkinter would likely have trouble closing the
window wi