summaryrefslogtreecommitdiff
path: root/Lib/base64.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2000-01-03 15:44:40 +0000
committerGuido van Rossum <guido@python.org>2000-01-03 15:44:40 +0000
commita47bd52d8a01e257c33ca9e17bc73c27e6e5fedc (patch)
tree740861e62a313ade363bef13d81758cb7cc2bcbb /Lib/base64.py
parent5ca8406cd4ec5122293dc07d8bf08bc2adfcc55d (diff)
downloadcpython-a47bd52d8a01e257c33ca9e17bc73c27e6e5fedc.tar.gz
The correct RFC to reference is RFC-1521 (MIME part one), not 1421 (PEM).
Diffstat (limited to 'Lib/base64.py')
-rwxr-xr-xLib/base64.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/Lib/base64.py b/Lib/base64.py
index f20a51a13e..2c7221494d 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