Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f18a82d + 8dff4bd commit 8a42d60Copy full SHA for 8a42d60
2 files changed
Lib/html/parser.py
@@ -12,6 +12,8 @@
12
import re
13
import warnings
14
15
+__all__ = ['HTMLParser']
16
+
17
# Regular expressions used for parsing
18
19
interesting_normal = re.compile('[&<]')
Misc/NEWS
@@ -60,6 +60,8 @@ Core and Builtins
60
Library
61
-------
62
63
+- Issue #14679: add an __all__ (that contains only HTMLParser) to html.parser.
64
65
- Issue #17358: Modules loaded by imp.load_source() and load_compiled() (and by
66
extention load_module()) now have a better chance of working when reloaded.
67
0 commit comments