summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-12-19 16:51:37 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2016-12-19 16:51:37 (GMT)
commitdd1da7f74ad7d625148dc8a8f4f30051bc2c3401 (patch)
treeafe9fa4899ecb9838fddfba858bea5ecb4253dbd /Doc/whatsnew
parentf76df278068252fe7637caeb2d7166f761f124fb (diff)
downloadcpython-dd1da7f74ad7d625148dc8a8f4f30051bc2c3401.zip
cpython-dd1da7f74ad7d625148dc8a8f4f30051bc2c3401.tar.gz
cpython-dd1da7f74ad7d625148dc8a8f4f30051bc2c3401.tar.bz2
Issue #28927: bytes.fromhex() and bytearray.fromhex() now ignore all ASCII
whitespace, not only spaces. Patch by Robert Xiao.
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r--Doc/whatsnew/3.7.rst4
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.7.rst b/Doc/whatsnew/3.7.rst
index ac3a151..0d19f25 100644
--- a/Doc/whatsnew/3.7.rst
+++ b/Doc/whatsnew/3.7.rst
@@ -79,6 +79,10 @@ Other Language Changes
now have more than 255 parameters.
(Contributed by Serhiy Storchaka in :issue:`12844` and :issue:`18896`.)
+* :meth:`bytes.fromhex` and :meth:`bytearray.fromhex` now ignore all ASCII
+ whitespace, not only spaces.
+ (Contributed by Robert Xiao in :issue:`28927`.)
+
New Modules
===========