docs/ubinascii: Document non-standard "sep" argument to hexlify().

This commit is contained in:
Paul Sokolovsky 2016-04-07 12:39:00 +03:00
parent 8a8e775035
commit 5e7fa7c80c
1 changed files with 7 additions and 1 deletions

View File

@ -10,10 +10,16 @@ encodings of it in ASCII form (in both directions).
Functions
---------
.. function:: hexlify(data)
.. function:: hexlify(data, [sep])
Convert binary data to hexadecimal representation. Return bytes string.
.. admonition:: Difference to CPython
:class: attention
If additional argument, `sep` is supplied, it is used as a seperator
between hexadecimal values.
.. function:: unhexlify(data)
Convert hexadecimal data to binary representation. Return bytes string.