diff options
author | R David Murray <rdmurray@bitdance.com> | 2013-11-03 18:22:17 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2013-11-03 18:22:17 (GMT) |
commit | c3f57e4a35069200c3cd8e78e924c141c5ae222b (patch) | |
tree | 9985d6733736cc044bcdff73055c38e11a499f58 /Modules/binascii.c | |
parent | af734963d1148d09b10ec893f6948769b5474535 (diff) | |
parent | 5fdb64b5a0a8567a232c2182f0c0439872c987e2 (diff) | |
download | cpython-c3f57e4a35069200c3cd8e78e924c141c5ae222b.zip cpython-c3f57e4a35069200c3cd8e78e924c141c5ae222b.tar.gz cpython-c3f57e4a35069200c3cd8e78e924c141c5ae222b.tar.bz2 |
Merge #19411: Clarify that b2a_hex/hexlify returns a bytes object.
Diffstat (limited to 'Modules/binascii.c')
-rw-r--r-- | Modules/binascii.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Modules/binascii.c b/Modules/binascii.c index 386c2de..0f49701 100644 --- a/Modules/binascii.c +++ b/Modules/binascii.c @@ -1122,7 +1122,8 @@ binascii_hexlify(PyObject *self, PyObject *args) PyDoc_STRVAR(doc_hexlify, "b2a_hex(data) -> s; Hexadecimal representation of binary data.\n\ \n\ -This function is also available as \"hexlify()\"."); +The return value is a bytes object. This function is also\n\ +available as \"hexlify()\"."); static int |