diff options
author | Fred Drake <fdrake@acm.org> | 1998-01-07 03:47:10 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1998-01-07 03:47:10 (GMT) |
commit | 799484399de82bc1e801f94d1e5a28f1fd6e4567 (patch) | |
tree | f125ff278145f937d8d32f43d8d5d4ed99812cf7 /Doc/libbase64.tex | |
parent | ae4300f8fb83fc06f80c60d5846cce37cd4bd148 (diff) | |
download | cpython-799484399de82bc1e801f94d1e5a28f1fd6e4567.zip cpython-799484399de82bc1e801f94d1e5a28f1fd6e4567.tar.gz cpython-799484399de82bc1e801f94d1e5a28f1fd6e4567.tar.bz2 |
Fixed index entries to be more consistent.
Diffstat (limited to 'Doc/libbase64.tex')
-rw-r--r-- | Doc/libbase64.tex | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Doc/libbase64.tex b/Doc/libbase64.tex index edd1920..e764737 100644 --- a/Doc/libbase64.tex +++ b/Doc/libbase64.tex @@ -1,6 +1,9 @@ \section{Standard Module \sectcode{base64}} \label{module-base64} \stmodindex{base64} +\indexii{base-64}{encoding} +\index{RFC!1421} +\index{MIME!base 64 encoding} This module perform base-64 encoding and decoding of arbitrary binary strings into text strings that can be safely emailed or posted. The @@ -9,13 +12,10 @@ various other Internet-related applications; it is not the same as the output produced by the \file{uuencode} program. For example, the string \code{'www.python.org'} is encoded as the string \code{'d3d3LnB5dGhvbi5vcmc=\e n'}. -\indexii{base-64}{encoding} -\indexii{RFC}{1421} -\index{MIME, base 64 encoding} \renewcommand{\indexsubitem}{(in module base64)} -\begin{funcdesc}{decode}{input\, output} +\begin{funcdesc}{decode}{input, output} Decode the contents of the \var{input} file and write the resulting binary data to the \var{output} file. \var{input} and \var{output} must either be file objects or objects that @@ -29,7 +29,7 @@ base-64 encoded data, and return a string containing the resulting binary data. \end{funcdesc} -\begin{funcdesc}{encode}{input\, output} +\begin{funcdesc}{encode}{input, output} Encode the contents of the \var{input} file and write the resulting base-64 encoded data to the \var{output} file. \var{input} and \var{output} must either be file objects or objects that |