]> granicus.if.org Git - python/commitdiff
Redo PR 785 -- Add cross reference links (GH-11319)
authorRaymond Hettinger <rhettinger@users.noreply.github.com>
Wed, 26 Dec 2018 01:53:36 +0000 (17:53 -0800)
committerGitHub <noreply@github.com>
Wed, 26 Dec 2018 01:53:36 +0000 (17:53 -0800)
Doc/library/binascii.rst

index a4efef8465725c7461a18cd835ab293091587afb..89ecddc7780fa3812e786db3ce119848773fd0c6 100644 (file)
@@ -152,6 +152,8 @@ The :mod:`binascii` module defines the following functions:
    *data* is converted into the corresponding 2-digit hex representation.  The
    returned bytes object is therefore twice as long as the length of *data*.
 
+   Similar functionality (but returning a text string) is also conveniently
+   accessible using the :meth:`bytes.hex` method.
 
 .. function:: a2b_hex(hexstr)
               unhexlify(hexstr)
@@ -161,6 +163,9 @@ The :mod:`binascii` module defines the following functions:
    of hexadecimal digits (which can be upper or lower case), otherwise an
    :exc:`Error` exception is raised.
 
+   Similar functionality (accepting only text string arguments, but more
+   liberal towards whitespace) is also accessible using the
+   :meth:`bytes.fromhex` class method.
 
 .. exception:: Error