mirror of
https://github.com/python/cpython.git
synced 2025-12-15 21:44:50 +00:00
#14679: add an __all__ (that contains only HTMLParser) to html.parser.
This commit is contained in:
parent
ed52f6cb73
commit
1698babd1b
2 changed files with 4 additions and 0 deletions
|
|
@ -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.
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue