Kaydet (Commit) 1698babd authored tarafından Ezio Melotti's avatar Ezio Melotti

#14679: add an __all__ (that contains only HTMLParser) to html.parser.

üst ed52f6cb
......@@ -12,6 +12,8 @@ import _markupbase
import re
import warnings
__all__ = ['HTMLParser']
# Regular expressions used for parsing
interesting_normal = re.compile('[&<]')
......
......@@ -10,6 +10,8 @@ What's New in Python 3.4.0 Alpha 1?
Core and Builtins
-----------------
- Issue #14679: add an __all__ (that contains only HTMLParser) to html.parser.
- Issue #17853: Ensure locals of a class that shadow free variables always win
over the closures.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment