summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2013-11-23 17:52:05 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2013-11-23 17:52:05 (GMT)
commit95401c5f6b9f07b094924559177c9b30a1c38998 (patch)
tree3029ea3bbffc0c53c64275a2e587bbf696a740cb /Misc
parente7f87e12626d6ae3b9ed8cae8904a6afad580ffc (diff)
downloadcpython-95401c5f6b9f07b094924559177c9b30a1c38998.zip
cpython-95401c5f6b9f07b094924559177c9b30a1c38998.tar.gz
cpython-95401c5f6b9f07b094924559177c9b30a1c38998.tar.bz2
#13633: Added a new convert_charrefs keyword arg to HTMLParser that, when True, automatically converts all character references.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 3d5cd7e..336c3f4 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -132,6 +132,9 @@ Library
- Issue #19449: in csv's writerow, handle non-string keys when generating the
error message that certain keys are not in the 'fieldnames' list.
+- Issue #13633: Added a new convert_charrefs keyword arg to HTMLParser that,
+ when True, automatically converts all character references.
+
- Issue #2927: Added the unescape() function to the html module.
- Issue #8402: Added the escape() function to the glob module.