diff options
author | Guido van Rossum <guido@python.org> | 2000-01-03 15:44:40 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2000-01-03 15:44:40 (GMT) |
commit | d2783da63ec5866eb482986555f34d6698f21645 (patch) | |
tree | b307475e792f5f89c21bf40eb99188013f097437 /Lib/base64.py | |
parent | f23aa1ee9facd990c8cf102ed69d56e2a688730d (diff) | |
download | cpython-d2783da63ec5866eb482986555f34d6698f21645.zip cpython-d2783da63ec5866eb482986555f34d6698f21645.tar.gz cpython-d2783da63ec5866eb482986555f34d6698f21645.tar.bz2 |
The correct RFC to reference is RFC-1521 (MIME part one), not 1421 (PEM).
Diffstat (limited to 'Lib/base64.py')
-rwxr-xr-x | Lib/base64.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Lib/base64.py b/Lib/base64.py index f20a51a..2c72214 100755 --- a/Lib/base64.py +++ b/Lib/base64.py @@ -1,9 +1,6 @@ #! /usr/bin/env python -# Conversions to/from base64 transport encoding as per RFC-MIME (Dec 1991 -# version). - -# Parameters set by RFC-1421. +# Conversions to/from base64 transport encoding as per RFC-1521. # # Modified 04-Oct-95 by Jack to use binascii module |