diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-12-02 01:51:12 +0200 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-12-02 01:51:56 +0200 |
commit | d8fd3103fa69f9f0c5374d6edc50b6dc1e2f6738 (patch) | |
tree | 8ea6c688ae4bf0d804dcb007084a0d6dd2c0c2f9 | |
parent | d96a9164052a86927ddd2a5b39a8d5a357f01fc3 (diff) | |
download | micropython-d8fd3103fa69f9f0c5374d6edc50b6dc1e2f6738.tar.gz micropython-d8fd3103fa69f9f0c5374d6edc50b6dc1e2f6738.zip |
docs: Add quick docs for ubinascii.
-rw-r--r-- | docs/library/index.rst | 1 | ||||
-rw-r--r-- | docs/library/ubinascii.rst | 15 |
2 files changed, 16 insertions, 0 deletions
diff --git a/docs/library/index.rst b/docs/library/index.rst index aba69d28b4..bc01aa4c07 100644 --- a/docs/library/index.rst +++ b/docs/library/index.rst @@ -38,6 +38,7 @@ it will fallback to loading the built-in ``ujson`` module. .. toctree:: :maxdepth: 1 + ubinascii.rst uhashlib.rst uheapq.rst ujson.rst diff --git a/docs/library/ubinascii.rst b/docs/library/ubinascii.rst new file mode 100644 index 0000000000..9dba9180d2 --- /dev/null +++ b/docs/library/ubinascii.rst @@ -0,0 +1,15 @@ +:mod:`ubinascii` -- binary/ASCII conversions +============================================ + +.. module:: ubinascii + :synopsis: binary/ASCII conversions + +This module implements conversions between binary data and various +encodings of it in ASCII form (in both directions). + +Functions +--------- + +.. function:: hexlify(data) + + Convert binary data to hexadecimal representation. Return bytes string. |