This commit is contained in:
Charles-Francois Natali 2013-05-01 15:15:50 +02:00
commit 8a42d60188
2 changed files with 4 additions and 0 deletions

View File

@ -12,6 +12,8 @@ import _markupbase
import re
import warnings
__all__ = ['HTMLParser']
# Regular expressions used for parsing
interesting_normal = re.compile('[&<]')

View File

@ -60,6 +60,8 @@ Core and Builtins
Library
-------
- Issue #14679: add an __all__ (that contains only HTMLParser) to html.parser.
- Issue #17358: Modules loaded by imp.load_source() and load_compiled() (and by
extention load_module()) now have a better chance of working when reloaded.