docs/ubinascii: Clean up grammar.

pull/2015/head
Paul Sokolovsky 2016-04-27 15:47:33 +03:00
rodzic df4e1d1279
commit 1b45670c69
1 zmienionych plików z 4 dodań i 4 usunięć

Wyświetl plik

@ -12,7 +12,7 @@ Functions
.. function:: hexlify(data, [sep])
Convert binary data to hexadecimal representation. Return bytes string.
Convert binary data to hexadecimal representation. Returns bytes string.
.. admonition:: Difference to CPython
:class: attention
@ -22,13 +22,13 @@ Functions
.. function:: unhexlify(data)
Convert hexadecimal data to binary representation. Return bytes string.
Convert hexadecimal data to binary representation. Returns bytes string.
(i.e. inverse of hexlify)
.. function:: a2b_base64(data)
Convert Base64-encoded data to binary representation. Return bytes string.
Convert Base64-encoded data to binary representation. Returns bytes string.
.. function:: b2a_base64(data)
Encode binary data in Base64 format. Return string.
Encode binary data in Base64 format. Returns string.