diff options
author | Fred Drake <fdrake@acm.org> | 1999-04-23 15:42:36 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1999-04-23 15:42:36 (GMT) |
commit | ee4d54ea3372cab1c87dd13bf7fda8eaa3cbf269 (patch) | |
tree | d5856d821c824399a2db73e64747c996df8e94c0 /Doc/lib/libbinascii.tex | |
parent | 26f7cfe9c7a82882b828d1dc6049458586f33fef (diff) | |
download | cpython-ee4d54ea3372cab1c87dd13bf7fda8eaa3cbf269.zip cpython-ee4d54ea3372cab1c87dd13bf7fda8eaa3cbf269.tar.gz cpython-ee4d54ea3372cab1c87dd13bf7fda8eaa3cbf269.tar.bz2 |
Refer to the binhex module, not the non-existent hexbin module.
Added a "See also" section.
Diffstat (limited to 'Doc/lib/libbinascii.tex')
-rw-r--r-- | Doc/lib/libbinascii.tex | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/Doc/lib/libbinascii.tex b/Doc/lib/libbinascii.tex index cb9c166..470a7af 100644 --- a/Doc/lib/libbinascii.tex +++ b/Doc/lib/libbinascii.tex @@ -1,5 +1,5 @@ \section{\module{binascii} --- - Convert between binary \ASCII{}-encoded formats} + Convert between binary and \ASCII{}} \declaremodule{builtin}{binascii} \modulesynopsis{Tools for converting between binary and various @@ -10,7 +10,7 @@ The \module{binascii} module contains a number of methods to convert between binary and various \ASCII{}-encoded binary representations. Normally, you will not use these functions directly but use wrapper modules like \refmodule{uu}\refstmodindex{uu} or -\module{hexbin}\refstmodindex{hexbin} instead, this module solely +\refmodule{binhex}\refstmodindex{binhex} instead, this module solely exists because bit-manipuation of large amounts of data is slow in Python. @@ -81,3 +81,12 @@ Exception raised on incomplete data. These are usually not programming errors, but may be handled by reading a little more data and trying again. \end{excdesc} + + +\begin{seealso} + \seemodule{base64}{support for base64 encoding used in MIME email messages} + + \seemodule{binhex}{support for the binhex format used on the Macintosh} + + \seemodule{uu}{support for UU encoding used on \UNIX{}} +\end{seealso} |