diff -r 45ba5de2711b Doc/library/binascii.rst --- a/Doc/library/binascii.rst Sat Feb 07 15:42:53 2015 -0800 +++ b/Doc/library/binascii.rst Sun Feb 08 04:43:08 2015 +0000 @@ -65,8 +65,9 @@ data. More than one line may be passed at a time. If the optional argument *header* is present and true, underscores will be decoded as spaces. - .. versionchanged:: 3.2 - Accept only bytestring or bytearray objects as input. + .. versionchanged:: 3.3 + Python 3.2 dropped support for accepting text strings as input, + but this was restored in Python 3.3. .. function:: b2a_qp(data, quotetabs=False, istext=True, header=False) @@ -156,8 +157,9 @@ of hexadecimal digits (which can be upper or lower case), otherwise a :exc:`TypeError` is raised. - .. versionchanged:: 3.2 - Accept only bytestring or bytearray objects as input. + .. versionchanged:: 3.3 + Python 3.2 dropped support for accepting text strings as input, + but this was restored in Python 3.3. .. exception:: Error